/* --- PAGE CONTAINER --- */
.page-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- PAGE TITLE --- */
h1 {
    text-align: center;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #060507;
    margin-top: 40px;
    margin-bottom: 56px;
}

/* --- EXPERTS GRID --- */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    justify-content: center;
}

/* --- EXPERT CARD --- */
.expert-card {
    border-radius: 28px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

/* Card background colors */
.card-lilac {
    background-color: #D49FD3;
}

.card-cyan {
    background-color: #81D8F8;
}

.card-yellow {
    background-color: #FDDD3C;
}

.card-sage {
    background-color: #8DB0A1;
}

.portrait-badge {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
}

.portrait-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-card h2 {
    font-size: 24px;
    font-weight: 900;
    color: #060507;
    margin: 0;
}

.expert-role {
    font-size: 16px;
    font-weight: 600;
    color: #060507;
    margin: 4px 0 0;
}

.expert-org {
    font-size: 14px;
    color: rgba(6, 5, 7, 0.7);
    margin: 0 0 16px;
}

.microcopy {
    font-size: 12px;
    color: rgba(6, 5, 7, 0.5);
}

.plus-glyph {
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-size: 28px;
    font-weight: 600;
    color: #060507;
}

.expert-linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #060507;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.expert-linkedin-icon:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* --- LOAD MORE BUTTON --- */
.load-more {
    display: block;
    margin: 56px auto 0;
    height: 44px;
    padding: 0 32px;
    border-radius: 9999px;
    background-color: transparent;
    border: 1.5px solid rgba(6, 5, 7, 0.12);
    color: #060507;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.load-more:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

/* --- FOOTER --- */
footer {
    text-align: left;
    padding: 24px;
    max-width: 1240px;
    margin: 40px auto 0;
}

footer p {
    font-size: 12px;
    color: #5D5257;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
}