/*events-calendar*/
.events-calendar {
    background: #f0f2fb url(../img/events/events-calendar.svg) no-repeat left bottom / 60%;
    min-height: 700px;
    padding-top: 120px;
    padding-block: 120px;
}

.events-calendar__title {
    font-weight: 600;
    font-size: 53px;
    line-height: 115%;
    padding-bottom: 40px;
}

.events-calendar__subtitle {
    font-weight: 500;
    font-size: 22px;
    line-height: 125%;
    padding-bottom: 40px;
}

.btn-blue {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #fff;
    background-color: #0f2a76;
}

.btn-blue:hover {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #0f2a76;
    background-color: #fff;
    border: 1px solid #0f2a76;
}



.calendar-card {
    background-color: #10266b;
    color: #ffffff;
    border-radius: 35px;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(16, 38, 107, 0.3);
    overflow: hidden;
    position: relative;
}

/* Заголовок и навигация */
.header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-area .nav-btn:hover {
    background-color: #10266b;
    border: 1px solid #fff;
    border-radius: 50%;
}

.month-title {
    font-weight: 700;
    margin: 0;
    font-size: 1.75rem;
    color: #fff;
}

.nav-btn {
    background: none;
    border: none;
    color: #c5a669;
    /* Золотистый цвет для стрелок */
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0 10px;
}

.nav-btn:hover {
    color: #fff;
}

.custom-divider {
    border-top: 2px solid #c5a669;
    opacity: 1;
    margin-top: 15px;
    margin-bottom: 25px;
}


/*календарь*/
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px 0;
    text-align: center;
}

.day-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.8);
}

.date-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    color: #fff;
}

.date-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.date-item.other-month {
    color: rgba(255, 255, 255, 0.3);
}

.date-item.has-event {
    border: 2px solid #c5a669;
}

.date-item.event-dot {
    background-color: #b78e1c;
    color: #fff;
    font-weight: 700;
    border: none;
}

.date-item.today {
    background-color: #dde1ee;
    color: #10266b;
    font-weight: 700;
    border: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


.date-item.selected {
    border: solid 1px #fff !important;
    color: #fff;
    font-weight: 700;
}


.event-popover-item {
    font-size: 14px;
    line-height: 120%;
    font-family: "Montserrat", sans-serif !important;
}

.event-popover-title{
    border-bottom: solid 1px #b78e1c;
    padding-bottom: 15px;
    font-family: "Montserrat", sans-serif !important;
}

.event-popover-time{
    padding-top: 15px;
    font-family: "Montserrat", sans-serif !important;
}

.today-btn-class {
    font-size: 14px;
    border: solid 1px #fff;
    color: #fff;
}

.today-btn-class:hover {
    border: solid 1px #fff;
    background-color: #fff;
    color: #10266b;
}



@media (max-width: 767px) {
    .events-calendar {
        min-height: auto;
        background-size: 90%;
        padding-top: 60px;
        padding-block: 60px;
    }

    .events-calendar__title {
        font-size: 36px;
        padding-bottom: 30px;
    }

    .events-calendar__subtitle {
        font-size: 16px;
        padding-bottom: 30px;
    }

    .btn-blue {
        font-size: 16px;
        padding: 12px 24px;
    }

    .btn-blue:hover {
        font-size: 16px;
        padding: 12px 24px;
    }

    .date-item {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }


}

/*events-list*/
.events-list {
    padding-top: 120px;
    padding-block: 120px;
}

.events-list__heading {
    font-weight: 600;
    font-size: 45px;
    line-height: 116%;
    padding-bottom: 90px;
}

.event-card {
    background: #f0f2fb;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 16px;
}

.event-card__date {
    font-weight: 600;
    font-size: 28px;
    line-height: 116%;
    padding-bottom: 10px;
}

.event-card__time {
    font-weight: 500;
    font-size: 18px;
    line-height: 116%;
    padding-bottom: 10px;
}

.event-card__logo {
    border-radius: 25px;
}

.event-card__type,
.event-card__access {
    font-weight: 600;
    font-size: 13px;
    line-height: 116%;
    color: #6f7da7;
    border: 1px solid #6f7da7;
    border-radius: 16px;
    padding: 8px 30px;
    margin-bottom: 20px;
}

.event-card__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    padding-bottom: 15px;
}

.event-card__speaker-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
}

.event-card__speaker-role {
    font-weight: 500;
    font-size: 13px;
}

.event-card__details-row {
    padding-top: 60px;
}

.event-card__description {
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    padding-bottom: 40px;
    border-bottom: 1px solid #b78e1c;
}

.event-card__benefits {
    padding-top: 30px;
    padding-bottom: 40px;
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
}

.event-card__benefits h3 {
    font-size: 20px;
    line-height: 130%;
    color: #000;
    font-weight: 600;
    padding-bottom: 25px;
}

.event-card__speaker-details {
    background: #e5e9f7;
    border-radius: 30px;
    padding: 30px;
}

.event-card__speaker-bio {
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    color: #000;
}

.event-card__speaker-meta {
    font-weight: 600;
    font-size: 16px;
    line-height: 122%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #b78e1c;
    padding-bottom: 10px;
}

.event-card__speaker-name--primary {
    font-weight: 600;
    font-size: 28px;
    line-height: 116%;
    color: #000;
    padding-bottom: 20px;
}

.event-card__speaker-achievements {
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    color: #000;
}

.event-card__action {
    padding-top: 100px;
    padding-bottom: 60px;
}


.ac.is-active .event-card__col--toggle svg {
    transform: rotate(90deg);
}


@media (max-width: 767px) {
    .events-list {
        padding-top: 60px;
        padding-block: 60px;
    }

    .events-list__heading {
        font-size: 28px;
        padding-bottom: 45px;
    }

    .event-card {
        border-radius: 20px;
        padding: 25px;
    }

    .event-card__date {
        font-size: 20px;
    }

    .event-card__time {
        font-size: 14px;
    }

    .event-card__type,
    .event-card__access {
        font-size: 11px;
        padding: 6px 20px;
        margin-bottom: 15px;
    }

    .event-card__title {
        font-size: 18px;
        padding-bottom: 12px;
    }

    .event-card__speaker-name {
        font-size: 12px;
    }

    .event-card__speaker-role {
        font-size: 11px;
    }

    .event-card__details-row {
        padding-top: 40px;
    }



    .event-card__benefits h3 {
        font-size: 14px;
        padding-bottom: 15px;
    }

    .event-card__description {
        font-size: 13px;
        padding-bottom: 30px;
    }

    .event-card__benefits {
        padding-top: 20px;
        padding-bottom: 30px;
        font-size: 13px;
    }


    .event-card__speaker-bio {
        font-size: 11px;
    }


    .event-card__speaker-details {
        border-radius: 20px;
        padding: 20px;
    }

    .event-card__speaker-meta {
        font-size: 14px;
        padding-bottom: 8px;
    }

    .event-card__speaker-name--primary {
        font-size: 20px;
        padding-bottom: 15px;
    }

    .event-card__speaker-achievements {
        font-size: 11px;
    }

    .event-card__action {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .event-card__col svg {
        width: 50px !important;
    }
}

/*audience*/
.audience {
    background: #f0f2fb;
    padding-top: 120px;
    padding-bottom: 120px;
}

.audience__title {
    font-weight: 600;
    font-size: 45px;
    color: #000;
    padding-bottom: 100px;
    line-height: 120%;
}

.audience-item {
    background: #e5e9f7;
    border-radius: 30px;
    padding: 35px;
}

.audience-item__number {
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    color: #b78e1c;
    margin-right: 15px;
}

.audience-item__role {
    font-weight: 600;
    font-size: 21px;
    line-height: 120%;
    color: #000;
    padding-bottom: 24px;
}

.audience-item__need {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #000;
}

@media (max-width: 767px) {
    .audience {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .audience__title {
        font-size: 28px;
        padding-bottom: 50px;
    }

    .audience-item {
        border-radius: 20px;
        padding: 25px;
    }

    .audience-item__number {
        font-size: 20px;
        margin-right: 10px;
    }

    .audience-item__role {
        font-size: 16px;
        padding-bottom: 18px;
    }

    .audience-item__need {
        font-size: 14px;
    }
}

/*archive-stats*/
.archive-stats {
    padding-top: 120px;
    padding-bottom: 120px;
}

.archive-stats__title {
    font-weight: 600;
    font-size: 45px;
    color: #000;
    padding-bottom: 110px;
}

.archive-stats__subtitle {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #000;
    padding-bottom: 60px;
}

.archive-stats__col {
    position: relative;
}

@media (min-width: 992px) {
    .archive-stats__col:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 0%;
        bottom: 0%;
        right: 10%;
        width: 2px;
        background-color: #c8ccd5;
    }
}

@media (max-width: 991.98px) {
    .archive-stats__col:nth-child(2)::after {
        content: '';
        position: absolute;
        top: 15%;
        bottom: 15%;
        right: 0;
        width: 2px;
        background-color: #fff;
    }
}

.stat-card__value {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #b78e1c;
    padding-bottom: 30px;
}

.stat-card__label {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #000;
}

@media (max-width: 767px) {
    .archive-stats {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .archive-stats__title {
        font-size: 28px;
        padding-bottom: 55px;
    }

    .archive-stats__subtitle {
        font-size: 20px;
        padding-bottom: 40px;
    }

    .stat-card__value {
        font-size: 20px;
        padding-bottom: 20px;
    }

    .stat-card__label {
        font-size: 16px;
    }
}

/*access-info*/
.access-info {
    padding-top: 80px;
    padding-bottom: 80px;
}

.access-info__wrapper {
    background: #0f2a76;
    border-radius: 25px;
    color: #fff;
    padding: 50px;
}

.access-info__col--icon {
    padding-bottom: 55px;
}

.access-info__text {
    font-weight: 600;
    font-size: 30px;
    line-height: 130%;
    color: #fff;
}

.btn-transparency {
    border-radius: 100px;
    border: solid 1px #fff;
    padding: 10px 70px;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
}

.btn-transparency:hover {
    border-radius: 100px;
    border: solid 1px #fff;
    padding: 10px 70px;
    color: #0f2a76;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    background: #fff;
}

@media (max-width: 767px) {
    .access-info {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .access-info__wrapper {
        border-radius: 20px;
        padding: 30px;
    }

    .access-info__col--icon {
        padding-bottom: 35px;
    }

    .access-info__text {
        font-size: 20px;
    }

    .btn-transparency {
        padding: 8px 40px;
        font-size: 18px;
    }

    .btn-transparency:hover {
        padding: 8px 40px;
        font-size: 18px;
    }
}

/*membership-cta*/
.membership-cta {
    padding-top: 80px;
    padding-bottom: 80px;
}

.membership-cta__text {
    font-weight: 500;
    font-size: 23px;
    line-height: 120%;
    text-align: center;
    color: #000;
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .membership-cta {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .membership-cta__text {
        font-size: 16px;
        padding-bottom: 40px;
    }
}