/* DESCRIPTION */

#show-more {
    color: var(--mid-blue);
    font-weight: bold
}



/* STYLING FOR COMPANY BACKGROUND SECTION/BASIC INFO */
.info-container {
    display: flex;
    flex-wrap: wrap; /* Allows multiple groups on the same row if space permits */
    gap: 20px; /* Adds space between the groups */
    justify-content: flex-start; /* Aligns groups to the start */
}

/* Group container with border, margin, and flexible height */
.info-group {
    border: 1px solid var(--mid-blue);
    border-radius: 5px;
    padding: 10px;
    background-color: var(--off-white);
    width: auto; /* The group width adjusts to fit the contents */
    min-width: 200px; /* Ensures a minimum width */
    box-sizing: border-box; /* Include padding in width */
}

/* Styling for the section titles */
.info-group p {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--dark-blue);
}

/* Info pair styling */
.info-pair {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

/* Label styling */
.info-label {
    font-size: 1.2rem;
    color: var(--dark-blue);
}

/* Value styling */
.info-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--mid-blue);
    white-space: nowrap; /* Prevent text wrapping */
    margin-left: 20px;
    min-width: 70px;
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 624px) {
    .info-container {
        /* justify-content: center; Center groups on smaller screens */
        gap:10px;
    }
}

@media (max-width: 500px) {
    .info-group {
        min-width: 100%;
    }
    .info-group p {
        margin-bottom: 5px;
    }
}



