/* ========================================
   Page Header
   ======================================== */

.page-header {
    padding: 45px 0 100px;
    text-align: center;
}

.page-header__breadcrumb ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.page-header__sponser ul li span {
    display: flex;
    gap: 8px;
}

.page-header__breadcrumb ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-header__breadcrumb ul li a {
    color: #6B7080;
}

.page-header__sponser {
    color: #1B223A;
}

.page-header__container {
    max-width: 800px;
    margin: 0 auto;
}

.page-header__logo img {
    width: 264px;
    height: auto;
}

.page-header__breadcrumb {
    font-family: var(--primaryFont);
    font-size: var(--fontSizeLarge);
    font-weight: var(--fontWeightLight);
    line-height: 22px;
    letter-spacing: 0;
    color: var(--text-secondary);
    margin-bottom: 18px;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.page-header__meet-speaker {
    color: var(--text-brand-secondary);
}

.breadcrumb-icon {
    color: var(--text-secondary);
}

.page-header__title {
    font-family: 'Inter Display', sans-serif;
    font-size: var(--fontSizeH1);
    font-weight: var(--fontWeightMedium);
    line-height: var(--lineheightH1);
    letter-spacing: -3px;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto 32px auto;
}

.i2c__dot {
    color: var(--orange);
}

.page-header__description {
    font-family: 'Inter Display', sans-serif;
    font-size: var(--fontSizeExtraLarge);
    font-weight: var(--fontWeightLight);
    line-height: 28px;
    color: var(--text-primary);
    max-width: 710px;
    margin: 0 auto;
    letter-spacing: 0;
}

@media (max-width: 1600px) {
    .page-header {
        padding: 32px 0 60px;
    }

    .page-header__title {
        margin-bottom: 16px;
    }

    .page-header__description {
        max-width: 392px;
        line-height: 24px;
    }

    .page-header__breadcrumb {
        margin-top: 60px;
        margin-bottom: 18px;
    }
}

@media (max-width: 1199px) {
    .page-header {
        padding: 28px 0 48px;
        background-size: 186px auto;
    }

    .page-header__breadcrumb {
        font-size: var(--fontSizeExtraLarge);
        margin-top: 48px;
    }

    .page-header__title {
        margin: 0 auto 16px auto;
        letter-spacing: -2px;
    }

    .page-header__description {
        max-width: 442px;
        line-height: 20px;
    }
}

@media (max-width: 991px) {
    .page-header {
        padding: 24px 0 45px;
        background-image: none;
    }


    .page-header__title {
        letter-spacing: -2px;
    }

    .page-header__description {
        line-height: 20px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 18px 24px 48px;
    }

    .page-header__logo img {
        width: 176px;
    }

    .page-header__breadcrumb {
        font-size: 14px;
        margin-bottom: 16px;
        margin-top: 58px;
        line-height: 18px;
    }

    .page-header__title {
        font-size: var(--fontSizeH1);
        line-height: 36px;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }
}

/* ========================================
   Attendees Section
   ======================================== */

.attendees-section {
    margin: auto;
    max-width: 1462px;
    /* position: relative; */
}

.attendees-section::before {
    content: '';
    position: absolute;
    top: 280px;
    left: 0;
    width: 549.719px;
    height: 529.265px;
    background: url(../images/attendees/attendees-left-element.webp) no-repeat left top;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.attendees-container {
    position: relative;
    padding: 120px 150px;
    width: 100%;
    height: 100%;
    background: url('../images/attendees/speaker-bg.webp') no-repeat center center;
    background-size: cover;
    border-radius: 24px;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;

    overflow: hidden;
}

.attendees-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 372.905px;
    height: 471px;
    background: url('../images/attendees/attendees-bottom-right.webp') no-repeat right bottom;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.attendee {
    position: relative;
    max-width: 267px;
    max-height: 150px;
    z-index: 2;
    /* cursor: pointer; */
    border-radius: 24px;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .attendee:hover,
.attendee:focus {
    border-color: #F97C00;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.attendee:hover .attendee__button, 
.attendee:focus .attendee__button {
    opacity: 1;
} */

.attendee img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.attendee__button {
    position: absolute;
    bottom: 12px;
    right: 14px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.attendee__button img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


@media (max-width: 1600px) {
    .attendees-section {
        max-width: 1016px;
    }

    .attendees-container {
        padding: 80px 104px;
        gap: 1.5rem;
    }

    .attendee img {
        border-radius: 16px;
    }

    .attendee__button {
        bottom: 8px;
        right: 10px;
    }

    .attendee__button img {
        width: 28px;
        height: 28px;
    }

    .attendees-container::before {
        max-width: 259.146px;
        max-height: 327.316px;
    }

    .attendees-section::before {
        top: 400px;
        width: 428.932px;
        height: 329.54px;
    }
}

@media (max-width: 1199px) {
    .attendees-section {
        max-width: 928px;
    }

    .attendees-container {
        padding: 60px 95px;
        gap: 19.92px 1rem;
        border-radius: 16px;
    }

    .attendee img {
        border-radius: 8px;
    }

    .attendee__button {
        bottom: 7px;
        right: 10px;
    }

    .attendee__button img {
        width: 19px;
        height: 19px;
    }

    .attendees-container::before {
        max-width: 217px;
        max-height: 274px;
    }

    .attendees-section::before {
        display: none;
    }

}

@media (max-width: 991px) {

    .attendees-section {
        max-width: 717px;
    }

    .attendees-container {
        padding: 49px 73px;
        gap: 0.75rem;
        border-radius: 16px;
    }

    .attendees-container::before {
        max-width: 168px;
        max-height: 212px;
    }
}



@media (max-width: 767px) {
    .attendees-section {
        max-width: 100%;
    }

    .container {
        padding: 0;
    }

    .attendees-container {
        border-radius: 0;
        padding: 40px 24px;
        gap: 1rem;
        grid-template-columns: repeat(3, 1fr);
    }

    .attendee {
        max-width: 100%;
    }

    .attendees-container::before {
        display: none;
    }
}

@media (max-width: 550px) {
    .attendees-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .attendee__button {
        display: none;
    }
}