/* ─── AEI Team Frontend Styles ─────────────────────────── */

.aei-team {
    --aei-team-columns: 3;
    --aei-team-gap: 2rem;
    --aei-team-radius: 12px;
}

/* ─── Grid ─────────────────────────────────────────────── */

.aei-team__grid {
    display: grid;
    grid-template-columns: repeat(var(--aei-team-columns), 1fr);
    gap: var(--aei-team-gap);
}

/* ─── Member Card ──────────────────────────────────────── */

.aei-team__member {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Cards style */
.aei-team--cards .aei-team__member {
    background: #142430;
    border-radius: var(--aei-team-radius);
    padding: 2rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.aei-team--cards .aei-team__member:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Minimal style */
.aei-team--minimal .aei-team__member {
    padding: 1.5rem;
}

/* ─── Photo ────────────────────────────────────────────── */

.aei-team__photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    background: #142430;
    border: 3px solid #1e3446;
    transition: border-color 0.3s ease;
}

.aei-team__member:hover .aei-team__photo {
    border-color: #cc2936;
}

.aei-team__photo img,
.aei-article__content .aei-team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: 0 !important;
    margin: 0 !important;
}

/* ─── Details ──────────────────────────────────────────── */

.aei-team__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.375rem;
    line-height: 1.3;
}

.aei-team--minimal .aei-team__name {
    color: #0c1a24;
}

.aei-team__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #cc2936;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
}

.aei-team__bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #7a8fa0;
    margin: 0;
}

.aei-team--minimal .aei-team__bio {
    color: #5a7080;
}

.aei-team__email,
.aei-team__phone {
    display: inline-block;
    font-size: 0.85rem;
    color: #4a7c8a;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: opacity 0.2s;
}

.aei-team__email:hover,
.aei-team__phone:hover {
    opacity: 0.8;
}

/* ─── Responsive ───────────────────────────────────────── */

@media (max-width: 900px) {
    .aei-team {
        --aei-team-columns: 2;
    }
}

@media (max-width: 580px) {
    .aei-team {
        --aei-team-columns: 1;
    }

    .aei-team__photo {
        width: 140px;
        height: 140px;
    }
}
