.team-section {
    position: relative;
    background: rgba(29, 60, 37, 0.3);
    border: none;
    overflow: hidden;
    z-index: 2;
    padding-bottom: 32px;
}

.team-header {
    margin: 0 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-description {
    font-size: 18px;
    color: rgba(253, 251, 237, 0.8);
    line-height: 1.6;
    margin: 24px 0 0 0;
    text-align: center;
}

.title-highlight {
    color: var(--z-yellow);
}

.team-grid-row {
    row-gap: 1.5rem;
}

.team-card-wrapper {
    display: flex;
    flex-direction: column;
}

.team-card {
    display: block;
    text-decoration: none;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 230, 0, 0.1);
    background: rgba(20, 36, 23, 0.8);
}

.team-card:hover .team-name,
.team-card:hover .team-desc {
    text-decoration: none;
}

.team-visual {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-bottom: 1px solid rgba(253, 251, 237, 0.08);
    transition: filter 0.5s ease;
}

.team-card:hover .team-visual {
    filter: grayscale(0%);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-name {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Benzin', sans-serif;
    letter-spacing: -0.01em;
}

.team-role {
    font-size: 14px;
    font-weight: 800;
    color: var(--z-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-desc {
    font-size: 15px;
    color: rgba(253, 251, 237, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.team-action-row {
    margin-top: 3rem;
}

.team-action-col {
    display: flex;
    justify-content: center;
}

@media (max-width: 1199.98px) {
    .forbes-content {
        padding: 48px;
        text-align: center;
        align-items: center;
        border-right: none;
        border-bottom: 1px solid rgba(253, 251, 237, 0.08);
    }
    .forbes-visual { min-height: 350px; }
}

@media (max-width: 768px) {
    .team-section { padding: 80px 0; }
    .forbes-banner { border-radius: 24px; }
    .forbes-content { padding: 32px 24px; }
    .forbes-title { font-size: 19px; }
    .forbes-visual { min-height: 250px; }
    .team-card { border-radius: 24px; }
    .team-visual { height: 300px; filter: grayscale(0%); }
    .team-info { padding: 24px; }
    .team-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.3); }
}

.member-profile-container {
    position: relative;
    z-index: 2;
}

.breadcrumbs-row {
    margin-bottom: 40px;
}

.breadcrumbs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.breadcrumbs-link {
    color: rgba(253, 251, 237, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumbs-link:hover {
    color: var(--z-yellow);
}

.breadcrumbs-separator {
    color: rgba(253, 251, 237, 0.3);
    font-size: 12px;
}

.breadcrumbs-item.current {
    color: var(--z-yellow);
    font-size: 14px;
    font-weight: 600;
}

.bio-row {
    margin-bottom: 60px;
}

.photo-col {
    display: flex;
    flex-direction: column;
}

.member-photo-card {
    border-radius: 24px;
    overflow: hidden;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.member-photo-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 16px;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.social-link {
    color: rgba(253, 251, 237, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--z-yellow);
}

.details-col {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}

.member-details-header {
    margin-bottom: 32px;
}

.member-detail-name {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    font-family: 'Benzin', sans-serif;
}

.member-detail-role {
    font-size: 18px;
    font-weight: 800;
    color: var(--z-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-quote {
    position: relative;
    padding: 32px 40px;
    border-radius: 20px;
    font-size: 20px;
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 40px 0;
    border-left: 4px solid var(--z-yellow);
}

.member-bio-text {
    font-size: 16px;
    color: rgba(253, 251, 237, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.member-bio-text h2, .member-bio-text p {
    margin-bottom: 16px;
}

.skills-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    padding: 8px 16px;
    background: rgba(255, 230, 0, 0.05);
    border: 1px solid rgba(255, 230, 0, 0.2);
    border-radius: 100px;
    color: var(--z-yellow);
    font-size: 14px;
    font-weight: 600;
}

.stats-row {
    margin-bottom: 80px;
}

.stat-card {
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 230, 0, 0.3);
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--z-yellow);
    font-family: 'Benzin', sans-serif;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: rgba(253, 251, 237, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.articles-header-row {
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Benzin', sans-serif;
}

.text-yellow {
    color: var(--z-yellow);
}

.article-col {
    display: flex;
}

.article-card {
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.article-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.article-visual {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(20, 36, 23, 0.8);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 100px;
    color: var(--z-yellow);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(255, 230, 0, 0.2);
}

.article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-date {
    font-size: 13px;
    color: rgba(253, 251, 237, 0.5);
    margin-bottom: 12px;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 24px 0;
    transition: color 0.3s ease;
}

.article-card:hover .article-title {
    color: var(--z-yellow);
}

.article-read-more {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--z-yellow);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 1199.98px) {
    .details-col { padding-left: calc(var(--bs-gutter-x) * .5); margin-top: 40px; }
    .member-quote { padding: 24px; font-size: 18px; }
}

@media (max-width: 768px) {
    .member-profile-section { padding: 100px 0 60px; }
    .member-detail-name { font-size: 28px; }
    .stat-card { padding: 24px; }
    .stat-value { font-size: 36px; }
    .article-visual { height: 200px; }
}