:root {
    --page-bg: #f7f7f7;
    --surface: #ffffff;
    --canvas: #d4d4d4;
    --ink: #202122;
    --ink-soft: #17191c;
    --muted: #525252;
    --subtle: #a1a1a1;
    --line: #d4d4d4;
    --line-soft: #ececee;
    --accent: #fe6702;
    --dark: #050505;
    --container: min(1410px, calc(100vw - 80px));
    --font-display: "Fira Sans", "Segoe UI", sans-serif;
    --interactive-duration: 0.24s;
    --interactive-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --interactive-shadow-soft: 0 12px 28px rgba(32, 33, 34, 0.08);
    --interactive-shadow: 0 18px 42px rgba(32, 33, 34, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Desktop breadcrumb spacing — moved to end of file for cascade priority */

html {
    scroll-behavior: smooth;
}

html.is-locked,
html.is-locked body {
    overflow: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--page-bg);
    color: var(--ink);
    font-family: var(--font-display);
}

body.menu-is-open {
    position: fixed;
    inset: 0;
    width: 100%;
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

input,
textarea {
    outline: none;
}

.screen-reader-text,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 200;
    padding: 0.7rem 1rem;
    border-radius: 5px;
    background: var(--ink);
    color: var(--surface);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.eyebrow {
    margin: 0;
    color: var(--subtle);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-title {
    display: inline-flex;
    align-items: flex-start;
    gap: 20px;
}

.section-title__slash {
    flex: none;
    color: var(--line);
    font-size: clamp(2.7rem, 4.2vw, 4rem);
    font-weight: 700;
    line-height: 0.9;
}

.section-title__slash--light {
    color: var(--surface);
}

.section-title__lines {
    display: grid;
    gap: 0;
    font-size: clamp(3rem, 5.5vw, 4.1rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.92;
}

.section-title__lines--split {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    width: min(100%, 1240px);
}

.section-title--large .section-title__lines {
    font-size: clamp(3.4rem, 7vw, 5.7rem);
}

.section-title--dark .section-title__slash {
    color: var(--surface);
}

.section-title--dark .section-title__lines {
    color: rgba(255, 255, 255, 0.1);
}

.section-title__accent {
    color: var(--accent);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: 57px;
    padding: 0.9rem 1.8rem;
    border: 0;
    border-radius: 5px;
    transition: background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.button--dark {
    background: var(--ink);
    color: var(--surface);
}

.button--light {
    background: var(--surface);
    color: var(--muted);
}

.button--compact {
    min-height: 41px;
    padding: 0.5rem 1.25rem;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0.1rem 0.8rem;
    border-radius: 999px;
    background: rgba(32, 33, 34, 0.06);
    color: var(--subtle);
    font-size: 12px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.link-arrow svg,
.button svg {
    width: 20px;
    height: 20px;
    flex: none;
}

.link-arrow--light {
    color: var(--surface);
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--ink);
}

.social-links svg {
    width: 32px;
    height: 32px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 140;
    background: #f7f7f7;
    border-bottom: 1px solid transparent;
    transition: background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    backdrop-filter 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(247, 247, 247, 0.98);
    border-bottom-color: #ececee;
    backdrop-filter: blur(8px);
    box-shadow: none;
}


.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 76px;
}

.site-header__left {
    display: flex;
    align-items: center;
    gap: 52px;
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.site-header__menu-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    position: relative;
    z-index: 2;
}

.site-header__menu-icon {
    flex: none;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    transition: max-width 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease-in,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.3s ease-in;
}

.site-brand--inline {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    white-space: nowrap;
    margin-inline: -0.75rem;
}

.site-brand--center {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    transform-origin: center top;
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 720px) {
    .site-header.is-scrolled .site-brand--inline {
        max-width: 290px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        margin-inline: 0;
    }
}

.site-brand--inline {
    transition-delay: 0.3s, 0.3s, 0s, 0.3s, 0s;
}

.site-header.is-scrolled .site-brand--inline {
    transition-delay: 0s;
}

.site-header__meta,
.site-header__nav {
    transition-delay: 240ms;
}

.site-header.is-scrolled .site-header__meta,
.site-header.is-scrolled .site-header__nav {
    transition-delay: 0s;
}

.site-header.is-scrolled .site-header__meta {
    transition-delay: 0s;
}

@media (min-width: 720px) {
    .site-header.is-scrolled .site-brand--center {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, calc(-50% - 24px)) scale(0.86);
    }
}

.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--accent);
}

.site-brand__mark svg {
    width: 100%;
    height: 100%;
}

.site-brand__text {
    display: grid;
    gap: 0.1rem;
}

.site-brand__text strong {
    font-size: 16px;
    line-height: 0.95;
    text-transform: uppercase;
}

.site-brand__text span {
    color: var(--subtle);
    font-size: 13px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.site-brand--drawer {
    display: none;
}

.site-header__nav {
    min-width: 0;
    transition: opacity 0.24s ease,
    transform 0.32s ease,
    visibility 0.24s ease;
}

.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-list a,
.lang-switch,
.site-header__menu-button {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.site-header__menu-button svg rect {
    transition: all .2s ease;
}

.site-header__menu-button:hover svg rect:nth-child(1) {
    width: 30px;
    x: 0;
    transition: all .2s ease;
}

.site-header__menu-button:hover svg rect:nth-child(2) {
    width: 30px;
    x: 0;
    transition: all .2s ease;
}

.menu-list a:hover,
.lang-switch:hover,
.site-header__menu-button:hover {
    color: var(--accent);
    transition: all 0.2s ease;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.lang-switch .lang-switch__text {
    color: #b5b5b5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all .2s ease;
}

.lang-switch .lang-switch__separator {
    color: #b5b5b5;
    font-size: 13px;
    font-weight: 700;
}

.lang-switch .lang-switch__text:not(.active):hover {
    color: var(--accent);
    transition: all .2s ease;
}

.lang-switch .lang-switch__text.active {
    color: var(--ink);
    cursor: default;
    pointer-events: none;
    user-select: none;
}

.site-header__meta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    position: relative;
    z-index: 1;
    transition: opacity 0.24s ease,
    transform 0.32s ease,
    visibility 0.24s ease;
}

.site-header__search {
    width: 20px;
    height: 20px;
    color: var(--subtle);
}

.site-header__search path {
    transition: all 0.2s ease;
}

.site-header__search:hover path {
    stroke: var(--accent);
    transition: all 0.2s ease;
}


.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    overflow-y: auto;
    background: rgba(247, 247, 247, 0.99);
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
}

.site-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.site-drawer__overlay {
    position: fixed;
    inset: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-drawer__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    min-height: calc(100dvh - 76px);
    overflow-y: auto;
    padding: 0;
}

.site-drawer__desktop-panel {
    display: flex;
    flex-direction: column;
    width: min(100%, 1470px);
    background: #f7f7f7;
    border-top: 1px solid #d4d4d4;
}

.site-drawer__desktop-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 16px 32px;
}

.site-brand--drawer-panel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-drawer__desktop-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #202122;
    transition: color 0.2s ease;
}

.site-drawer__desktop-close svg {
    width: 32px;
    height: 32px;
}

.site-drawer__desktop-close:hover,
.site-drawer__desktop-close:focus-visible {
    color: var(--accent);
}

.site-drawer__desktop-close:hover path,
.site-drawer__desktop-close:focus-visible path {
    fill: var(--accent);
}

.site-drawer__desktop-panel-body {
    display: grid;
    grid-template-columns: minmax(250px, 568px) minmax(0, 1fr);
    align-items: stretch;
    border-top: 1px solid #d4d4d4;
}

.site-drawer__desktop-media {
    min-height: 340px;
    background: url("../img/menu-main-bg-original.png") no-repeat center center / cover;
    will-change: transform, opacity;
}

.site-drawer__desktop-copy {
    display: grid;
    align-content: start;
    gap: 48px;
    padding: 48px 48px 45px;
    will-change: transform, opacity;
}

.site-drawer__desktop-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-drawer__desktop-link {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    color: #202122;
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.site-drawer__desktop-link:hover,
.site-drawer__desktop-link:focus-visible {
    color: var(--accent);
}

.site-drawer__contacts {
    display: grid;
    gap: 16px;
}

.site-drawer__contact {
    display: grid;
    gap: 8px;
}

.site-drawer__contact p,
.site-drawer__desktop-social p,
.site-drawer__mobile-contact p,
.site-drawer__mobile-social p {
    margin: 0;
    color: #525252;
}

.site-drawer__contact p,
.site-drawer__desktop-social p {
    font-size: 13px;
    line-height: 17px;
}

.site-drawer__contact a {
    width: max-content;
    max-width: 100%;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
    text-decoration: underline;
    text-underline-offset: 0.12em;
    transition: color 0.2s ease;
}

.site-drawer__contact a:hover,
.site-drawer__contact a:focus-visible {
    color: var(--accent);
}

.site-drawer__desktop-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px 112px;
    flex-wrap: wrap;
}

.site-drawer__desktop-cta,
.site-drawer__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding: 18px 24px 17px;
    border-radius: 5px;
    background: #202122;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.2s ease,
    color 0.2s ease;
}

.site-drawer__desktop-cta:hover,
.site-drawer__desktop-cta:focus-visible,
.site-drawer__mobile-cta:hover,
.site-drawer__mobile-cta:focus-visible {
    background: var(--accent);
    color: #fff;
}

.site-drawer__desktop-social,
.site-drawer__mobile-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-drawer__desktop-social p {
    width: 130px;
}

.site-drawer__desktop-social .social-links,
.site-drawer__mobile-social .social-links {
    display: flex;
    gap: 14.4px;
}

.site-drawer__desktop-social .social-links a,
.site-drawer__desktop-social .social-links svg,
.site-drawer__mobile-social .social-links a,
.site-drawer__mobile-social .social-links svg {
    width: 32px;
    height: 32px;
}

.site-drawer__desktop-social .social-links svg path,
.site-drawer__mobile-social .social-links svg path {
    transition: fill 0.2s ease;
}

.site-drawer__desktop-social .social-links a:hover path,
.site-drawer__desktop-social .social-links a:focus-visible path,
.site-drawer__mobile-social .social-links a:hover path,
.site-drawer__mobile-social .social-links a:focus-visible path {
    fill: var(--accent);
}

.site-drawer__mobile-head,
.site-drawer__mobile-nav {
    display: none;
}

.hero {
    padding-top: 0;
}

.hero__intro {
    position: relative;
    padding: 10px 0 32px 0;
}

.hero__social {
    position: absolute;
    left: 0;
    bottom: 28px;
    z-index: 3;
    display: grid;
    grid-template-columns: 135px 152px;
    align-items: center;
    gap: 0 5px;
    color: var(--muted);
}

.hero__social-label {
    display: block;
    width: 135px;
    font-size: 12px;
    line-height: 17px;
}

.hero__social .social-links {
    display: flex;
    gap: 8px;
}

.hero__social .social-links a {
    width: 32px;
    height: 32px;
}

.hero__social .social-links svg {
    width: 32px;
    height: 32px;
}

.hero__social .social-links a:hover path {
    fill: var(--accent);
    transition: all .2s ease;
}

.hero__social .social-links svg path {
    transition: all .2s ease;
}

.hero__title-block {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero__title {
    position: relative;
    bottom: -25px;
    line-height: 1;
}

.hero__subtitle {
    margin: 0;
    font-size: clamp(2.8rem, 4.9vw, 72px);
    font-weight: 300;
    line-height: 1;
}

.hero__eyebrow {
    margin: 12px 0 0;
    color: var(--subtle);
    font-size: 13px;
    letter-spacing: 0.34em;
    line-height: 1.25;
    text-transform: uppercase;
}

.hero__roundel {
    position: absolute;
    right: 6px;
    bottom: -55px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    color: var(--accent);
}

.hero__roundel svg {
    width: 108px;
    height: 108px;
}

.hero__video {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 351px;
    overflow: hidden;
    background: var(--dark);
}

.hero__video--paused::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 33, 34, 0.14), rgba(32, 33, 34, 0.14));
    pointer-events: none;
}

.hero__media {
    object-fit: cover;
    object-position: center top;
    filter: grayscale(1);
    width: 100%;
}

.hero__video video.hero__media {
    background: var(--dark);
}

.events {
    padding: 19px 0 13px;
    scroll-margin-top: 108px;
}

.front-page .events {
    padding: 160px 0 13px;
    scroll-margin-top: 108px;
}

.events__top {
    display: grid;
    grid-template-columns: 734px 272px;
    justify-content: space-between;
    align-items: start;
    min-height: 148px;
    margin-bottom: 56px;
}

.events__description,
.newsletter__description,
.materials__intro p,
.club__intro p,
.benefit-list li,
.newsletter__note,
.consultation__copy p,
.consultation__contact p,
.event-card__place p,
.article-card__body p,
.form-note,
.site-footer__column p,
.site-footer__copyright,
.site-footer__dev {
    color: var(--muted);
}

.events__intro {
    width: 734px;
    max-width: none;
    padding-top: 7px;
}

.events__title {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.events__title-slash {
    flex: none;
    display: block;
    width: 35px;
    height: 60px;
    margin-top: 2px;
}

.events__title h2 {
    margin: 0;
    font-size: 65px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.events__description {
    width: 574px;
    max-width: none;
    margin: 24px 0 0;
    font-size: 20px;
    line-height: 26px;
}

.events__filters {
    display: grid;
    grid-template-columns: repeat(2, 112px);
    justify-content: end;
    gap: 0 48px;
    padding-top: 19px;
}

.events__filter-column {
    display: grid;
    align-content: start;
    gap: 8px;
}

.events__filter {
    padding: 0;
    border: 0;
    background: transparent;
    color: #a1a1a1;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.events__filter:hover,
.events__filter:focus-visible {
    color: #fe6702;
}

.events__filter.is-active {
    color: #202122;
}

.event-list {
    border-top: 1px solid rgba(32, 33, 34, 0.14);
}

.event-list [data-home-event-card][hidden] {
    display: none;
}

.event-card {
    display: grid;
    grid-template-columns: 221px 574px 338px 218px;
    gap: 17px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(32, 33, 34, 0.14);
}

.event-card__date {
    display: grid;
    grid-template-columns: 64px 71px;
    gap: 19px;
    align-items: center;
    width: 221px;
}

.event-card__date-block {
    display: grid;
    gap: 8px;
}

.event-card__month {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
}

.event-card__day {
    display: block;
    width: 78px;
    font-size: 65px;
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 1;
}

.event-card__date-meta {
    display: grid;
    gap: 3px;
    align-content: center;
    color: #525252;
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
}

.event-card__media-place {
    display: grid;
    grid-template-columns: 221px 337px;
    gap: 16px;
    align-items: start;
    width: 574px;
}

.event-card__preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 221px;
    height: 136px;
    border-radius: 10px;
    overflow: hidden;
}

.event-card__preview_mobile {
    display: none;
}

.event-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card__preview.is-empty {
    background: transparent;
}

.event-card__place {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 136px;
    padding-top: 3px;
}

.event-card__place h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.04em;
}

.materials-card__body h3,
.article-card__body h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.event-card__place p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 230px;
    margin: 0;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.event-card__pin {
    flex: none;
    width: 16px;
    height: 16px;
}

.event-card__pin img {
    display: block;
    width: 16px;
    height: 16px;
}

.event-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 136px;
    width: 338px;
}

.event-card__content h4 {
    margin: 0;
    width: 338px;
    max-width: 100%;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}

.event-card__format {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    width: fit-content;
    padding: 0 10px;
    border-radius: 55px;
    background: #fff;
    color: #525252;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
}

.event-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56.5px;
    height: 56.5px;
}

.event-card__arrow img {
    display: block;
    width: 100%;
    height: 100%;
}

.event-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 41px;
    padding: 11px 32px 10px;
    border-radius: 5px;
    background: #202122;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.event-card__button_mobile {
    display: none;
}

.event-card__action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 136px;
    width: 218px;
}

.events__footer {
    display: flex;
    justify-content: center;
    padding-top: 56px;
    padding-bottom: 128px;
}

.events__all-link {
    display: inline-flex;
    align-items: center;
    gap: 64px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
}

.events__all-link:hover,
.events__all-link:focus-visible {
    color: var(--ink);
}

.events__all-bracket {
    display: block;
    width: 18.395px;
    height: 61.75px;
    flex: none;
}

.events__all-bracket:last-child {
    transform: rotate(180deg);
}

.events__all-text {
    white-space: nowrap;
}

.article-card__title-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.article-card__arrow {
    display: inline-flex;
    color: var(--accent);
}

.article-card__arrow svg {
    width: 24px;
    height: 24px;
}

.newsletter {
    position: relative;
    padding: 59px 0 56px;
    min-height: 320px;
    overflow: visible;
}

.newsletter::before {
    content: "";
    position: absolute;
    top: -23px;
    right: 0;
    left: 0;
    height: 366px;
    background: var(--canvas);
}

.newsletter__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 861px) minmax(0, 453px);
    justify-content: space-between;
    gap: 1.75rem;
    align-items: start;
    padding: 0;
}

.newsletter__copy {
    width: 100%;
}

.newsletter__title {
    display: grid;
    justify-items: start;
}

.newsletter__title-top {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--ink);
    font-size: 65px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.newsletter__slash {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.94);
    font-size: 65px;
    font-weight: 700;
    line-height: 0.92;
    transform: translateY(-2px);
}

.newsletter__title-bottom {
    margin-top: 7px;
    margin-left: 117px;
    color: var(--accent);
    font-size: 65px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.newsletter__description {
    width: 413px;
    max-width: 100%;
    margin: 16px 0 0 224px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.3;
}

.newsletter__form-block {
    width: 453px;
    max-width: 100%;
    padding-top: 97px;
}

.newsletter__form {
    display: block;
}

.newsletter__control {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 55px;
    padding: 8px;
    padding-left: 23px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.96);
}

.newsletter__field {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
}

.newsletter__field input {
    width: 100%;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(32, 33, 34, 0.5);
    font-size: 13px;
    line-height: 20px;
}

.newsletter__field input::placeholder {
    color: rgba(32, 33, 34, 0.45);
}

.newsletter__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    min-width: 39px;
    height: 39px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: var(--accent);
    color: var(--surface);
}

.newsletter__submit svg {
    width: 24px;
    height: 24px;
}

.newsletter__note {
    max-width: 453px;
    margin: 16px 0 0;
    font-size: 13px;
    line-height: 1.31;
}

.newsletter__note a,
.form-note a,
.footer-contact-link {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.materials {
    padding-top: 128px;
    padding-bottom: 0;
    background: var(--surface);
}

.materials__intro {
    padding: 0 0 72px;
}

.materials__intro-inner {
    display: grid;
    grid-template-columns: minmax(0, 470px) minmax(360px, 574px);
    justify-content: space-between;
    gap: 40px;
    align-items: start;
}

.materials__heading {
    display: inline-flex;
    align-items: flex-start;
    gap: 13px;
}

.materials__title-slash {
    flex: none;
    width: 35px;
    height: 60px;
}

.materials__heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: 65px;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 65px;
    text-transform: uppercase;
    white-space: nowrap;
}

.materials__intro p {
    max-width: 574px;
    margin: 88px 0 0;
    justify-self: end;
    color: var(--muted);
    font-size: 20px;
    line-height: 26px;
}

.materials__shell {
    position: relative;
}

.materials__panels {
    position: relative;
    transition: height 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.materials__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.48s;
}

.materials__panel.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear;
}

.materials__panel-stage {
    position: relative;
    min-height: 695px;
}

.materials__panel .materials-card,
.materials__panel .materials__copy {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 18px, 0);
    will-change: opacity, transform, filter;
    transition: opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.52s ease;
}

.materials__panel.is-active .materials-card,
.materials__panel.is-active .materials__copy {
    opacity: 1;
    filter: blur(0);
    transform: none;
}

.materials__panel .materials__copy {
    transition-delay: 0.04s;
}

.materials__panel .materials-card:nth-child(1) {
    transition-delay: 0.04s;
}

.materials__panel .materials-card:nth-child(2) {
    transition-delay: 0.12s;
}

.materials__panel .materials-card:nth-child(3) {
    transition-delay: 0.18s;
}

.materials__spotlight {
    position: absolute;
    top: 37px;
    left: 506px;
    z-index: 2;
    width: 469px;
}

.materials__cards {
    position: relative;
    min-height: 695px;
}

.materials-card {
    position: absolute;
    display: grid;
    gap: 16px;
    margin: 0;
    color: inherit;
    text-decoration: none;
}

/* — Per-panel card positions (desktop) — */
@media (min-width: 1470px) {

    .materials__shell {
        width: min(1470px, 100vw);
        max-width: none;
        margin-left: calc(50% - 735px);
    }

    /* Webinars */
    [data-materials-panel="webinars"] .materials-card[data-card-index="0"] {
        top: 0;
        left: 36px;
        width: 339px;
    }

    [data-materials-panel="webinars"] .materials-card[data-card-index="0"] .materials-card__visual {
        width: 339px;
        height: 339px;
    }

    [data-materials-panel="webinars"] .materials-card[data-card-index="0"] .materials-card__body {
        width: 216px;
    }

    [data-materials-panel="webinars"] .materials-card[data-card-index="1"] {
        top: 0;
        left: min(982px, calc(100% - 221px));
        width: 221px;
    }

    [data-materials-panel="webinars"] .materials-card[data-card-index="1"] .materials-card__visual {
        width: 221px;
        height: 221px;
    }

    [data-materials-panel="webinars"] .materials-card[data-card-index="2"] {
        top: 270px;
        left: min(1221px, calc(100% - 185px));
        width: 221px;
    }

    [data-materials-panel="webinars"] .materials-card[data-card-index="2"] .materials-card__visual {
        width: 221px;
        height: 221px;
    }

    /* Books */
    [data-materials-panel="books"] .materials-card[data-card-index="0"] {
        top: 0;
        left: 34px;
        width: 339px;
    }

    [data-materials-panel="books"] .materials-card[data-card-index="0"] .materials-card__visual {
        width: 339px;
        height: 339px;
    }

    [data-materials-panel="books"] .materials-card[data-card-index="0"] .materials-card__body {
        width: 216px;
    }

    [data-materials-panel="books"] .materials-card[data-card-index="1"] {
        top: 0;
        left: min(1218px, calc(100% - 220px));
        width: 220px;
    }

    [data-materials-panel="books"] .materials-card[data-card-index="1"] .materials-card__visual {
        width: 221px;
        height: 221px;
    }

    [data-materials-panel="books"] .materials-card[data-card-index="2"] {
        top: 367px;
        left: min(983px, calc(100% - 220px));
        width: 220px;
    }

    [data-materials-panel="books"] .materials-card[data-card-index="2"] .materials-card__visual {
        width: 221px;
        height: 221px;
    }

    /* Products */
    [data-materials-panel="products"] .materials-card[data-card-index="0"] {
        top: 0;
        left: 34px;
        width: 339px;
    }

    [data-materials-panel="products"] .materials-card[data-card-index="0"] .materials-card__visual {
        width: 339px;
        height: 339px;
    }

    [data-materials-panel="products"] .materials-card[data-card-index="0"] .materials-card__body {
        width: 216px;
    }

    [data-materials-panel="products"] .materials-card[data-card-index="1"] {
        top: 255px;
        left: min(1099px, calc(100% - 339px));
        width: 339px;
    }

    [data-materials-panel="products"] .materials-card[data-card-index="1"] .materials-card__visual {
        width: 339px;
        height: 339px;
    }

    [data-materials-panel="products"] .materials-card[data-card-index="1"] .materials-card__body {
        width: 216px;
    }

    /* Programs */
    [data-materials-panel="programs"] .materials-card[data-card-index="0"] {
        top: 10px;
        left: 34px;
        width: 220px;
    }

    [data-materials-panel="programs"] .materials-card[data-card-index="0"] .materials-card__visual {
        width: 221px;
        height: 221px;
    }

    [data-materials-panel="programs"] .materials-card[data-card-index="1"] {
        top: 375px;
        left: 270px;
        width: 220px;
    }

    [data-materials-panel="programs"] .materials-card[data-card-index="1"] .materials-card__visual {
        width: 221px;
        height: 221px;
    }

    [data-materials-panel="programs"] .materials-card[data-card-index="2"] {
        top: 0;
        left: min(1098px, calc(100% - 340px));
        width: 340px;
    }

    [data-materials-panel="programs"] .materials-card[data-card-index="2"] .materials-card__visual {
        width: 339px;
        height: 339px;
    }

    [data-materials-panel="programs"] .materials-card[data-card-index="2"] .materials-card__body {
        width: 216px;
    }

}

/* end @media min-width: 1261px */

.materials-card__visual {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 239, 239, 0.96));
}

.materials-card__layer {
    position: absolute;
    max-width: none;
    transition: transform var(--interactive-duration) var(--interactive-ease);
}

.materials-card--dynamic-cover .materials-card__layer--cover {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.materials-card--book-feature .materials-card__layer--cover {
    top: -39px;
    left: -1px;
    width: 342px;
    height: 458px;
    object-fit: cover;
}

.materials-card--book-window .materials-card__layer--cover,
.materials-card--book-adhd .materials-card__layer--cover {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.materials-card__poster {
    position: absolute;
    inset: 0;
    display: block;
    border-radius: 10px;
}

.materials-card--webinar-poster .materials-card__poster {
    background: radial-gradient(circle at 76% 28%, rgba(254, 103, 2, 0.88), rgba(254, 103, 2, 0) 28%),
    linear-gradient(140deg, #202122 0%, #3a3d42 36%, #efefef 100%);
}

.materials-card--webinar-note .materials-card__poster {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.24)),
    linear-gradient(135deg, #2e3237 0%, #8b8f95 42%, #f2eee9 100%);
}

.materials-card--webinar-grid .materials-card__poster {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(135deg, #5d6169 0%, #181a1d 42%, #efefef 100%);
    background-size: 28px 28px, 28px 28px, cover;
}

.materials-card--product-wave .materials-card__poster {
    background: radial-gradient(circle at 18% 18%, rgba(254, 103, 2, 0.75), rgba(254, 103, 2, 0) 24%),
    radial-gradient(circle at 74% 65%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 22%),
    linear-gradient(145deg, #202122 0%, #5c6167 45%, #ededed 100%);
}

.materials-card--product-sheet .materials-card__poster {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #f6f2eb 0%, #d7d0c5 46%, #7b7f84 100%);
}

.materials-card--product-stack .materials-card__poster {
    background: radial-gradient(circle at 68% 26%, rgba(254, 103, 2, 0.72), rgba(254, 103, 2, 0) 22%),
    linear-gradient(145deg, #17191c 0%, #484c53 44%, #d8d8d8 100%);
}

.materials-card--program-club .materials-card__poster {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28)),
    url("../img/club-phone.png") center 22% / cover no-repeat,
    linear-gradient(145deg, #202122 0%, #6f757f 42%, #f3efe6 100%);
}

.materials-card--program-rules .materials-card__poster {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #202122 0%, #3b3f44 52%, #ececec 100%);
}

.materials-card--program-focus .materials-card__poster {
    background: radial-gradient(circle at 24% 74%, rgba(254, 103, 2, 0.78), rgba(254, 103, 2, 0) 24%),
    linear-gradient(145deg, #d8d8d8 0%, #a4a4a4 42%, #202122 100%);
}

.materials-card__body {
    display: grid;
    gap: 4px;
}

.materials-card--feature .materials-card__body {
    width: 216px;
}

.materials-card--side .materials-card__body {
    width: 220px;
}

.materials-card__body h3 {
    line-height: 26px;
}

.materials-card__body p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 17px;
}

.materials__types {
    display: grid;
    justify-items: start;
    gap: 11px;
}

.materials__type {
    display: inline-flex;
    align-items: center;
    gap: 19px;
    width: auto;
    padding: 0;
    border: 0;
    background: none;
    font-size: 65px;
    font-weight: 800;
    line-height: 50px;
    text-align: left;
    text-transform: uppercase;
    transition: color 0.28s ease;
    white-space: nowrap;
}

.materials__type.is-muted {
    color: var(--subtle);
}

.materials__type.is-active {
    color: var(--ink);
}

.materials__type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56.5px;
    height: 56.5px;
}

.materials__type-arrow {
    flex: none;
    width: 56.5px;
    height: 56.5px;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    transition: transform 0.32s ease;
}

.materials__type.is-active .materials__type-icon {
    display: none;
}

.materials__type:not(.is-active):hover,
.materials__type:not(.is-active):focus-visible {
    color: var(--accent);
    outline: none;
}

.materials__type:not(.is-active):hover .materials__type-arrow,
.materials__type:not(.is-active):focus-visible .materials__type-arrow {
    transform: rotate(45deg);
}

.materials__copy {
    position: absolute;
    top: 370px;
    left: 506px;
    max-width: 328px;
}

.materials__copy p {
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 26px;
}

.materials__link {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 24px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-transform: uppercase;
}

.materials__link img {
    flex: none;
    width: 19px;
    height: 20px;
}

.club {
    padding-top: 157px;
    padding-bottom: 128px;
    background: var(--surface);
    color: var(--ink);
    overflow: hidden;
}

.club__shell {
    position: relative;
    min-height: 759px;
    padding-top: 2px;
}

.club__title {
    display: grid;
    gap: 4px;
}

.club__title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.club__title-mark {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin: 0;
    color: var(--ink);
    font-size: 65px;
    font-weight: 800;
    line-height: 65px;
    text-transform: uppercase;
}

.club__title-mark img {
    flex: none;
    width: 35px;
    height: 60px;
    margin-top: 2px;
}

.club__title-copy {
    margin: 0;
    color: var(--ink);
    font-size: 65px;
    font-weight: 800;
    line-height: 65px;
    text-transform: uppercase;
}

.club__title-copy--space {
    width: auto;
    text-align: right;
}

.club__title-copy--accent {
    width: auto;
    color: var(--accent);
}

.club__title-copy--end {
    width: auto;
    text-align: right;
}

.club__body {
    display: grid;
    grid-template-columns: 445px 458px;
    justify-content: space-between;
    align-items: start;
    min-height: 255px;
    margin-top: 61px;
}

.club__intro {
    max-width: 445px;
}

.club__intro p {
    max-width: 445px;
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 20px;
    line-height: 26px;
}

.club__more {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    text-decoration: none;
}

.club__more span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    text-decoration: underline;
    text-transform: uppercase;
}

.club__more img {
    flex: none;
    width: 19px;
    height: 20px;
}

.club__benefits {
    width: 458px;
    padding-top: 10px;
}

.benefit-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    position: relative;
    max-width: 410px;
    padding-left: 20px;
    color: var(--muted);
    font-size: 20px;
    line-height: 26px;
}

.benefit-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent);
}

.club__band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 158px;
    margin-top: 0;
    padding: 0 30px 0 44px;
    border-radius: 118px;
    background: var(--canvas);
}

.club__band_mobile {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
    gap: 46px;
    margin-top: 96px;
    position: relative;
}

.club__band_mobile::before {
    content: "";
    position: absolute;
    bottom: 40px;
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 0;
    background: #D4D4D4;
    border-radius: 133px;
}

.club__band_mobile .club__phone_mobile img {
    min-width: 274px;
    position: relative;
    width: 100%;
    height: auto;
}

.club__band_mobile .club__benefits_mobile {
    position: relative;
}

.club__band_mobile .club__benefits_mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.club__band_mobile .club__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.club__band_mobile .club__cta-handle-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.club__band_mobile .club__cta-title {
    color: #FE6702;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    text-transform: uppercase;
}

.club__band_mobile p {
    color: #525252;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}

.club__cta {
    display: grid;
    grid-template-columns: 69px 62px 328px;
    align-items: center;
    gap: 20px;
    width: 490px;
    color: var(--ink);
}

.club__cta-icon {
    width: 69px;
    height: 69px;
}

.club__cta-handle {
    color: var(--muted);
    font-size: 13px;
    line-height: 17px;
}

.club__cta-title {
    max-width: 328px;
    color: var(--accent);
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    text-transform: uppercase;
}

.club__band p {
    width: 428px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 26px;
}

.club__phone {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 274px;
    z-index: 2;
}

.club__phone img {
    width: 100%;
    filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.12));
}

.news {
    padding-top: 0;
    padding-bottom: 120px;
    background: var(--surface);
    color: var(--ink);
    max-width: 100%;
    overflow: hidden;
}

.news__shell {
    position: relative;
}

.news__layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 458px));
    justify-content: space-between;
    align-items: start;
}

.news__column {
    display: grid;
    align-content: start;
}

.news__column--lead {
    gap: 48px;
}

.news__column--feature {
    gap: 16px;
}

.news__column--tail {
    gap: 57px;
}

.news__heading--lead {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.news__title-slash {
    flex: none;
    width: 35px;
    height: 60px;
}

.news__title {
    margin: 0;
    color: var(--ink);
    font-size: 65px;
    font-weight: 800;
    line-height: 65px;
    text-transform: uppercase;
}

.news__title--end {
    text-align: right;
}

.news__all {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    text-decoration: none;
    width: fit-content;
}

.news__all span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    text-decoration: underline;
    text-transform: uppercase;
}

.news__all img {
    flex: none;
    width: 19px;
    height: 20px;
}

.news-card {
    display: grid;
    gap: 24px;
    color: inherit;
    text-decoration: none;
}

.news-card__media {
    overflow: hidden;
    border-radius: 10px;
}

.news-card--small .news-card__media {
    height: 261px;
}

.news-card--feature .news-card__media {
    height: 458px;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--interactive-duration) var(--interactive-ease);
}

.news-card__body {
    display: grid;
    gap: 8px;
}

.news-card__headline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 27px;
    gap: 12px;
    align-items: start;
}

.news-card__body h3 {
    width: 339px;
    max-width: 100%;
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.02em;
}

.news-card__body p {
    width: 285px;
    max-width: 100%;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 17px;
}

.news-card__date {
    color: var(--subtle);
    font-size: 13px;
    line-height: 17px;
}

.news-card__arrow {
    width: 27px;
    height: 27px;
}

.news__responsive {
    display: none;
}

.news__responsive-head {
    display: grid;
    gap: 24px;
}

.news__responsive-track {
    overflow: hidden;
}

.swiper-slide.news-card--responsive {
    flex-shrink: 0;
    width: auto;
}

.news__responsive-controls {
    display: none;
}

.news__control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.news__control.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

.news__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.news__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(32, 33, 34, 0.28);
    cursor: pointer;
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.news__dot.is-active {
    width: 10px;
    height: 10px;
    background: rgba(32, 33, 34, 0.6);
}

.about {
    --about-scene-width: max(100vw, 1565px);
    --about-scene-scale: calc(var(--about-scene-width) / 1565);
    --about-scene-height: calc(var(--about-scene-width) * 824 / 1565);
    --about-scene-top: calc(-80px * var(--about-scene-scale));
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    scroll-margin-top: 108px;
    overflow: hidden;
    background: #a1a1a1;
    color: var(--surface);
}

.about__backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    min-width: 1470px;
    background: #a1a1a1;
    pointer-events: none;
    transform: translateX(-50%);
}

.about__background,
.about__portrait {
    position: absolute;
    top: var(--about-scene-top);
    pointer-events: none;
}

.about__background {
    left: 50%;
    width: var(--about-scene-width);
    height: var(--about-scene-height);
    background: url("../img/about-bg-desktop-figma.png") center center / 100% 100% no-repeat;
    transform: translateX(-50%);
}

.about__portrait {
    left: calc(50% - (var(--about-scene-width) * 0.382428115));
    width: calc(var(--about-scene-width) * 1202 / 1565);
    height: var(--about-scene-height);
    background: url("../img/about-person-desktop-figma.png") center center / 100% 100% no-repeat;
    z-index: 1;
}

.about__shell {
    position: relative;
    z-index: 2;
    width: min(1470px, calc(100vw - 80px));
    max-width: 100%;
    aspect-ratio: 1470 / 714;
    margin: 0 auto;
    overflow: visible;
    background: transparent;
}

.about__intro {
    position: absolute;
    top: 5.182073%;
    left: 2.517007%;
    z-index: 3;
}

.about__heading {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.about__title-slash {
    flex: none;
    width: 35px;
    height: 60px;
}

.about__heading h2 {
    margin: 0;
    color: var(--accent);
    font-size: 65px;
    font-weight: 800;
    line-height: 65px;
    text-transform: uppercase;
}

.about__more {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 28px;
    position: relative;
    z-index: 4;
    text-decoration: none;
    width: fit-content;
}

.about__more span {
    color: var(--surface);
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    text-decoration: underline;
    text-transform: uppercase;
}

.about__more img {
    flex: none;
    width: 19px;
    height: 20px;
}

.about__notes {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about__note {
    position: absolute;
    display: block;
    height: auto;
    margin: 0;
    pointer-events: none;
}

.about__note--top {
    top: 6.582633%;
    left: 34.489796%;
    width: 41.020408%;
}

.about__note--right-top {
    top: 19.747899%;
    left: 54.217687%;
    width: 35.442177%;
}

.about__note--left-bottom {
    top: 46.078431%;
    left: 18.095238%;
    width: 38.435374%;
}

.about__note--right-bottom {
    top: 32.913165%;
    left: 50.748299%;
    width: 38.911565%;
}

.about__summary {
    display: none;
}

.about__rules {
    position: absolute;
    top: 68.347339%;
    left: 2.517007%;
    z-index: 0;
    width: 37.755102%;
}

.about__rules h3 {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.about__rules-title {
    display: block;
    width: 100%;
    height: auto;
}

.about__ticker {
    position: absolute;
    top: 650px;
    left: 50%;
    width: 100vw;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-50%);
}

.about__ticker-track {
    display: inline-flex;
    width: max-content;
    color: var(--accent);
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    text-transform: uppercase;
    white-space: nowrap;
    will-change: transform;
    animation: about-ticker 26s linear infinite;
}

.about__ticker-track span {
    flex: none;
}

@keyframes about-ticker {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.consultation {
    position: relative;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    scroll-margin-top: 108px;
}

.consultation::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    left: 50%;
    z-index: 0;
    width: 100vw;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #fe6702 0%, #d4d4d4 100%);
}

.consultation__shell {
    position: relative;
    z-index: 1;
    width: min(1470px, calc(100vw - 80px));
    max-width: 100%;
    margin: 0 auto;
    padding-top: 32px;
}

.consultation__panel {
    position: relative;
    min-height: 616px;
    overflow: hidden;
    background: transparent;
}

.consultation__copy {
    position: absolute;
    top: 129px;
    left: 34px;
    width: 708px;
}

.consultation__title {
    display: grid;
    gap: 0;
}

.consultation__title-mark {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.consultation__title-slash {
    flex: none;
    width: 35px;
    height: 60px;
}

.consultation__title-top {
    color: var(--ink);
    font-size: 65px;
    font-weight: 800;
    line-height: 65px;
    text-transform: uppercase;
}

.consultation__title-bottom {
    display: block;
    width: max-content;
    margin-left: 234px;
    color: var(--surface);
    font-size: 65px;
    font-weight: 800;
    line-height: 65px;
    text-transform: uppercase;
}

.consultation__copy p {
    width: 458px;
    max-width: 100%;
    margin: 24px 0 0 235px;
    font-size: 20px;
    line-height: 26px;
}

.consultation__contact {
    position: absolute;
    top: 132px;
    right: 32px;
    width: 458px;
}

.consultation__contact p {
    margin: 0;
    font-size: 20px;
    line-height: 26px;
}

.consultation__direct {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 15px;
}

.consultation__icons {
    display: flex;
    gap: 16px;
}

.consultation__icons a {
    display: inline-flex;
    width: 56px;
    height: 56px;
}

.consultation__icons img {
    width: 100%;
    height: 100%;
}

.consultation__phone {
    width: 271px;
}

.consultation__phone strong {
    display: block;
    color: var(--ink);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 40px;
}

.consultation__phone span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 17px;
}

.consultation__form {
    position: absolute;
    top: 387px;
    left: 269px;
    width: 915px;
}

.consultation__fields {
    display: grid;
    grid-template-columns: 279px 279px 341px;
    gap: 8px;
    align-items: start;
}

.consultation__fields label {
    display: block;
    min-width: 0;
}

.consultation__fields input {
    width: 100%;
    height: 55px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    line-height: 17px;
}

.consultation__fields input:focus {
    border-color: #a1a1a1;
    box-shadow: 0 0 0 1px rgba(161, 161, 161, 0.55);
    outline: none;
}

.consultation__fields input::placeholder {
    color: rgba(32, 33, 34, 0.5);
}

.consultation__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 341px;
    height: 57px;
    padding: 17px 24px 16px 32px;
    border: 0;
    border-radius: 5px;
    background: var(--ink);
    color: var(--surface);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.consultation__submit span {
    text-align: left;
}

.consultation__submit img {
    width: 24px;
    height: 24px;
    flex: none;
}

.form-note {
    width: 469px;
    margin: 16px 0 0;
    font-size: 13px;
    line-height: 17px;
}

.site-footer {
    --footer-shell-width: min(1406px, calc(100vw - 64px));
    --footer-heading-size: 13px;
    --footer-heading-line: 20px;
    --footer-text-size: 13px;
    --footer-text-line: 17px;
    --footer-contact-size: 20px;
    --footer-contact-line: 26px;
    --footer-link-size: 13px;
    --footer-link-line: 20px;
    --footer-meta-size: 13px;
    --footer-meta-line: 17px;
    position: relative;
    overflow: hidden;
    padding: 117px 0 27px;
    background: var(--canvas);
    scroll-margin-top: 108px;
}

.site-footer__shell {
    width: var(--footer-shell-width);
    margin: 0 auto;
}

.site-footer__brand,
.site-footer__column {
    display: grid;
    align-content: start;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 216px 302px 178px 309px;
    justify-content: space-between;
    column-gap: 32px;
    row-gap: 48px;
    align-items: start;
}

.site-footer__brand {
    gap: 16px;
    width: 216px;
}

.site-footer .site-footer__heading {
    color: var(--subtle);
}

.site-footer__column {
    gap: 16px;
}

.site-footer__copyright {
    margin: 0;
    font-size: var(--footer-text-size);
    line-height: var(--footer-text-line);
}

.social-links--footer {
    display: flex;
    gap: 8px;
}

.social-links--footer a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    transition: color 0.2s ease,
    transform 0.2s ease;
}

.social-links--footer svg {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.site-footer__heading {
    margin: 0;
    color: var(--subtle);
    font-size: var(--footer-heading-size);
    font-weight: 700;
    line-height: var(--footer-heading-line);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-footer__stack {
    display: grid;
    gap: 16px;
}

.site-footer__stack-item {
    display: grid;
    gap: 8px;
}

.site-footer__stack-item--support {
    margin-top: 6px;
}

.site-footer__text {
    margin: 0;
    color: var(--muted);
    font-size: var(--footer-text-size);
    line-height: var(--footer-text-line);
}

.footer-contact-link {
    display: inline-block;
    font-size: var(--footer-contact-size);
    line-height: var(--footer-contact-line);
    color: var(--muted);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s ease,
    transform 0.2s ease;
}

.footer-menu {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu a {
    display: inline-block;
    font-size: var(--footer-link-size);
    font-weight: 700;
    line-height: var(--footer-link-line);
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.site-footer__divider {
    height: 1px;
    margin-top: 31px;
    background: rgba(32, 33, 34, 0.18);
}

.site-footer__wordmark {
    margin: 17px 0 0;
    pointer-events: none;
}

.site-footer__wordmark img {
    display: block;
    width: min(100%, 1057px);
    height: auto;
    margin: 0 auto;
}

.site-footer__meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 11px;
}

.site-footer__dev {
    margin: 0;
    color: var(--subtle);
    font-size: var(--footer-meta-size);
    font-weight: 700;
    line-height: var(--footer-meta-line);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-footer__top {
    display: inline-block;
    color: var(--accent);
    font-size: var(--footer-meta-size);
    font-weight: 700;
    line-height: var(--footer-meta-line);
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-transform: uppercase;
    transition: color 0.2s ease,
    transform 0.2s ease;
}

.cookie-notice {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 95;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: min(390px, calc(100vw - 24px));
    padding: 7px 8px 7px 12px;
    border: 1px solid rgba(32, 33, 34, 0.08);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(32, 33, 34, 0.14);
    transform: translateX(-50%);
    transition: opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.cookie-notice p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
}

.cookie-notice .button {
    min-height: 32px;
    padding: 0.25rem 0.85rem;
    border-radius: 4px;
    background: var(--surface);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.cookie-notice.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
}

.fallback-page {
    padding: 7rem 0 4rem;
}

.fallback-entry h1 {
    margin-top: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

@media (max-width: 1469px) {
    .site-header__nav {
        display: none;
    }

    .site-drawer__grid {
        column-gap: 2.4rem;
        padding-left: 10rem;
    }

    .materials__panel-stage {
        display: grid;
        gap: 34px;
        min-height: 0;
    }

    .materials__spotlight {
        position: static;
        width: 100%;
    }

    .materials__types {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 0 8px 8px;
        margin: 0 -8px;
        scrollbar-width: none;
    }

    .materials__types::-webkit-scrollbar {
        display: none;
    }

    .materials__type {
        flex: none;
        gap: 14px;
        font-size: 48px;
        line-height: 42px;
    }

    .materials__type-icon {
        width: 34px;
        height: 34px;
    }

    .materials__type-arrow {
        width: 34px;
        height: 34px;
    }

    .materials__copy {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 540px;
    }

    .materials__cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        min-height: 0;
    }

    .materials-card {
        position: static;
        width: auto;
    }

    .materials-card__visual {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .materials-card__body {
        width: auto;
        max-width: 260px;
    }

    .news__title {
        font-size: clamp(3.5rem, 5.2vw, 4.4rem);
        line-height: 0.94;
    }

    .news__title-slash {
        width: 28px;
        height: 48px;
    }

    .news__layout {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }

    .news__column--lead,
    .news__column--tail {
        gap: 32px;
    }

    .news-card--small .news-card__media {
        height: 220px;
    }

    .news-card--feature .news-card__media {
        height: 360px;
    }

    .about__notes {
        display: none;
    }

    .about__summary {
        position: absolute;
        top: 40%;
        left: 2.653061%;
        z-index: 4;
        display: block;
        width: 42.585034%;
    }

    .about__rules-title {
        position: relative;
        left: -10px;
    }

    .about__summary p {
        margin: 0;
        color: var(--surface);
        font-size: clamp(15px, 1.428571vw, 20px);
        line-height: clamp(20px, 1.904762vw, 26px);
    }

    .about__summary p + p {
        margin-top: 15px;
    }

    .about__heading h2 {
        font-size: clamp(42px, 4vw, 50px);
        line-height: 1;
    }

    .about__ticker-track {
        font-size: clamp(24px, 2.142857vw, 32px);
        line-height: clamp(30px, 2.619048vw, 40px);
    }

    .consultation__shell {
        width: min(100vw - 48px, 1470px);
    }

    .consultation__panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 458px);
        column-gap: 32px;
        row-gap: 56px;
        align-items: start;
        min-height: 0;
        padding: 112px 32px 44px 34px;
    }

    .consultation__copy,
    .consultation__contact,
    .consultation__form {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .consultation__copy {
        width: min(708px, 100%);
    }

    .consultation__contact {
        width: min(458px, 100%);
        justify-self: end;
    }

    .consultation__form {
        grid-column: 1 / -1;
        width: min(915px, 100%);
    }

    .consultation__fields {
        justify-content: space-between;
    }

    .site-footer__shell {
        --footer-shell-width: min(690px, calc(100vw - 80px));
    }

    .site-footer__grid {
        grid-template-columns: 216px minmax(277px, 336px);
        column-gap: 77px;
        row-gap: 48px;
    }

    .club__benefits {
        justify-self: start;
    }
}

@media (min-width: 980px) and (max-width: 1470px) {
    .events-page .event-card {
        max-width: 100%;
        overflow: scroll;
    }

    .events-page .event-card::-webkit-scrollbar {
        display: none;
    }
}

@media (min-width: 981px) and (max-width: 1470px) {
    .front-page .events .events__top {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 220px);
        gap: 24px;
        margin-bottom: 48px;
    }

    .front-page .events .events__intro {
        width: auto;
        max-width: 100%;
        padding-top: 0;
    }

    .front-page .events .events__title h2 {
        font-size: clamp(50px, 5.8vw, 65px);
        white-space: normal;
    }

    .front-page .events .events__description {
        width: auto;
        max-width: 574px;
    }

    .front-page .events .events__filters {
        width: 100%;
        grid-template-columns: repeat(2, minmax(88px, 1fr));
        gap: 0 16px;
        padding-top: 6px;
    }

    .front-page .events .event-card {
        grid-template-columns: 104px minmax(0, 1.15fr) minmax(0, 1fr) 160px;
        gap: 0 16px;
        align-items: stretch;
        padding: 28px 0;
        overflow: visible;
    }

    .front-page .events .event-card__date {
        width: 104px;
        height: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
        align-content: space-between;
    }

    .front-page .events .event-card__date-block {
        text-align: left;
    }

    .front-page .events .event-card__day {
        width: auto;
        font-size: clamp(44px, 5vw, 56px);
        letter-spacing: -0.06em;
    }

    .front-page .events .event-card__date-meta {
        gap: 4px;
        font-size: 12px;
        line-height: 15px;
    }

    .front-page .events .event-card__media-place {
        width: auto;
        min-width: 0;
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 14px;
    }

    .front-page .events .event-card__preview {
        width: 160px;
        height: 100px;
        border-radius: 8px;
    }

    .front-page .events .event-card__preview_mobile,
    .front-page .events .event-card__content .event-card__button_mobile {
        display: none;
    }

    .front-page .events .event-card__preview.is-empty {
        display: none;
    }

    .front-page .events .event-card--no-preview .event-card__media-place {
        grid-template-columns: minmax(0, 1fr);
    }

    .front-page .events .event-card__place {
        min-width: 0;
        min-height: 100px;
        padding-top: 0;
        justify-content: flex-start;
        gap: 12px;
    }

    .front-page .events .event-card__place h3 {
        font-size: clamp(28px, 3.2vw, 36px);
        line-height: 1;
        letter-spacing: normal;
    }

    .front-page .events .event-card__place p {
        display: none;
    }

    .front-page .events .event-card__content {
        width: auto;
        min-width: 0;
        min-height: 100px;
        gap: 14px;
    }

    .front-page .events .event-card__content h4 {
        width: auto;
        font-size: clamp(18px, 2vw, 22px);
        line-height: 1.25;
    }

    .front-page .events .event-card__action {
        width: 160px;
        min-height: 100px;
        align-self: stretch;
        gap: 16px;
    }

    .front-page .events .event-card__arrow {
        width: 32px;
        height: 32px;
        margin: 0;
    }

    .front-page .events .event-card__button {
        width: 100%;
        padding: 11px 14px 10px;
        font-size: 12px;
        line-height: 15px;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 980px) {
    :root {
        --container: min(100vw - 32px, 100%);
    }

    .section {
        padding: 82px 0;
    }

    .site-header__inner {
        gap: 1rem;
    }

    .about__background {
        background-image: url("../img/about-bg-tablet-figma.png");
    }

    .about__portrait {
        background-image: url("../img/about-person-tablet-figma.png");
    }

    .site-drawer__content {
        min-height: calc(100dvh - 76px);
    }

    .site-drawer__desktop-panel-top {
        padding-right: 24px;
        padding-left: 24px;
    }

    .hero__title {
        bottom: 0;
    }

    .hero__social-label br {
        display: none;
    }

    .site-brand--drawer-panel {
        gap: 6px;
    }

    .site-brand--drawer-panel .site-brand__mark {
        width: 38px;
        height: 38px;
    }

    .front-page .news__title {
        font-size: 50px;
        line-height: 1;
    }

    .form-note {
        margin: 16px auto 0 auto;
        width: 454px;
    }

    .site-brand--drawer-panel .site-brand__text strong {
        font-size: 14px;
        line-height: 0.94;
        letter-spacing: 0.04em;
    }

    .site-brand--drawer-panel .site-brand__text span {
        font-size: 11px;
        line-height: 11px;
        letter-spacing: 0.44em;
    }

    .site-drawer__desktop-panel-body {
        grid-template-columns: minmax(220px, 36vw) minmax(0, 1fr);
    }

    .site-drawer__desktop-media {
        min-height: 320px;
    }

    .site-drawer__desktop-copy {
        gap: 40px;
        padding: 40px 32px 36px;
    }

    .site-drawer__desktop-link {
        font-size: 28px;
        line-height: 36px;
    }

    .site-drawer__desktop-link,
    .site-drawer__contact a {
        max-width: 100%;
    }

    .site-drawer__desktop-footer {
        gap: 24px 32px;
    }

    .events__top,
    .materials__intro-inner {
        grid-template-columns: 1fr;
    }

    .hero__intro {
        display: grid;
        min-height: auto;
        gap: 1.25rem;
        padding: 28px 0 20px;
    }

    .hero__social,
    .hero__title-block {
        position: static;
        width: auto;
        transform: none;
    }

    .events__title h2 {
        font-size: 50px;
        line-height: 50px;
        max-width: 320px;
        letter-spacing: normal;
        white-space: break-spaces;
    }

    .events__description {
        margin-bottom: 32px;
    }

    .front-page .events {
        padding-top: 134px;
    }

    .hero__social-label {
        width: auto;
        margin-bottom: 12px;
    }

    .hero__social {
        margin: 0 auto;
        order: 2;
        grid-template-columns: 1fr;
        width: auto;
        max-width: 360px;
    }

    .hero__title-block {
        order: 1;
        top: auto;
        left: auto;
        text-align: left;
    }

    .newsletter {
        padding-top: 46px;
        padding-bottom: 42px;
    }

    .newsletter::before {
        top: 0;
        height: 100%;
    }

    .newsletter__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .newsletter__title-top {
        font-size: 50px;
        line-height: 1;
        gap: 5px;
    }

    .newsletter__title-bottom {
        font-size: 50px;
        line-height: 1;
        white-space: normal;
        padding-left: 140px;
    }

    .newsletter__title-bottom,
    .newsletter__description {
        margin-left: 0;
    }

    .newsletter__description {
        max-width: 453px;
        width: auto;
        margin: 24px auto 0;
    }

    .newsletter__form-block {
        width: 100%;
        max-width: 453px;
        margin: 0 auto;
        padding-top: 0;
    }

    .club__band_mobile {
        display: flex;
    }

    .materials__intro {
        padding: 0;
    }

    .materials__heading h2 {
        letter-spacing: normal;
        font-size: 50px;
        line-height: 1;
    }

    .materials__intro-inner {
        gap: 30px;
    }

    .materials__intro p {
        margin: 0 0 48px 0;
    }

    .hero__video {
        height: 280px;
    }

    .hero__media {
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 0;
        transform: none;
    }

    .events__description,
    .events__filters,
    .materials__intro p {
        margin-left: 0;
        margin-right: 0;
    }

    .events__intro {
        width: auto;
        padding-top: 0;
    }

    .events__filters {
        justify-content: start;
        padding-top: 0;
    }

    .event-card {
        grid-template-columns: 136px minmax(0, 1fr) auto;
        gap: 16px 20px;
        align-items: start;
    }

    .event-card__date {
        width: 136px;
        grid-row: 1 / span 2;
    }

    .event-card__media-place {
        width: auto;
        grid-template-columns: 132px minmax(0, 1fr);
        grid-column: 2 / 3;
    }

    .event-card__preview {
        width: 132px;
        height: 80px;
    }

    .event-card__preview {
        display: none;
    }

    .event-card__preview_mobile {
        display: flex;
    }

    .event-card__content {
        grid-column: 2 / 3;
        width: auto;
        min-height: 80px;
        justify-content: flex-start;
        gap: 12px;
    }

    .consultation__title-top {
        font-size: 50px;
        line-height: 1;
    }

    .event-card__content h4 {
        width: auto;
        font-size: 18px;
        line-height: 24px;
    }

    .event-card__place {
        min-height: 80px;
        padding-top: 0;
    }

    .event-card__arrow {
        justify-self: end;
    }

    .event-card__action {
        grid-column: 3 / 4;
        grid-row: 1 / span 2;
        width: auto;
    }

    .events__footer {
        padding-bottom: 96px;
    }

    .materials {
        padding-bottom: 128px;
    }

    .materials__panel-stage {
        gap: 28px;
    }

    .materials__type {
        font-size: 50px;
        line-height: 80px;
    }

    .materials__cards {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding: 4px 8px 14px 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .materials__cards::-webkit-scrollbar {
        display: none;
    }

    .materials-card {
        flex: 0 0 min(288px, calc(100vw - 96px));
        scroll-snap-align: center;
        transform: scale(0.88);
        transform-origin: center center;
        opacity: 0.72;
        transition: transform 0.35s ease,
        opacity 0.35s ease;
    }

    .materials-card.is-current {
        transform: scale(1);
        opacity: 1;
    }

    .materials-card--feature .materials-card__body,
    .materials-card--side .materials-card__body {
        max-width: none;
    }

    .club__shell {
        min-height: 0;
        padding-top: 0;
    }

    .club__title {
        gap: 10px;
    }

    .club__title-row {
        display: block;
    }

    .club__title-row--top .club__title-mark {
        margin-bottom: 8px;
    }

    .club__title-copy--space,
    .club__title-copy--accent,
    .club__title-copy--end {
        width: auto;
        text-align: left;
        font-size: 50px;
        line-height: 1;
    }

    .club__title-copy--space {
        float: right;
        max-width: 410px;
        text-align: right;
        font-size: 50px;
        line-height: 1;
    }

    .club__title-copy--end {
        text-align: right;
    }

    .club__body {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: 0;
        margin-top: 40px;
        padding-bottom: 0;
    }

    .club__phone {
        display: none;
    }

    .club__benefits {
        padding-top: 0;
    }

    .club__band {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        min-height: auto;
        margin-top: 32px;
        padding: 28px 24px;
        border-radius: 40px;
    }

    .club__band p {
        max-width: 428px;
    }

    .news {
        padding: 0 0 96px 0;
    }

    .front-page .consultation {
        padding: 0;
    }

    .news__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news__column--lead,
    .news__column--feature,
    .news__column--tail {
        gap: 24px;
    }

    .news__title--end {
        text-align: left;
    }

    .news-card--small .news-card__media {
        height: 261px;
    }

    .news-card--feature .news-card__media {
        height: min(458px, 68vw);
    }

    .about {
        min-height: 0;
        padding-top: 0;
        padding-bottom: 72px;
    }

    .about__heading h2 {
        font-size: 50px;
        line-height: 1;
    }

    .about__background {
        background-image: url("../img/about-bg-mobile-figma.png");
        top: 0;
        left: 50%;
        width: 140%;
        height: 540px;
        transform: translateX(-50%);
        background-position: center top;
    }

    .about__portrait {
        display: none;
    }

    .about__shell {
        width: 100%;
        aspect-ratio: auto;
        padding: 0 16px;
    }

    .about__intro {
        position: relative;
        top: auto;
        left: auto;
        z-index: 4;
        width: min(360px, 100%);
    }

    .about__notes {
        display: none;
    }

    .about__summary {
        position: relative;
        top: auto;
        left: auto;
        z-index: 4;
        width: min(626px, 100%);
        margin-top: 380px;
    }

    .about__summary p {
        margin: 0;
        color: var(--surface);
        font-size: 20px;
        line-height: 26px;
    }

    .about__summary p + p {
        margin-top: 15px;
    }

    .about__rules {
        position: relative;
        top: auto;
        left: auto;
        width: min(463px, 100%);
        margin-top: 24px;
        z-index: 0;
    }

    .about__ticker {
        position: relative;
        top: auto;
        left: 0;
        margin-top: 28px;
        z-index: 0;
    }

    .about__ticker-track {
        display: block;
        width: max-content;
        margin-left: -80px;
        font-size: 24px;
        line-height: 30px;
    }

    .consultation__shell {
        width: min(100vw - 32px, 100%);
        padding-top: 24px;
    }

    .consultation__panel {
        display: flex;
        flex-direction: column;
        gap: 36px;
        padding: 120px 24px 36px;
    }

    .consultation__copy,
    .consultation__contact,
    .consultation__form {
        width: 100%;
    }

    .consultation__title-bottom {
        margin-left: 188px;
        font-size: 50px;
        line-height: 1;
    }

    .consultation__copy p {
        width: min(458px, calc(100% - 188px));
        margin-left: 188px;
    }

    .consultation__contact {
        max-width: 458px;
    }

    .consultation__fields {
        margin: 0 auto;
        grid-template-columns: 1fr;
        width: min(560px, 100%);
    }

    .consultation__submit {
        width: 100%;
    }

    .site-footer {
        --footer-heading-size: 13px;
        --footer-heading-line: 16px;
        --footer-text-size: 13px;
        --footer-text-line: 16px;
        --footer-contact-size: 20px;
        --footer-contact-line: 20px;
        --footer-link-size: 13px;
        --footer-link-line: 16px;
        --footer-meta-size: 13px;
        --footer-meta-line: 16px;
        padding-top: 84px;
        padding-bottom: 39px;
    }

    .site-footer__shell {
        --footer-shell-width: min(690px, calc(100vw - 80px));
    }

    .site-footer__grid {
        grid-template-columns: 216px minmax(277px, 385px);
        column-gap: 77px;
        row-gap: 48px;
    }

    .site-footer__wordmark {
        margin-top: 23px;
    }

    .site-footer__meta {
        align-items: flex-end;
        margin-top: 18px;
    }
}

@media (max-width: 720px) {
    .site-drawer {
        top: 0;
        z-index: 150;
        background: #f7f7f7;
    }

    .site-drawer__content {
        display: block;
        min-height: 100dvh;
        overflow-y: auto;
        padding: 0;
        background: #f7f7f7;
    }

    .site-drawer__overlay {
        display: none;
    }

    .site-drawer__desktop-panel {
        display: none;
    }

    .site-drawer__mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 69px;
        padding: 14px 16px 17px;
        border-bottom: 1px solid #d4d4d4;
    }

    .site-brand--drawer {
        display: inline-flex;
        gap: 6.758px;
    }

    .site-brand--drawer .site-brand__mark {
        width: 38.012px;
        height: 38.012px;
    }

    .site-brand--drawer .site-brand__text {
        display: grid;
    }

    .site-brand--drawer .site-brand__text strong {
        font-size: 13.52px;
        line-height: 0.94;
        letter-spacing: 0.042em;
    }

    .site-brand--drawer .site-brand__text span {
        font-size: 10.98px;
        line-height: 10.98px;
        letter-spacing: 0.455em;
    }

    .site-drawer__mobile-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #202122;
    }

    .site-drawer__mobile-close svg {
        width: 24px;
        height: 24px;
    }

    .site-drawer__mobile-nav {
        display: grid;
        gap: 24px;
        width: 344px;
        max-width: calc(100vw - 32px);
        margin: 40px auto 32px;
    }

    .site-drawer__mobile-links {
        display: grid;
        gap: 16px;
        margin: 0;
        padding: 0 0 24px;
        list-style: none;
        border-bottom: 1px solid #d4d4d4;
    }

    .site-drawer__mobile-links a {
        display: inline-flex;
        color: #202122;
        font-size: 16px;
        font-weight: 800;
        line-height: 20px;
        text-transform: uppercase;
        transition: color 0.2s ease;
    }

    .site-drawer__mobile-links a:hover,
    .site-drawer__mobile-links a:focus-visible {
        color: var(--accent);
    }

    .site-drawer__mobile-contacts {
        display: grid;
        gap: 16px;
        padding-bottom: 24px;
        border-bottom: 1px solid #d4d4d4;
    }

    .site-drawer__mobile-contact {
        display: grid;
        gap: 8px;
    }

    .site-drawer__mobile-contact p {
        font-size: 12px;
        line-height: 15px;
    }

    .site-drawer__mobile-contact a {
        color: #525252;
        font-size: 16px;
        line-height: 20px;
        text-decoration: underline;
        text-underline-offset: 0.12em;
        transition: color 0.2s ease;
    }

    .site-drawer__mobile-contact a:hover,
    .site-drawer__mobile-contact a:focus-visible {
        color: var(--accent);
    }

    .site-drawer__mobile-footer {
        display: grid;
        gap: 16px;
        justify-items: start;
    }

    .site-drawer__mobile-cta {
        width: 218px;
        max-width: 100%;
        font-size: 12px;
    }

    .site-drawer__mobile-social {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
    }

    .site-drawer__mobile-social p {
        flex: none;
        width: 130px;
        font-size: 12px;
        line-height: 15px;
    }

    .site-drawer__mobile-social .social-links {
        flex-wrap: wrap;
        gap: 14.4px;
    }

    .site-drawer__mobile-social .social-links a,
    .site-drawer__mobile-social .social-links svg {
        width: 32px;
        height: 32px;
    }

    .newsletter {
        min-height: 0;
        padding-top: 36px;
        padding-bottom: 32px;
    }

    .newsletter__title-top {
        gap: 10px;
        white-space: wrap;
        font-size: 32px;
    }

    .newsletter__slash {
        font-size: 28px;
        line-height: 1;
        position: relative;
        top: -15px;
    }

    .newsletter__title-bottom {
        margin-top: 4px;
        font-size: 32px;
        padding-left: 28px;
    }

    .newsletter__description {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
    }

    .newsletter__control {
        padding-left: 18px;
    }

    .drawer-menu__link {
        gap: 0.55rem;
        font-size: clamp(1.5rem, 8vw, 2.35rem);
    }

    .drawer-menu__arrow {
        width: 20px;
        height: 20px;
    }

    .site-brand__text {
        display: none;
    }

    .hero {
        display: flex;
        flex-direction: column;
        min-height: calc(100dvh - 70px);
        padding-top: 32px;
    }

    .hero__intro {
        gap: 1rem;
        padding-top: 0;
    }

    .hero__title {
        font-size: clamp(4rem, 20vw, 5.6rem);
    }

    .hero__subtitle {
        font-size: clamp(1.9rem, 10vw, 2.7rem);
    }

    .hero__social {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        max-width: none;
    }

    .hero__social-label {
        width: auto;
    }

    .hero__roundel,
    .hero__roundel svg {
        width: 78px;
        height: 78px;
    }

    .hero__roundel {
        bottom: -39px;
    }

    .hero__video {
        flex: 1;
        height: auto;
        min-height: 220px;
    }

    .hero__video > .hero__media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
    }

    .consultation__shell {
        width: 100%;
        padding-top: 0;
    }

    .consultation__panel {
        gap: 36px;
        padding: 105px 16px 125px;
    }

    .consultation__title-mark {
        gap: 10px;
    }

    .consultation__title-slash {
        width: 17px;
        height: 27px;
    }

    .consultation__title-bottom {
        margin-left: 34px;
    }

    .consultation__copy p {
        width: calc(100% - 34px);
        margin-top: 18px;
        margin-left: 34px;
        font-size: 18px;
        line-height: 24px;
    }

    .consultation__contact p {
        font-size: 18px;
        line-height: 24px;
    }

    .events {
        padding-top: 22px;
    }

    .front-page .events {
        padding-top: 104px;
    }

    .events__title {
        gap: 6px;
    }

    .events__title-slash {
        width: 20px;
        height: 36px;
        margin-top: 4px;
    }

    .events__title h2 {
        font-size: 32px;
        line-height: 1;
        white-space: normal;
    }

    .site-footer__divider {
        margin-top: 20px;
    }

    .events__description {
        width: 100%;
        max-width: 330px;
        margin-top: 10px;
        font-size: 16px;
        line-height: 22px;
    }

    .section-title__lines--split {
        display: grid;
        width: auto;
        gap: 0;
    }

    .events__filters {
        gap: 48px;
    }

    .events__top {
        margin-bottom: 25px;
    }

    .event-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .event-card__date,
    .event-card__media-place,
    .event-card__content,
    .event-card__action {
        grid-column: auto;
        grid-row: auto;
    }

    .event-card__date {
        width: 136px;
    }

    .event-card__media-place {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

    .event-card__preview {
        width: min(100%, 220px);
        height: 136px;
    }

    .event-card__preview.is-empty {
        display: none;
    }

    .event-card__place,
    .event-card__content {
        min-height: 0;
    }

    .event-card__place p {
        max-width: 320px;
    }

    .event-card__action {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: 0;
    }

    .events__all-link {
        gap: 18px;
        font-size: 11px;
        line-height: 14px;
    }

    .events__footer {
        padding-top: 44px;
        padding-bottom: 56px;
    }

    .events__all-text {
        white-space: normal;
        text-align: center;
    }

    .events__all-bracket {
        width: 12px;
        height: 42px;
    }

    .newsletter__form {
        width: 100%;
    }

    .newsletter__submit {
        width: 39px;
    }

    .materials__type {
        font-size: 32px;
        line-height: 1;
        gap: 10px;
    }

    .materials__intro {
        padding: 22px 0 30px;
    }

    .materials__heading {
        gap: 10px;
    }

    .materials__title-slash {
        width: 16px;
        height: 27px;
        margin-top: 2px;
    }

    .materials__intro-inner {
        gap: 16px;
    }

    .materials__intro p {
        margin: 0 0 30px 0;
    }

    .materials__heading h2 {
        font-size: 32px;
        line-height: 1;
        white-space: normal;
    }

    .site-header__inner {
        min-height: 69px;
    }

    .materials__intro p {
        max-width: 330px;
        margin-top: 10px;
        font-size: 16px;
        line-height: 22px;
    }

    .materials__spotlight {
        width: 100%;
    }

    .materials__type-icon {
        width: 26px;
        height: 26px;
    }

    .materials__type-arrow {
        width: 26px;
        height: 26px;
    }

    .materials__copy p {
        font-size: 16px;
        line-height: 22px;
    }

    .materials__cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .materials-card,
    .materials-card.is-current {
        flex: none;
        transform: none;
        opacity: 1;
    }

    .materials-card--feature .materials-card__body,
    .materials-card--side .materials-card__body {
        width: auto;
        max-width: none;
    }

    .news {
        padding-bottom: 72px;
    }

    .front-page .news__title {
        font-size: 32px;
        line-height: 1;
    }

    .news__heading--lead {
        gap: 6px;
    }

    .news__title-slash {
        width: 17px;
        height: 28px;
        position: relative;
        top: -15px;
    }

    .news__layout {
        gap: 32px;
    }

    .news-card--small .news-card__media,
    .news-card--feature .news-card__media {
        height: auto;
        aspect-ratio: 458 / 261;
    }

    .club__title-mark,
    .club__title-copy,
    .about__heading h2,
    .about__rules h3 {
        font-size: 32px;
        line-height: 1;
        float: left;
        text-align: left;
    }

    .about__title-slash {
        width: 20px;
        height: 36px;
    }

    .about__heading {
        gap: 10px;
    }

    .about__intro {
        width: min(320px, 100%);
    }

    .about__more {
        margin-top: 20px;
    }

    .about__more span {
        font-size: 12px;
        line-height: 16px;
    }

    .about__portrait {
        top: 104px;
        width: min(96vw, 430px);
        height: 300px;
    }

    .about__summary {
        width: min(341px, 100%);
        margin-top: 316px;
    }

    .about__summary p {
        font-size: 16px;
        line-height: 20px;
    }

    .about__rules {
        width: min(288px, 100%);
    }

    .about__ticker-track {
        font-size: 18px;
        line-height: 24px;
        margin-left: -48px;
    }

    .club__title-mark {
        gap: 10px;
        line-height: 0.92;
    }

    .club__title-mark img {
        width: 17px;
        height: 28px;
        margin-top: 3px;
    }

    .club__cta {
        grid-template-columns: 56px 1fr;
        gap: 14px;
    }

    .club__cta-handle {
        grid-column: 2;
    }

    .club__cta-title {
        grid-column: 1 / -1;
        font-size: 2rem;
        line-height: 1;
    }

    .club__phone {
        width: min(220px, 72vw);
    }

    .site-footer__bottom,
    .cookie-notice {
        flex-direction: column;
        align-items: flex-start;
    }

    .consultation__phone strong {
        font-size: 28px;
        line-height: 36px;
    }

    .consultation__submit {
        padding-left: 24px;
    }

    .form-note {
        width: 100%;
    }

    .consultation__icons {
        gap: 12px;
    }

    .site-footer {
        --footer-shell-width: min(342px, calc(100vw - 32px));
        --footer-heading-size: 12px;
        --footer-heading-line: 15px;
        --footer-text-size: 12px;
        --footer-text-line: 15px;
        --footer-contact-size: 16px;
        --footer-contact-line: 20px;
        --footer-link-size: 12px;
        --footer-link-line: 15px;
        --footer-meta-size: 12px;
        --footer-meta-line: 15px;
        padding-top: 73px;
        padding-bottom: 48px;
    }

    .site-footer__shell {
        width: var(--footer-shell-width);
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 48px;
    }

    .site-footer .site-brand__text {
        display: grid;
    }

    .site-footer__brand,
    .site-footer__column {
        width: 100%;
    }

    .site-footer__wordmark {
        margin-top: 21px;
    }

    .site-footer__meta {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 17px;
        gap: 16px;
    }

    .cookie-notice {
        right: 12px;
        left: 12px;
        max-width: none;
        transform: none;
    }

    .cookie-notice.is-hidden {
        transform: translateY(10px);
    }
}

@media (max-width: 980px) {
    .event-card__date-meta,
    .event-card__place p {
        display: none;
    }

    .materials__panel-stage {
        display: flex;
        flex-direction: column;
        gap: 48px;
        min-height: 0;
    }

    .materials__copy {
        order: 1;
        max-width: 688px;
    }

    .materials__cards {
        order: 2;
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 0 0 6px;
        min-height: 415px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .materials__cards::-webkit-scrollbar {
        display: none;
    }

    .materials-card,
    .materials-card.is-current {
        flex: none;
        opacity: 1;
        transform: none;
    }

    .materials-card[data-card-index="0"] {
        width: 336px;
    }

    .materials-card:not([data-card-index="0"]) {
        width: 220px;
    }

    .materials-card[data-card-index="0"] .materials-card__visual {
        width: 336px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .materials-card[data-card-index="0"] .materials-card__body {
        width: 216px;
    }

    .materials-card:not([data-card-index="0"]) .materials-card__body {
        width: 220px;
    }

    .club {
        padding-top: 0;
        padding-bottom: 112px;
    }

    .club__title-row--top .club__title-mark {
        font-size: 50px;
        line-height: 1;
        gap: 13px;
    }

    .club__title {
        gap: 10px;
    }

    .club__body {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
      "intro intro"
      "benefits phone";
        gap: 32px 24px;
        margin-top: 24px;
        padding-bottom: 0;
        align-items: start;
    }

    .club__intro {
        grid-area: intro;
        max-width: 688px;
    }

    .club__benefits {
        grid-area: benefits;
        width: auto;
        max-width: 100%;
        padding-top: 0;
    }

    .benefit-list li {
        max-width: 100%;
    }

    .club__phone {
        grid-area: phone;
        position: relative;
        left: auto;
        bottom: auto;
        width: 240px;
        margin: 0 0 0 auto;
        transform: none;
    }

    .club__band {
        display: none;
    }

    .club__cta {
        width: 279px;
        grid-template-columns: 69px 1fr;
        row-gap: 10px;
    }

    .club__cta-handle,
    .club__cta-title {
        grid-column: 2;
    }

    .club__band p {
        width: auto;
        max-width: 279px;
    }

    .news__layout {
        display: none;
    }

    .news__responsive {
        display: grid;
        gap: 32px;
    }

    .news__responsive-head {
        width: min(658px, 100%);
    }

    .news__responsive-track {
        margin: 0 -40px;
    }

    .swiper-slide.news-card--responsive {
        width: 458px;
    }

    .news-card--responsive .news-card__media {
        height: 261px;
    }

    .news__responsive-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(686px, 100%);
        margin: 0 auto;
    }

    .event-card__date-block {
        text-align: center;
    }

    .about {
        min-height: 714px;
    }

    .about__shell {
        width: 768px;
        max-width: 100%;
        height: 714px;
        aspect-ratio: auto;
        padding: 0;
    }

    .about__background {
        top: 0;
        left: -351px;
        width: 1470px;
        height: 912px;
        transform: none;
    }

    .about__portrait {
        display: block;
        top: -80px;
        left: -214px;
        width: 1202px;
        height: 824px;
        transform: none;
    }

    .about__intro {
        top: 37px;
        left: 37px;
        width: 318px;
    }

    .about__summary {
        position: absolute;
        top: 317px;
        left: 39px;
        width: 626px;
        margin: 0;
    }

    .about__rules {
        position: absolute;
        top: 488px;
        left: 37px;
        width: 555px;
        margin: 0;
        z-index: 1;
    }

    .about__ticker {
        position: absolute;
        top: 680px;
        left: 50%;
        width: 100vw;
        margin: 0;
        transform: translateX(-50%);
        z-index: 1;
    }

    .about__ticker-track {
        margin-left: 0;
        font-size: 32px;
        line-height: 40px;
    }
}

@media (min-width: 721px) and (max-width: 980px) {
    .front-page .events .event-card {
        grid-template-columns: 101px minmax(0, 1fr);
        grid-template-rows: auto 1fr auto;
        gap: 0 13px;
        align-items: start;
        padding: 24px 0;
        position: relative;
    }

    .front-page .events .event-card__date {
        grid-column: 1;
        grid-row: 1;
        width: 101px;
        grid-template-columns: 1fr;
        gap: 0;
        align-content: start;
    }

    .front-page .events .event-card__month {
        line-height: 15px;
    }

    .front-page .events .event-card__day {
        width: auto;
        letter-spacing: normal;
        margin-bottom: 17px;
    }

    .front-page .events .event-card__media-place,
    .front-page .events .event-card__action {
        display: contents;
    }

    .front-page .events .event-card__preview {
        display: flex;
        grid-column: 1;
        grid-row: 2 / 4;
        width: 101px;
        height: 62px;
        border-radius: 5px;
        align-self: end;
    }

    .front-page .events .event-card__preview_mobile {
        display: none;
    }

    .front-page .events .event-card__preview.is-empty {
        display: none;
    }

    .front-page .events .event-card__place {
        grid-column: 2;
        grid-row: 1;
        min-height: 0;
        padding-top: 0;
        padding-right: 40px;
    }

    .front-page .events .event-card__place p {
        display: none;
    }

    .front-page .events .event-card--no-preview .event-card__place {
        grid-column: 2;
    }

    .front-page .events .event-card__place h3 {
        font-size: 32px;
        line-height: 33px;
    }

    .front-page .events .event-card__content {
        grid-column: 2;
        grid-row: 2;
        min-height: 0;
        width: auto;
        gap: 8px;
        margin-top: 24px;
        justify-content: flex-start;
    }

    .front-page .events .event-card__content h4 {
        width: auto;
        font-size: 20px;
        line-height: 26px;
    }

    .front-page .events .event-card__format {
        min-height: 24px;
    }

    .front-page .events .event-card__action {
        width: auto;
    }

    .front-page .events .event-card__arrow {
        position: absolute;
        top: 24px;
        right: 0;
        width: 27px;
        height: 27px;
        margin: 0;
    }

    .front-page .events .event-card__button {
        grid-column: 2;
        grid-row: 3;
        display: inline-flex;
        min-height: 41px;
        padding: 11px 32px 10px;
        width: fit-content;
        max-width: 100%;
        justify-self: start;
        margin-top: 16px;
        white-space: nowrap;
    }

    .front-page .events .event-card__button.event-card__button_mobile {
        display: none;
    }

    .front-page .events .event-card__action .event-card__button {
        display: inline-flex;
    }

    .consultation__copy {
        width: 488px;
    }

    .consultation__title-bottom {
        margin-left: 122px;
    }

    .consultation__copy p {
        width: 458px;
        margin-left: 122px;
    }

    .consultation__contact {
        display: none;
    }

    .consultation__fields {
        width: 454px;
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 720px) {
    .event-card {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 16px 12px;
        align-items: start;
        padding: 24px 0;
    }

    .event-card__date {
        width: 72px;
        height: 100%;
        grid-template-columns: 1fr;
        gap: 0;
        align-content: space-between;
    }

    .event-card__month {
        font-size: 12px;
        line-height: 15px;
    }

    .event-card__day {
        width: auto;
        font-size: 50px;
    }

    .event-card__media-place {
        grid-column: 2;
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
    }

    .event-card__preview {
        width: 72px;
        height: 44px;
    }

    .event-card__place h3 {
        font-size: 24px;
        line-height: 26px;
    }

    .event-card__content {
        grid-column: 2;
        min-height: 0;
        gap: 8px;
    }

    .event-card__content h4 {
        width: auto;
        font-size: 15px;
        line-height: 20px;
    }

    .event-card__action {
        grid-column: 2;
        width: 100%;
        min-height: 0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .event-card__button {
        min-height: 36px;
        padding: 8px 20px;
        font-size: 12px;
        line-height: 15px;
    }

    .materials {
        padding-bottom: 10px;
    }

    .materials-section-nav {
        display: grid;
        justify-items: start;
        gap: 18px;
        margin-top: 40px;
    }

    .materials-section-nav__link {
        gap: 10px;
        font-size: 16px;
        line-height: 15px;
    }

    .materials-section-nav__link img {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .materials__panel-stage {
        gap: 48px;
    }

    .materials__copy {
        max-width: 341px;
    }

    .materials__cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 10px;
        overflow: visible;
        padding: 0;
        min-height: 0;
    }

    .materials-card[data-card-index="0"] {
        grid-column: 1 / -1;
        width: 343px;
        max-width: 100%;
    }

    .materials-card:not([data-card-index="0"]) {
        width: auto;
    }

    .materials-card__visual {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .materials-card[data-card-index="0"] .materials-card__body {
        width: 216px;
        max-width: 100%;
    }

    .materials-card:not([data-card-index="0"]) .materials-card__body {
        width: auto;
        max-width: 168px;
    }

    .materials-card__body h3 {
        font-size: 16px;
        line-height: 22px;
    }

    .materials-card__body p {
        font-size: 12px;
        line-height: 15px;
    }

    .club {
        padding-top: 90px;
        padding-bottom: 112px;
    }

    .club__title-row--top .club__title-mark {
        font-size: 32px;
        line-height: 1;
        margin: 0;
        gap: 6px;
    }

    .club__title {
        gap: 0;
    }

    .club__body {
        grid-template-columns: 1fr;
        grid-template-areas:
      "intro"
      "benefits"
      "phone";
        gap: 48px;
        margin-top: 16px;
    }

    .club__intro p {
        font-size: 16px;
        line-height: 20px;
        margin: 0 0 24px;
    }

    .benefit-list li {
        font-size: 16px;
        line-height: 20px;
    }

    .club__band_mobile {
        margin-top: 0;
        flex-direction: column;
    }

    .club__band_mobile .club__cta {
        align-items: center;
        row-gap: 20px;
    }

    .club__band_mobile .club__cta-handle-wrapper {
        flex-direction: column;
    }

    .club__band_mobile .club__cta-title {
        text-align: center;
        font-size: 24px;
        line-height: 26px;
    }

    .club__band_mobile p {
        font-size: 16px;
        line-height: 20px;
        padding-bottom: 70px;
    }

    .club__band_mobile::before {
        bottom: 0;
        top: 250px;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 130px 130px 30px 30px;
    }

    .club__phone {
        width: 274px;
        margin: 0 auto;
    }

    .club__band {
        gap: 20px;
        margin-top: 24px;
        padding: 24px 28px;
        border-radius: 24px;
    }

    .news__responsive {
        gap: 43px;
    }

    .news__responsive-head {
        gap: 16px;
    }

    .news__responsive-track {
        margin: 0 -16px;
    }

    .swiper-slide.news-card--responsive {
        width: 283px;
        opacity: 0.42;
        transform: scale(0.88);
        transform-origin: center top;
        transition: transform var(--interactive-duration) var(--interactive-ease),
        opacity var(--interactive-duration) var(--interactive-ease);
    }

    .swiper-slide.news-card--responsive.swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }

    .swiper-slide.news-card--responsive.swiper-slide-prev,
    .swiper-slide.news-card--responsive.swiper-slide-next {
        opacity: 0.72;
        transform: scale(0.92);
    }

    .news-card--responsive .news-card__media {
        height: 178px;
    }

    .swiper-slide-active.news-card--responsive .news-card__media {
        height: 292px;
    }

    .news__responsive-track .swiper-wrapper {
        align-items: flex-start;
        min-height: 520px;
    }

    .news-card--responsive .news-card__body h3,
    .news-card--responsive .news-card__body p {
        width: 219px;
        max-width: 100%;
    }

    .news-card--responsive .news-card__body h3 {
        font-size: 15px;
        line-height: 20px;
    }

    .news-card--responsive .news-card__body p,
    .news-card--responsive .news-card__date {
        font-size: 12px;
        line-height: 15px;
    }

    .news__responsive-controls {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .about {
        min-height: 778px;
        padding-bottom: 0;
    }

    .about__portrait {
        display: none;
    }

    .about__shell {
        width: 375px;
        max-width: 100%;
        height: 778px;
        padding: 0 17px;
    }

    .about__background {
        top: -1px;
        left: -553px;
        width: 1481px;
        height: 779px;
        transform: none;
    }

    .about__intro {
        position: absolute;
        top: 43px;
        left: 17px;
        width: 341px;
    }

    .about__summary {
        position: absolute;
        top: 429px;
        left: 17px;
        width: 341px;
        margin: 0;
    }

    .about__rules {
        position: absolute;
        top: 616px;
        left: 17px;
        width: 288px;
        margin: 0;
    }

    .about__ticker {
        position: absolute;
        top: 710px;
        left: 50%;
        margin: 0;
        width: 100vw;
        transform: translateX(-50%);
    }

    .about__ticker-track {
        margin-left: 0;
        font-size: 32px;
        line-height: 40px;
    }

    .consultation__copy {
        order: 1;
    }

    .consultation__contact {
        order: 3;
        width: 342px;
        max-width: 100%;
    }

    .consultation__title-mark {
        gap: 6px;
    }

    .consultation__title-top,
    .consultation__title-bottom {
        font-size: 32px;
        line-height: 32px;
    }

    .consultation__title-bottom {
        margin-left: 22px;
    }

    .consultation__copy p {
        width: 341px;
        max-width: 100%;
        margin-top: 16px;
        margin-left: 0;
        font-size: 16px;
        line-height: 20px;
    }

    .consultation__fields {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .consultation__form {
        order: 2;
    }

    .consultation__submit {
        width: 100%;
        max-width: 100%;
        padding: 17px 6px 16px 32px;
        font-size: 12px;
        line-height: 15px;
    }

    .form-note {
        width: 342px;
        max-width: 100%;
        font-size: 12px;
        line-height: 15px;
    }

    .consultation__contact p {
        font-size: 16px;
        line-height: 20px;
    }

    .consultation__direct {
        gap: 24px;
        align-items: center;
    }

    .consultation__phone strong {
        font-size: 24px;
        line-height: 26px;
    }

    .consultation__phone span {
        font-size: 12px;
        line-height: 15px;
    }
}

@media (max-width: 479px) {
    .front-page .events .event-card {
        grid-template-columns: 78px minmax(0, 1fr);
        grid-template-rows: auto auto;
        gap: 10px 13px;
        position: relative;
        padding: 24px 0;
    }

    .front-page .events .event-card__date {
        grid-row: 1 / -1;
        grid-column: 1;
        width: 78px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
        grid-template-columns: none;
        align-content: unset;
    }

    .front-page .events .event-card__date-block {
        display: grid;
        gap: 8px;
    }

    .front-page .events .event-card__preview_mobile {
        display: flex;
        width: 78px;
        height: 48px;
        border-radius: 5px;
        overflow: hidden;
        margin-top: auto;
    }

    .front-page .events .event-card__day {
        font-size: 32px;
        line-height: 37px;
        width: auto;
    }

    .front-page .events .event-card__media-place {
        grid-column: 2;
        grid-template-columns: 1fr;
        gap: 0;
        width: auto;
    }

    .front-page .events .event-card__place {
        min-height: 0;
    }

    .front-page .events .event-card__place h3 {
        font-size: 24px;
        line-height: 26px;
        overflow: hidden;
        max-height: 33px;
    }

    .front-page .events .event-card__content {
        grid-column: 2;
        gap: 8px;
    }

    .front-page .events .event-card__content h4 {
        font-size: 16px;
        line-height: 20px;
    }

    .front-page .events .event-card__button_mobile {
        display: inline-flex;
        margin-top: 8px;
    }

    .front-page .events .event-card__action {
        position: absolute;
        top: 24px;
        right: 0;
        width: auto;
        min-height: auto;
        flex-direction: column;
    }

    .front-page .events .event-card__action .event-card__button {
        display: none;
    }

    .front-page .events .event-card__arrow {
        width: 27px;
        height: 27px;
    }

    .front-page .events .events__all-bracket {
        width: 12px;
        height: 42px;
    }

    .front-page .events .events__all-text {
        font-size: 16px;
        line-height: 22px;
    }
}

.event-page {
    position: relative;
    padding-bottom: 0;
    background: #f7f7f7;
}

.event-page__shell {
    box-sizing: border-box;
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
    padding: 0 32px;
}

.about-page__method-media picture {
    height: 100%;
}

.about-page__rules {
    position: relative;
    z-index: 1;
}

.event-page__hero-section {
    padding-bottom: 128px;
}

.event-page__breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 23px;
    margin: 0 0 48px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.event-page__breadcrumbs a,
.event-page__breadcrumbs-current {
    color: inherit;
}

.event-page__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.event-page__hero-media {
    position: relative;
    height: 464px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: #0d0d0d;
}

.event-page__hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-page__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 33, 34, 0) 0%, rgba(32, 33, 34, 0.68) 100%),
    linear-gradient(90deg, rgba(32, 33, 34, 0.46) 0%, rgba(32, 33, 34, 0) 55%);
}

.event-page__hero-content {
    position: absolute;
    left: 169px;
    bottom: 39px;
    z-index: 1;
}

.event-page__hero-content h1 {
    max-width: 745px;
    margin: 0;
    color: #fff;
    font-size: 65px;
    font-weight: 800;
    line-height: 65px;
    text-transform: uppercase;
}

.event-page__content h2 {
    max-width: none;
    margin: 0 0 32px;
    color: #202122;
    font-size: 65px;
    font-weight: 800;
    line-height: 65px;
    text-transform: uppercase;
}

.event-page__hero-tag {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin: 24px 0 0;
    padding: 7px 18px;
    border-radius: 55px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
}

.event-page__summary {
    display: grid;
    grid-template-columns: 695px 458px;
    column-gap: 16px;
    align-items: start;
    padding: 53px 0 37px;
    padding-left: 119px;
}

.event-page__meta-grid {
    display: grid;
    grid-template-columns: 339px 340px;
    gap: 32px 16px;
    align-content: start;
}

.event-page__meta-item {
    display: grid;
    gap: 16px;
    align-content: start;
}

.event-page__meta-label {
    margin: 0;
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    text-transform: uppercase;
}

.event-page__meta-value {
    margin: 0;
    color: #202122;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

.event-page__actions {
    display: grid;
    gap: 16px;
    align-content: start;
}

.event-page__actions--soon {
    padding-top: 15px;
}

.event-page__status-button,
.event-page__map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 55px;
    border-radius: 5px;
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.event-page__status-button:hover path,
.event-page__map-button:hover path {
    stroke: #fe6702;
    transition: all .2s ease;
}

.event-page__status-button svg,
.event-page__map-button svg {
    height: 30px;
    width: 30px;
    transition: all .2s ease;
}

.event-page__status-button svg path,
.event-page__map-button svg path {
    transition: all .2s ease;
}

.event-page__status-button {
    border: 0;
    text-decoration: none;
}

.event-page__status-button--muted {
    background: #d4d4d4;
    color: #fff;
}

.event-page__status-button,
.event-page__map-button {
    height: 55px;
    min-height: 55px;
}

.event-page__actions--soon .event-page__status-button--muted {
    border: 1px solid #d4d4d4;
    background: transparent;
    color: #a1a1a1;
    border-radius: 5px;
}

.event-page__status-button--accent {
    background: #fe6702;
    color: #fff;
}

.event-page__map-button {
    gap: 8px;
    border: 1px solid #d4d4d4;
    color: #525252;
}

.event-page__map-button img {
    width: 30px;
    height: 30px;
}

.event-page__address {
    max-width: 458px;
    margin: 8px 0 0;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.event-page__divider {
    height: 1px;
    width: 1403px;
    margin-left: 2px;
    background: #d4d4d4;
}

.event-page__content-wrap {
    padding: 48px 0 0;
    padding-left: 119px;
}

.event-page__content {
    width: 1169px;
    max-width: 100%;
}

.event-page__prose {
    display: grid;
    gap: 15px;
}

.event-page__prose p {
    margin: 0;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.event-page__bullet-list {
    display: grid;
    gap: 16px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.event-page__bullet-list li {
    position: relative;
    padding-left: 17px;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.event-page__bullet-list li::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 13px;
    height: 21px;
    background: url("../img/event-bullet.svg") center/contain no-repeat;
}

.event-page__footer-cta {
    width: min(811px, 100%);
    margin-top: 57px;
}

.event-page__footer-cta--soon {
    width: min(458px, 100%);
}

.event-page__footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.event-page__footer-buttons .event-page__status-button,
.event-page__footer-buttons .event-page__map-button {
    width: 338px;
}

.event-page__address--footer {
    max-width: 811px;
    margin-top: 17px;
}

@media (max-width: 1200px) {
    .event-page__shell {
        width: min(1470px, calc(100vw - 48px));
        padding: 0 24px;
    }

    .event-page__hero-media {
        width: 100%;
        height: 480px;
        margin-left: 0;
    }

    .event-page__hero-content {
        left: 48px;
    }

    .event-page__hero-content h1,
    .event-page__content h2 {
        font-size: 56px;
    }

    .event-page__summary {
        grid-template-columns: 1fr 420px;
        column-gap: 40px;
        padding-left: 0;
    }

    .event-page__divider,
    .event-page__content-wrap {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }

    .event-page__footer-buttons .event-page__status-button,
    .event-page__footer-buttons .event-page__map-button {
        width: calc(50% - 8px);
        min-width: 0;
    }
}

@media (max-width: 980px) {
    .event-page__summary {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .event-page__summary {
        column-gap: 0;
    }

    .event-page__hero-section {
        padding-bottom: 108px;
    }

    .front-page .events .event-card__button {
        display: none;
    }

    .front-page .events .event-card__button_mobile {
        display: inline-flex;
    }

    .event-page__actions {
        max-width: 458px;
    }

    .event-page__actions--soon {
        padding-top: 0;
    }

    .event-page__footer-cta,
    .event-page__footer-cta--soon {
        width: min(458px, 100%);
    }

    .event-page__footer-buttons {
        display: grid;
        gap: 12px;
    }

    .event-page__footer-buttons .event-page__status-button,
    .event-page__footer-buttons .event-page__map-button {
        width: 100%;
    }
}

@media (min-width: 721px) and (max-width: 980px) {
    .event-page__shell {
        width: calc(100vw - 80px);
        padding: 0;
    }

    .event-page__breadcrumbs {
        display: flex;
        flex-wrap: wrap;
    }

    .event-page__hero-media {
        width: 100vw;
        height: 464px;
        margin-left: calc(50% - 50vw);
    }

    .event-page__hero-content {
        left: 40px;
        right: 40px;
        bottom: 39px;
    }

    .event-page__hero-content h1,
    .event-page__content h2 {
        font-size: 50px;
        line-height: 50px;
    }

    .event-page__summary {
        grid-template-columns: 340px 336px;
        column-gap: 12px;
        row-gap: 0;
        padding: 32px 0 37px;
    }

    .event-page__meta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .event-page__meta-item {
        gap: 8px;
    }

    .event-page__actions {
        width: 336px;
        max-width: 100%;
        padding-top: 17px;
    }

    .event-page__actions--soon {
        padding-top: 0;
    }

    .event-page__address {
        max-width: 336px;
        margin-top: 8px;
    }

    .event-page__divider {
        width: 100%;
    }

    .event-page__content-wrap {
        padding-top: 51px;
    }

    .event-page__content {
        width: 683px;
    }

    .event-page__footer-cta {
        width: 100%;
        margin-top: 56px;
    }

    .event-page__footer-cta--soon {
        width: 336px;
    }

    .event-page__footer-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .event-page__footer-cta--soon .event-page__footer-buttons {
        grid-template-columns: 1fr;
    }

    .event-page__footer-buttons .event-page__status-button,
    .event-page__footer-buttons .event-page__map-button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .event-page {
        padding-top: 56px;
    }

    .event-page__shell {
        width: 100%;
        padding: 0 16px;
    }

    .event-page__breadcrumbs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
        margin-bottom: 24px;
        font-size: 12px;
        line-height: 15px;
    }

    .event-page__hero-media {
        width: 100vw;
        height: 352px;
        margin-left: calc(50% - 50vw);
    }

    .event-page__hero-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .event-page__hero-content h1,
    .event-page__content h2 {
        max-width: 100%;
        font-size: 32px;
        line-height: 32px;
    }

    .event-page__hero-tag {
        min-height: 29px;
        margin-top: 24px;
        padding: 7px 18px;
        font-size: 12px;
        line-height: 15px;
    }

    .event-page__summary {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 48px 0 0;
    }

    .event-page__actions {
        order: 1;
        width: 100%;
        max-width: none;
    }

    .event-page__meta-grid {
        order: 2;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .event-page__meta-item {
        gap: 8px;
    }

    .event-page__meta-label {
        font-size: 12px;
        line-height: 15px;
    }

    .event-page__meta-value {
        font-size: 24px;
        line-height: 30px;
    }

    .event-page__status-button,
    .event-page__map-button {
        min-height: 60px;
        font-size: 16px;
        line-height: 20px;
    }

    .event-page__address,
    .event-page__prose p,
    .event-page__bullet-list li {
        font-size: 16px;
        line-height: 20px;
    }

    .event-page__address {
        max-width: none;
        margin-top: 8px;
    }

    .event-page__divider {
        width: 100%;
        margin-top: 30px;
    }

    .event-page__hero-section {
        padding-bottom: 108px;
    }

    .event-page__content-wrap {
        padding-top: 48px;
    }

    .event-page__content h2 {
        margin-bottom: 24px;
    }

    .event-page__bullet-list {
        gap: 16px;
        margin: 24px 0;
    }

    .event-page__footer-cta,
    .event-page__footer-cta--soon {
        width: 100%;
        margin-top: 48px;
    }

    .event-page__footer-buttons {
        gap: 16px;
    }

    .event-page__address--footer {
        max-width: none;
        margin-top: 24px;
    }
}

@media (max-width: 479px) {
    .event-page__address,
    .event-page__prose p,
    .event-page__bullet-list li {
        font-size: 16px;
        line-height: 20px;
    }
}

.search-page {
    position: relative;
    padding: 56px 0 0;
    background: #f7f7f7;
    color: #202122;
}

.search-page__section {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
    padding: 0 0 78px;
}

.search-page__shell {
    width: min(1406px, calc(100% - 64px));
    margin: 0 auto;
}

.search-page__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    margin: 0 0 48px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.search-page__breadcrumbs a {
    color: inherit;
}

.search-page__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.search-page__form {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 39px;
    align-items: center;
    column-gap: 5px;
    min-height: 55px;
    padding: 0 8px 0 14px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    background: #fff;
}

.search-page__form-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(32, 33, 34, 0.5);
}

.search-page__form-icon svg {
    width: 20px;
    height: 20px;
}

.search-page__submit svg {
    width: 24px;
    height: 24px;
}

.search-page__input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #202122;
    font-size: 13px;
    line-height: 20px;
    outline: none;
}

.search-page__input::placeholder {
    color: rgba(32, 33, 34, 0.5);
}

.search-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: #fff;
    color: #202122;
}

.search-page__query {
    margin: 48px 0 27px 2px;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.search-page__count {
    margin: 0 0 16px;
    color: #a1a1a1;
    font-size: 13px;
    line-height: 17px;
}

.search-page__list {
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.search-result-card {
    border-bottom: 1px solid #d4d4d4;
}

.search-result-card:last-child {
    border-bottom: 0;
}

.search-result-card__link {
    display: block;
    padding: 24px 0;
}

.search-result-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.search-result-card__top h2,
.search-page__empty h2 {
    margin: 0;
    color: #202122;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
}

.search-result-card__top span {
    flex: none;
    padding-top: 3px;
    color: #fe6702;
    font-size: 13px;
    line-height: 17px;
    text-transform: lowercase;
}

.search-result-card p,
.search-page__empty p {
    max-width: 887px;
    margin: 16px 0 0;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.search-page__empty {
    padding: 40px 0 52px;
}

@media (max-width: 980px) {
    .search-page {
        padding-top: 32px;
    }

    .search-page__section {
        width: 100%;
        padding: 0 0 56px;
    }

    .search-page__shell {
        width: min(688px, calc(100vw - 80px));
    }

    .search-page__breadcrumbs {
        margin: 0 0 40px;
    }

    .search-page__query {
        margin: 32px 0 24px;
    }

    .search-result-card__top {
        gap: 16px;
    }

    .search-result-card p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .search-page {
        padding-top: 24px;
    }

    .search-page__section {
        width: 100%;
        padding: 20px 0 40px;
    }

    .search-page__shell {
        width: 100%;
        padding: 0 20px;
    }

    .search-page__breadcrumbs {
        gap: 10px;
        margin-bottom: 28px;
        font-size: 12px;
        line-height: 15px;
    }

    .search-page__form {
        grid-template-columns: 20px minmax(0, 1fr) 32px;
        column-gap: 5px;
        min-height: 55px;
        padding: 0 8px 0 14px;
        border-radius: 5px;
    }

    .search-page__submit {
        width: 39px;
        height: 39px;
    }

    .search-page__input {
        font-size: 13px;
        line-height: 20px;
    }

    .search-page__query {
        margin: 32px 0 16px;
        font-size: 16px;
        line-height: 20px;
    }

    .search-page__count {
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 12px;
    }

    .search-result-card__link {
        padding: 16px 0;
    }

    .search-result-card__top {
        flex-direction: row;
        gap: 12px;
    }

    .search-result-card__top h2,
    .search-page__empty h2 {
        max-width: calc(100% - 78px);
        font-size: 16px;
        line-height: 20px;
    }

    .search-result-card__top span {
        padding-top: 2px;
        font-size: 12px;
        line-height: 15px;
    }

    .search-result-card p,
    .search-page__empty p {
        margin-top: 8px;
        font-size: 12px;
        line-height: 15px;
    }
}

.not-found-page {
    position: relative;
    min-height: 100vh;
    background: #d4d4d4;
    color: #202122;
}

body.not-found-body {
    margin: 0;
    background: #d4d4d4;
}

.not-found-page__section {
    min-height: 100vh;
    padding: 56px 0 88px;
}

.not-found-page__shell {
    width: min(1024px, calc(100vw - 64px));
    margin: 0 auto;
    display: grid;
    justify-items: center;
}

.not-found-page__intro {
    width: 724px;
    max-width: 100%;
    text-align: center;
}

.not-found-page__intro h1 {
    margin: 0;
    color: #fe6702;
    font-size: 65px;
    font-weight: 800;
    line-height: 65px;
    text-transform: uppercase;
}

.not-found-page__intro p {
    max-width: 100%;
    margin: 16px auto 0;
    color: #202122;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.385em;
    text-transform: uppercase;
}

.not-found-page__scene {
    margin-top: 37px;
    text-align: center;
}

.not-found-page__scene img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.not-found-page__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 38px;
}

.not-found-page__link {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    color: #fe6702;
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    text-transform: uppercase;
}

.not-found-page__link span {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.not-found-page__link img {
    width: 19px;
    height: 20px;
}

@media (max-width: 980px) {
    .not-found-page__section {
        padding-top: 96px;
    }

    .not-found-page__shell {
        width: min(724px, calc(100vw - 44px));
    }

    .not-found-page__intro h1 {
        font-size: 65px;
        line-height: 65px;
    }

    .not-found-page__scene {
        margin-top: 52px;
    }

    .not-found-page__links {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .not-found-page__section {
        padding: 88px 0 72px;
    }

    .not-found-page__shell {
        width: 343px;
        max-width: calc(100vw - 32px);
    }

    .not-found-page__intro {
        width: 100%;
    }

    .not-found-page__intro h1 {
        font-size: 32px;
        line-height: 32px;
    }

    .not-found-page__intro p {
        max-width: 343px;
        margin-top: 16px;
        color: #202122;
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0.42em;
    }

    .not-found-page__scene {
        margin: 28px auto 0;
    }

    .not-found-page__link {
        gap: 4px;
        font-size: 12px;
        line-height: 15px;
    }

    .not-found-page__links {
        display: grid;
        gap: 16px;
        margin-top: 48px;
    }
}

@media (max-width: 479px) {
    .not-found-page__section {
        padding: 68px 0 56px;
    }

    .not-found-page__shell {
        width: calc(100vw - 32px);
    }
}

.publication-archive {
    position: relative;
    padding: 32px 0 120px;
    background: #f7f7f7;
    color: #202122;
}

.publication-archive__hero,
.publication-archive__section,
.publication-single__hero,
.publication-single__section {
    width: 100%;
}

.publication-archive__shell,
.publication-single__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.publication-archive__breadcrumbs,
.publication-single__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.publication-archive__breadcrumbs a,
.publication-single__breadcrumbs a {
    color: inherit;
}

.publication-archive__intro {
    display: grid;
    grid-template-columns: minmax(0, 816px) minmax(0, 555px);
    justify-content: space-between;
    align-items: start;
    margin-top: 48px;
    gap: 40px;
}

.publication-archive__breadcrumbs span[aria-hidden="true"],
.publication-single__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.publication-archive__intro-main {
    display: grid;
    gap: 24px;
}

.publication-archive__intro h1 {
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    font-weight: 800;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.publication-archive__description {
    margin: 0;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
    max-width: 574px;
}

.publication-archive__lead {
    margin: 0;
    max-width: 555px;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.publication-archive__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 32px;
}

.publication-archive__filter {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a1a1a1;
    transition: color 0.2s ease;
}

.publication-archive__filter:first-child {
    padding-left: 0;
}

.publication-archive__filter.is-active {
    color: #202122;
}

.publication-archive__section {
    padding-top: 17px;
}

.publication-archive__count {
    margin: 0;
    font-size: 13px;
    line-height: 17px;
    color: #a1a1a1;
}

.publication-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 458px));
    justify-content: space-between;
    gap: 54px 19px;
    margin-top: 16px;
}

.publication-card {
    position: relative;
    min-width: 0;
}

.publication-card__link {
    display: block;
    color: inherit;
}

.publication-card__media {
    overflow: hidden;
    height: 261px;
    border-radius: 10px;
    background: #e7e3df;
}

.publication-card--tall .publication-card__media {
    height: 458px;
}

.publication-card__media img,
.publication-single__hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.publication-single__hero-media img {
    object-position: center 32%;
}

.publication-card__body {
    position: relative;
    display: grid;
    gap: 8px;
    margin-top: 24px;
    padding-right: 38px;
}

.publication-card__arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 27px;
    height: 27px;
    display: flex;
}

.publication-card__arrow img {
    display: block;
    width: 100%;
}

.publication-card__body h2 {
    margin: 0;
    max-width: 339px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.publication-card__body p,
.publication-card__body time {
    margin: 0;
    max-width: 285px;
    font-size: 13px;
    line-height: 17px;
}

.publication-card__body p {
    color: #525252;
}

.publication-card__body time {
    color: #a1a1a1;
}

.publication-archive__load-more {
    display: flex;
    justify-content: center;
    margin-top: 62px;
}

.publication-archive__load-more a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 72px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.publication-archive__load-more a::before,
.publication-archive__load-more a::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 64px;
    line-height: 1;
    color: #202122;
    content: "[";
}

.publication-archive__load-more a::before {
    left: 0;
}

.publication-archive__load-more a::after {
    right: 0;
    content: "]";
}

.publication-archive__empty {
    padding-top: 48px;
}

.publication-archive__empty h2 {
    margin: 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.publication-archive__empty p {
    margin: 18px 0 0;
    max-width: 420px;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(32, 33, 34, 0.72);
}

.publication-single {
    position: relative;
    padding: 56px 0 144px;
    background: #f7f7f7;
    color: #202122;
}

.publication-single__hero-media-wrap {
    margin-top: 48px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.publication-single__hero-media {
    position: relative;
    overflow: hidden;
    height: 464px;
    background: #d7d0c9;
}

.publication-single__hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 33, 34, 0) 16.28%, rgba(32, 33, 34, 0.86) 100%);
    content: "";
}

.publication-single__hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}

.publication-single__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 1189px;
    padding-bottom: 29px;
    padding-left: 120px;
}

.publication-single__intro h1 {
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.publication-single__type {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 7px 18px;
    border-radius: 55px;
    background: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    color: #fff;
}

.publication-single__section {
    padding-top: 54px;
}

.publication-single__shell--content {
    display: grid;
    grid-template-columns: minmax(0, 813px) 226px;
    grid-template-areas:
    "summary aside"
    "article aside";
    justify-content: space-between;
    gap: 48px 60px;
    align-items: start;
    padding-left: 120px;
    padding-right: 240px;
}

.publication-single__article {
    grid-area: article;
    min-width: 0;
}

.publication-single__summary {
    grid-area: summary;
    margin: 0;
    max-width: 681px;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.publication-single__content {
    font-size: 20px;
    line-height: 26px;
    color: #525252;
    max-width: 813px;
}

.publication-single__content > *:first-child {
    margin-top: 0;
}

.publication-single__content > *:last-child {
    margin-bottom: 0;
}

.publication-single__content h2,
.publication-single__content h3,
.publication-single__content h4 {
    margin: 48px 0 16px;
    font-size: 32px;
    line-height: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #202122;
}

.publication-single__content p,
.publication-single__content ul,
.publication-single__content ol,
.publication-single__content blockquote {
    margin: 16px 0 0;
}

.publication-single__content figure,
.publication-single__content img {
    max-width: 100%;
}

.publication-single__content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.publication-single__content ul,
.publication-single__content ol {
    padding-left: 1.3em;
}

.publication-single__content li + li {
    margin-top: 8px;
}

.publication-single__content blockquote {
    padding: 26px 30px;
    border-left: 4px solid #fe6702;
    background: rgba(32, 33, 34, 0.04);
}

.publication-single__aside {
    grid-area: aside;
    position: sticky;
    top: 116px;
    display: grid;
    gap: 32px;
}

.publication-single__date {
    margin: 0;
    font-size: 20px;
    line-height: 26px;
    color: #a1a1a1;
}

.publication-single__share {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 16px;
}

.publication-single__share-links {
    display: flex;
    gap: 12px;
}

.publication-single__share-label {
    margin: 0;
    width: 101px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a1a1a1;
}

.publication-single__share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.publication-single__share-link svg {
    width: 44px;
    height: 44px;
    display: block;
}

@media (max-width: 1200px) {
    .publication-archive,
    .publication-single {
        padding-top: 144px;
    }

    .publication-archive__shell,
    .publication-single__shell {
        width: min(1470px, calc(100vw - 48px));
    }

    .publication-archive__intro,
    .publication-single__shell--content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .publication-archive__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 20px;
    }

    .publication-card__body h2,
    .publication-card__body p,
    .publication-card__body time {
        max-width: none;
    }

    .publication-card--tall .publication-card__media {
        height: 360px;
    }

    .publication-single__hero-media-wrap {
        width: 100%;
    }

    .publication-single__hero-media {
        height: min(58vw, 520px);
    }

    .publication-single__intro h1 {
        font-size: 56px;
        line-height: 56px;
    }

    .publication-single__aside {
        position: static;
        grid-template-columns: repeat(2, minmax(0, max-content));
        gap: 24px 48px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .publication-archive,
    .publication-single {
        padding: 0 0 120px;
    }

    .publication-archive__shell,
    .publication-single__shell {
        width: calc(100vw - 80px);
    }

    .publication-archive__breadcrumbs,
    .publication-single__breadcrumbs {
        margin-top: 32px;
    }

    .publication-archive__intro {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 48px;
    }

    .publication-archive__intro h1,
    .publication-single__intro h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .publication-archive__description {
        max-width: 574px;
        font-size: 20px;
        line-height: 26px;
    }

    .publication-archive__lead {
        max-width: 100%;
        font-size: 24px;
        line-height: 26px;
    }

    .publication-archive__filters {
        gap: 8px 12px;
        margin-top: 32px;
    }

    .publication-archive__section {
        padding-top: 16px;
    }

    .publication-archive__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 56px 12px;
        margin-top: 16px;
    }

    .publication-card__media,
    .publication-card--tall .publication-card__media {
        height: auto;
        aspect-ratio: 339 / 193;
    }

    .publication-archive__grid > .publication-card:nth-child(2) .publication-card__media,
    .publication-archive__grid > .publication-card:nth-child(9) .publication-card__media {
        aspect-ratio: 337 / 337;
    }

    .publication-card__body {
        margin-top: 24px;
        padding-right: 39px;
    }

    .publication-card__body h2 {
        max-width: none;
        font-size: 20px;
        line-height: 26px;
    }

    .publication-card__body p,
    .publication-card__body time {
        max-width: none;
        font-size: 13px;
        line-height: 17px;
    }

    .publication-archive__load-more {
        margin-top: 64px;
    }

    .publication-archive__load-more a {
        min-height: 62px;
        padding: 0 72px;
        font-size: 20px;
        line-height: 26px;
    }

    .publication-single__hero-media-wrap {
        width: 100vw;
        margin-top: 48px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .publication-single__hero-media {
        height: 464px;
    }

    .publication-single__intro {
        max-width: 688px;
        gap: 24px;
        padding-bottom: 29px;
    }

    .publication-single__type {
        min-height: 40px;
        padding: 7px 18px;
        font-size: 20px;
        line-height: 26px;
    }

    .publication-single__section {
        padding-top: 32px;
    }

    .publication-single__shell--content {
        grid-template-columns: 1fr;
        grid-template-areas:
      "aside"
      "summary"
      "article";
        gap: 32px;
    }

    .publication-single__summary {
        grid-area: summary;
        max-width: 688px;
        margin: 0;
        font-size: 24px;
        line-height: 26px;
    }

    .publication-single__aside {
        grid-area: aside;
        position: static;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
        max-width: 688px;
    }

    .publication-single__share {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .publication-single__article {
        grid-area: article;
        max-width: 688px;
    }

    .publication-single__content {
        max-width: 688px;
        font-size: 20px;
        line-height: 26px;
    }

    .publication-single__content h2,
    .publication-single__content h3,
    .publication-single__content h4 {
        font-size: 24px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .newsletter__field input,
    .events-page__search-field input,
    .events-page__city-select select,
    .search-page__input,
    .consultation__fields input {
        font-size: 16px;
    }

    .publication-archive,
    .publication-single {
        padding: 56px 0 96px;
    }

    .publication-archive__shell,
    .publication-single__shell {
        position: relative;
        z-index: 1;
        width: calc(100vw - 32px);
    }

    .publication-archive__breadcrumbs,
    .publication-single__breadcrumbs {
        gap: 12px;
        margin-top: 0;
        font-size: 12px;
        line-height: 15px;
    }

    .publication-archive__intro {
        gap: 32px;
        margin-top: 36px;
    }

    .publication-archive__intro h1,
    .publication-single__intro h1 {
        font-size: 32px;
        line-height: 32px;
    }

    .publication-archive__description,
    .publication-single__content {
        font-size: 16px;
        line-height: 20px;
    }

    .publication-archive__lead,
    .publication-single__summary {
        font-size: 18px;
        line-height: 24px;
    }

    .publication-archive__filters {
        gap: 8px 12px;
        margin-top: 40px;
    }

    .publication-archive__filter {
        padding: 8px 0;
        font-size: 12px;
        line-height: 15px;
    }

    .publication-archive__section {
        padding-top: 12px;
    }

    .publication-archive__grid,
    .publication-single__shell--content,
    .publication-single__aside {
        grid-template-columns: 1fr;
    }

    .publication-card--tall .publication-card__media,
    .publication-card__media,
    .publication-single__hero-media {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .publication-single__hero-media-wrap {
        width: 100vw;
        margin-top: 32px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .publication-single__intro {
        gap: 24px;
        max-width: 343px;
        padding-bottom: 17px;
    }

    .publication-single__type {
        min-height: 29px;
        padding: 7px 18px;
        font-size: 12px;
        line-height: 15px;
    }

    .publication-card__body {
        margin-top: 16px;
        padding-right: 39px;
    }

    .publication-card__body h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .publication-single__content h2,
    .publication-single__content h3,
    .publication-single__content h4 {
        font-size: 18px;
        line-height: 22px;
    }

    .publication-card__body p,
    .publication-card__body time {
        font-size: 12px;
        line-height: 15px;
    }

    .publication-single__summary {
        grid-area: summary;
        margin: 0;
        line-height: 22px;
    }

    .publication-single__section {
        padding-top: 48px;
    }

    .publication-single__aside {
        grid-area: aside;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 16px;
        width: 226px;
        max-width: 100%;
    }

    .publication-single__date {
        font-size: 16px;
        line-height: 20px;
    }

    .publication-single__share-label {
        width: 101px;
        font-size: 12px;
        line-height: 15px;
    }

    .publication-archive__load-more {
        margin-top: 56px;
    }

    .publication-archive__load-more a {
        min-height: 62px;
        padding: 0 50px;
        font-size: 16px;
        line-height: 22px;
    }

    .publication-archive__load-more a::before,
    .publication-archive__load-more a::after {
        font-size: 48px;
    }

    .publication-archive__grid {
        gap: 40px;
        margin-top: 16px;
    }

    .publication-card__media,
    .publication-card--tall .publication-card__media {
        aspect-ratio: 345 / 197;
    }

    .publication-archive__grid > .publication-card:nth-child(2) .publication-card__media,
    .publication-archive__grid > .publication-card:nth-child(9) .publication-card__media {
        aspect-ratio: 345 / 345;
    }

    .publication-single__hero-media {
        height: 352px;
        max-width: 100%;
    }

    .publication-single__shell--content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
      "summary"
      "article"
      "aside";
        gap: 24px;
    }

    .publication-single__article {
        grid-area: article;
    }

    .publication-single__share {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        width: 100%;
    }
}

@media (max-width: 479px) {
    .publication-archive__intro h1,
    .publication-single__intro h1 {
        font-size: 32px;
        line-height: 32px;
    }

    .publication-card__body p,
    .publication-archive__empty p {
        font-size: 12px;
    }

    .publication-single__summary {
        font-size: 18px;
        line-height: 22px;
    }
}

.books-page,
.book-single {
    padding: 153px 0 120px;
    background: #fff;
    color: #202122;
}

.books-page__shell,
.book-single__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.books-page__breadcrumbs,
.book-single__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.books-page__breadcrumbs a,
.book-single__breadcrumbs a {
    color: inherit;
}

.books-page__breadcrumbs span[aria-hidden="true"],
.book-single__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.books-page__hero-grid {
    display: grid;
    grid-template-columns: 458px 458px 458px;
    justify-content: space-between;
    align-items: start;
    margin-top: 48px;
}

.books-page__title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.books-page__slash {
    width: 35px;
    height: 60px;
    flex: 0 0 auto;
}

.books-page__slash img {
    display: block;
    width: 100%;
}

.books-page__title-wrap h1,
.book-single__intro h1 {
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    font-weight: 800;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.books-page__intro p {
    margin: 0;
    max-width: 458px;
    padding-top: 22px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.books-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 458px));
    justify-content: space-between;
    gap: 24px;
    margin-top: 57px;
}

.book-card {
    min-width: 0;
}

.book-card__link {
    display: block;
    color: inherit;
}

.book-card__cover,
.book-single__cover {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(180deg, #f8f5ee 0%, #eae2d4 100%);
}

.book-card__cover {
    height: 548px;
}

.book-card__base,
.book-card__overlay,
.book-single__cover-base,
.book-single__cover-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-card__overlay,
.book-single__cover-overlay {
    object-fit: contain;
    object-position: center;
}

.book-card__body {
    position: relative;
    padding: 0;
    margin-top: 24px;
}

.book-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #a1a1a1;
}

.book-card__body h2 {
    margin: 8px 0 0;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.book-card__subtitle {
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #202122;
}

.book-card__body p {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 17px;
    color: #525252;
}

.book-card__arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 27px;
}

.book-card__arrow img {
    display: block;
    width: 100%;
}

.book-single__hero-grid {
    display: grid;
    grid-template-columns: 458px 950px;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 48px;
}

.book-single__cover {
    height: 640px;
}

.book-single__intro {
    min-width: 0;
}

.book-single__eyebrow {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 7px 18px;
    border-radius: 55px;
    background: rgba(32, 33, 34, 0.08);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.book-single__intro h1 {
    margin-top: 24px;
}

.book-single__subtitle {
    margin: 18px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #202122;
}

.book-single__description {
    margin: 24px 0 0;
    max-width: 458px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.book-single__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
    margin-top: 32px;
}

.book-single__meta-item {
    display: grid;
    gap: 16px;
}

.book-single__meta-item span {
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.book-single__meta-item strong {
    color: #202122;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}

.book-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.book-single__button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.book-single__button--dark {
    background: #202122;
    color: #fff;
}

.book-single__button--light {
    border: 1px solid rgba(32, 33, 34, 0.14);
    color: #202122;
}

.book-single__section {
    padding-top: 56px;
}

.book-single__content-shell {
    display: grid;
    grid-template-columns: 950px 458px;
    justify-content: space-between;
    gap: 24px;
    align-items: start;
}

.book-single__content h2,
.book-single__note h2 {
    margin: 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.book-single__content p {
    margin: 16px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.book-single__note {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.book-single__bullet-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.book-single__bullet-list li {
    position: relative;
    padding-left: 22px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.book-single__bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 21px;
    background: url("../img/event-bullet.svg") center/contain no-repeat;
}

@media (max-width: 1200px) {
    .books-page,
    .book-single {
        padding-top: 144px;
    }

    .books-page__shell,
    .book-single__shell {
        width: min(1470px, calc(100vw - 48px));
    }

    .books-page__hero-grid,
    .book-single__hero-grid,
    .book-single__content-shell {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .books-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .book-single__cover {
        height: min(76vw, 760px);
    }
}

@media (max-width: 767px) {
    .books-page,
    .book-single {
        padding: 132px 0 96px;
    }

    .books-page__shell,
    .book-single__shell {
        width: calc(100vw - 32px);
    }

    .books-page__title-wrap h1,
    .book-single__intro h1 {
        font-size: 48px;
        line-height: 48px;
    }

    .books-page__intro p,
    .book-single__description,
    .book-single__content p {
        font-size: 18px;
        line-height: 24px;
    }

    .books-page__grid,
    .book-single__meta-grid {
        grid-template-columns: 1fr;
    }

    .book-card__cover,
    .book-single__cover {
        height: 92vw;
        min-height: 420px;
        max-height: 760px;
    }

    .book-card__body h2,
    .book-single__content h2,
    .book-single__note h2 {
        font-size: 32px;
        line-height: 34px;
    }
}

@media (max-width: 479px) {
    .books-page__title-wrap {
        gap: 14px;
    }

    .books-page__slash {
        width: 22px;
        height: auto;
    }

    .books-page__title-wrap h1,
    .book-single__intro h1 {
        font-size: 42px;
        line-height: 42px;
    }

    .book-card__subtitle,
    .book-card__body p,
    .book-single__subtitle,
    .book-single__description,
    .book-single__content p,
    .book-single__bullet-list li {
        font-size: 16px;
        line-height: 22px;
    }

    .book-card__body h2,
    .book-single__content h2,
    .book-single__note h2 {
        font-size: 28px;
        line-height: 32px;
    }
}

.products-page,
.product-single {
    padding: 153px 0 120px;
    background: #fff;
    color: #202122;
}

.products-page__shell,
.product-single__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.products-page__breadcrumbs,
.product-single__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.products-page__breadcrumbs a,
.product-single__breadcrumbs a {
    color: inherit;
}

.products-page__breadcrumbs span[aria-hidden="true"],
.product-single__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.products-page__hero-grid {
    display: grid;
    grid-template-columns: 458px 458px 458px;
    justify-content: space-between;
    align-items: start;
    margin-top: 48px;
}

.products-page__title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.products-page__slash {
    width: 35px;
    height: 60px;
    flex: 0 0 auto;
}

.products-page__slash img {
    display: block;
    width: 100%;
}

.products-page__title-wrap h1,
.product-single__intro h1 {
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    font-weight: 800;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.products-page__intro p {
    margin: 0;
    max-width: 458px;
    padding-top: 22px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.products-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 458px));
    justify-content: space-between;
    gap: 24px;
    margin-top: 57px;
}

.product-card {
    min-width: 0;
}

.product-card__link {
    display: block;
    color: inherit;
}

.product-card__poster,
.product-single__poster {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    color: #202122;
}

.product-card__poster {
    height: 548px;
    padding: 28px;
}

.product-single__poster {
    min-height: 640px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card--product-wave .product-card__poster,
.product-single__poster--product-wave {
    background: radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.75) 0, rgba(255, 255, 255, 0.08) 20%, transparent 30%),
    linear-gradient(135deg, #ffefe5 0%, #fe6702 52%, #ef4e00 100%);
}

.product-card--product-sheet .product-card__poster,
.product-single__poster--product-sheet {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0) 100%),
    linear-gradient(150deg, #fff7ee 0%, #ffc690 45%, #fe6702 100%);
}

.product-card--product-sheet .product-card__poster::before,
.product-single__poster--product-sheet::before {
    content: "";
    position: absolute;
    inset: 12% 14% auto auto;
    width: 44%;
    height: 58%;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(32, 33, 34, 0.12);
    transform: rotate(-8deg);
}

.product-card--product-stack .product-card__poster,
.product-single__poster--product-stack {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 100%),
    linear-gradient(135deg, #fff6ef 0%, #feb06b 28%, #fe6702 66%, #202122 100%);
}

.product-card--product-stack .product-card__poster::before,
.product-single__poster--product-stack::before,
.product-card--product-stack .product-card__poster::after,
.product-single__poster--product-stack::after {
    content: "";
    position: absolute;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(32, 33, 34, 0.16);
}

.product-card--product-stack .product-card__poster::before,
.product-single__poster--product-stack::before {
    width: 42%;
    height: 54%;
    right: 18%;
    bottom: 18%;
    transform: rotate(-11deg);
}

.product-card--product-stack .product-card__poster::after,
.product-single__poster--product-stack::after {
    width: 42%;
    height: 54%;
    right: 10%;
    bottom: 13%;
    background: rgba(255, 255, 255, 0.72);
    transform: rotate(5deg);
}

.product-card__label,
.product-single__poster-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 7px 18px;
    border-radius: 55px;
    background: rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(8px);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.product-card__poster h2,
.product-single__poster h1 {
    position: relative;
    z-index: 1;
    max-width: 88%;
}

.product-card__poster h2 {
    margin: 18px 0 0;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.product-single__poster h1 {
    font-size: 65px;
    line-height: 65px;
}

.product-card__body {
    position: relative;
    padding: 0;
    margin-top: 24px;
}

.product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #a1a1a1;
}

.product-card__subtitle {
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #202122;
}

.product-card__body p {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 17px;
    color: #525252;
}

.product-card__arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 27px;
}

.product-card__arrow img {
    display: block;
    width: 100%;
}

.product-single__hero-grid {
    display: grid;
    grid-template-columns: 458px 950px;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 48px;
}

.product-single__intro {
    min-width: 0;
}

.product-single__subtitle {
    margin: 18px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #202122;
}

.product-single__description {
    margin: 24px 0 0;
    max-width: 458px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.product-single__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
    margin-top: 32px;
}

.product-single__meta-item {
    display: grid;
    gap: 16px;
}

.product-single__meta-item span {
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.product-single__meta-item strong {
    color: #202122;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}

.product-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.product-single__button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-single__button--dark {
    background: #202122;
    color: #fff;
}

.product-single__button--light {
    border: 1px solid rgba(32, 33, 34, 0.14);
    color: #202122;
}

.product-single__section {
    padding-top: 56px;
}

.product-single__content-shell {
    display: grid;
    grid-template-columns: 950px 458px;
    justify-content: space-between;
    gap: 24px;
    align-items: start;
}

.product-single__content h2,
.product-single__note h2 {
    margin: 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.product-single__content p {
    margin: 16px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.product-single__note {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.product-single__bullet-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.product-single__bullet-list li {
    position: relative;
    padding-left: 22px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.product-single__bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 21px;
    background: url("../img/event-bullet.svg") center/contain no-repeat;
}

@media (max-width: 1200px) {
    .products-page,
    .product-single {
        padding-top: 144px;
    }

    .products-page__shell,
    .product-single__shell {
        width: min(1470px, calc(100vw - 48px));
    }

    .products-page__hero-grid,
    .product-single__hero-grid,
    .product-single__content-shell {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .products-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-single__poster {
        min-height: min(76vw, 640px);
    }
}

@media (max-width: 767px) {
    .products-page,
    .product-single {
        padding: 132px 0 96px;
    }

    .products-page__shell,
    .product-single__shell {
        width: calc(100vw - 32px);
    }

    .products-page__title-wrap h1,
    .product-single__intro h1,
    .product-single__poster h1 {
        font-size: 48px;
        line-height: 48px;
    }

    .products-page__intro p,
    .product-single__description,
    .product-single__content p {
        font-size: 18px;
        line-height: 24px;
    }

    .products-page__grid,
    .product-single__meta-grid {
        grid-template-columns: 1fr;
    }

    .product-card__poster,
    .product-single__poster {
        height: 92vw;
        min-height: 420px;
        max-height: 760px;
    }

    .product-card__poster h2,
    .product-single__content h2,
    .product-single__note h2 {
        font-size: 32px;
        line-height: 34px;
    }
}

@media (max-width: 479px) {
    .products-page__title-wrap {
        gap: 14px;
    }

    .products-page__slash {
        width: 22px;
        margin-top: 7px;
    }

    .products-page__title-wrap h1,
    .product-single__intro h1,
    .product-single__poster h1 {
        font-size: 42px;
        line-height: 42px;
    }

    .product-card__subtitle,
    .product-card__body p,
    .product-single__subtitle,
    .product-single__description,
    .product-single__content p,
    .product-single__bullet-list li {
        font-size: 16px;
        line-height: 22px;
    }

    .product-card__poster h2,
    .product-single__content h2,
    .product-single__note h2 {
        font-size: 28px;
        line-height: 32px;
    }
}

.programs-page,
.program-single {
    padding: 153px 0 120px;
    background: #fff;
    color: #202122;
}

.programs-page__shell,
.program-single__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.programs-page__breadcrumbs,
.program-single__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.programs-page__breadcrumbs a,
.program-single__breadcrumbs a {
    color: inherit;
}

.programs-page__breadcrumbs span[aria-hidden="true"],
.program-single__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.programs-page__hero-grid {
    display: grid;
    grid-template-columns: 458px 458px 458px;
    justify-content: space-between;
    align-items: start;
    margin-top: 48px;
}

.programs-page__title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.programs-page__slash {
    width: 35px;
    height: 60px;
    flex: 0 0 auto;
}

.programs-page__slash img {
    display: block;
    width: 100%;
}

.programs-page__title-wrap h1,
.program-single__intro h1 {
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    font-weight: 800;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.programs-page__intro p {
    margin: 0;
    max-width: 458px;
    padding-top: 22px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.programs-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 458px));
    justify-content: space-between;
    gap: 24px;
    margin-top: 57px;
}

.program-card {
    min-width: 0;
}

.program-card__link {
    display: block;
    color: inherit;
}

.program-card__poster,
.program-single__poster {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.program-card__poster {
    min-height: 548px;
    padding: 28px;
}

.program-single__poster {
    min-height: 640px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-card--program-club .program-card__poster,
.program-single__poster--program-club {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.14) 100%),
    url("../img/club-phone.png") center 22% / cover no-repeat,
    linear-gradient(135deg, #e6e1dc 0%, #cbc3bc 100%);
}

.program-card--program-rules .program-card__poster,
.program-single__poster--program-rules {
    background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.34) 0, rgba(255, 255, 255, 0) 22%),
    linear-gradient(135deg, #fff3e8 0%, #feb97b 38%, #fe6702 100%);
}

.program-card--program-focus .program-card__poster,
.program-single__poster--program-focus {
    background: radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.26) 0, rgba(255, 255, 255, 0) 20%),
    linear-gradient(135deg, #202122 0%, #4c4d53 44%, #fe6702 100%);
    color: #fff;
}

.program-card__poster::before,
.program-single__poster::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 44%;
    background: linear-gradient(180deg, rgba(32, 33, 34, 0) 0%, rgba(32, 33, 34, 0.56) 100%);
}

.program-card--program-rules .program-card__poster::after,
.program-single__poster--program-rules::after {
    content: "6";
    position: absolute;
    right: 8%;
    bottom: 10%;
    font-size: 220px;
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.28);
}

.program-card--program-focus .program-card__poster::after,
.program-single__poster--program-focus::after {
    content: "";
    position: absolute;
    right: 12%;
    bottom: 14%;
    width: 34%;
    height: 34%;
    border-radius: 50%;
    border: 14px solid rgba(255, 255, 255, 0.24);
}

.program-card__label,
.program-single__poster-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 7px 18px;
    border-radius: 55px;
    background: rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(8px);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.program-card__poster h2,
.program-single__poster h1 {
    position: relative;
    z-index: 1;
    margin-top: auto;
    max-width: 88%;
}

.program-card__poster h2 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.program-single__poster h1 {
    font-size: 65px;
    line-height: 65px;
}

.program-card__body {
    position: relative;
    padding: 0;
    margin-top: 24px;
}

.program-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #a1a1a1;
}

.program-card__subtitle {
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #202122;
}

.program-card__body p {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 17px;
    color: #525252;
}

.program-card__arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 27px;
}

.program-card__arrow img {
    display: block;
    width: 100%;
}

.program-single__hero-grid {
    display: grid;
    grid-template-columns: 458px 950px;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 48px;
}

.program-single__intro {
    min-width: 0;
}

.program-single__subtitle {
    margin: 18px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #202122;
}

.program-single__description {
    margin: 24px 0 0;
    max-width: 458px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.program-single__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
    margin-top: 32px;
}

.program-single__meta-item {
    display: grid;
    gap: 16px;
}

.program-single__meta-item span {
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.program-single__meta-item strong {
    color: #202122;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}

.program-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.program-single__button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.program-single__button--dark {
    background: #202122;
    color: #fff;
}

.program-single__button--light {
    border: 1px solid rgba(32, 33, 34, 0.14);
    color: #202122;
}

.program-single__section {
    padding-top: 56px;
}

.program-single__content-shell {
    display: grid;
    grid-template-columns: 950px 458px;
    justify-content: space-between;
    gap: 24px;
    align-items: start;
}

.program-single__content h2,
.program-single__note h2 {
    margin: 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.program-single__content p {
    margin: 16px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.program-single__note {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.program-single__bullet-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.program-single__bullet-list li {
    position: relative;
    padding-left: 22px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.program-single__bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 21px;
    background: url("../img/event-bullet.svg") center/contain no-repeat;
}

@media (max-width: 1200px) {
    .programs-page,
    .program-single {
        padding-top: 144px;
    }

    .programs-page__shell,
    .program-single__shell {
        width: min(1470px, calc(100vw - 48px));
    }

    .programs-page__hero-grid,
    .program-single__hero-grid,
    .program-single__content-shell {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .programs-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-single__poster {
        min-height: min(76vw, 640px);
    }
}

@media (max-width: 767px) {
    .programs-page,
    .program-single {
        padding: 132px 0 96px;
    }

    .programs-page__shell,
    .program-single__shell {
        width: calc(100vw - 32px);
    }

    .programs-page__title-wrap h1,
    .program-single__intro h1,
    .program-single__poster h1 {
        font-size: 48px;
        line-height: 48px;
    }

    .programs-page__intro p,
    .program-single__description,
    .program-single__content p {
        font-size: 18px;
        line-height: 24px;
    }

    .programs-page__grid,
    .program-single__meta-grid {
        grid-template-columns: 1fr;
    }

    .program-card__poster,
    .program-single__poster {
        min-height: 420px;
        height: 92vw;
        max-height: 760px;
    }

    .program-card__poster h2,
    .program-single__content h2,
    .program-single__note h2 {
        font-size: 32px;
        line-height: 34px;
    }
}

@media (max-width: 479px) {
    .programs-page__title-wrap {
        gap: 14px;
    }

    .programs-page__slash {
        width: 22px;
        margin-top: 7px;
    }

    .programs-page__title-wrap h1,
    .program-single__intro h1,
    .program-single__poster h1 {
        font-size: 42px;
        line-height: 42px;
    }

    .program-card__subtitle,
    .program-card__body p,
    .program-single__subtitle,
    .program-single__description,
    .program-single__content p,
    .program-single__bullet-list li {
        font-size: 16px;
        line-height: 22px;
    }

    .program-card__poster h2,
    .program-single__content h2,
    .program-single__note h2 {
        font-size: 28px;
        line-height: 32px;
    }
}

.lab-club-page {
    position: relative;
    padding: 60px 0 120px;
    background: #f7f7f7;
    color: #202122;
}

.lab-club-page__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.lab-club-page__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.lab-club-page__breadcrumbs a {
    color: inherit;
}

.lab-club-page__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.lab-club-page__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lab-club-page__hero {
    position: relative;
    min-height: 464px;
    margin-top: 32px;
    overflow: hidden;
    background: #202122;
}

.lab-club-page__hero-copy {
    position: relative;
    z-index: 1;
    min-height: inherit;
}

.lab-club-page__hero-title {
    position: absolute;
    top: 45px;
    left: 33px;
    width: min(762px, calc(100% - 66px));
    margin: 0;
}

.lab-club-page__hero-title img {
    display: block;
    width: 100%;
    height: auto;
}

.lab-club-page__hero-subtitle {
    position: absolute;
    top: 207px;
    left: 155px;
    width: min(560px, calc(100% - 188px));
    margin: 0;
    color: #fe6702;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.lab-club-page__hero-body {
    position: absolute;
    top: 342px;
    left: 275px;
    width: min(441px, calc(100% - 308px));
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 26px;
}

.lab-club-page__hero-media {
    position: absolute;
    inset: 0;
    background: url("../img/lab-club/figma/hero-photo.png") center center / cover no-repeat;
}

.lab-club-page__hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #202122 22.075%, rgba(32, 33, 34, 0) 70.034%);
}

.lab-club-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 691px) minmax(0, 458px);
    grid-template-areas:
    "lead aside"
    "content aside";
    align-items: start;
    column-gap: 55px;
    row-gap: 48px;
    width: min(1204px, 100%);
    margin: 52px auto 0;
}

.lab-club-page__lead-col {
    grid-area: lead;
    min-width: 0;
}

.lab-club-page__lead {
    max-width: 691px;
}

.lab-club-page__lead p,
.lab-club-page__content-block p,
.lab-club-page__list li {
    margin: 0;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}

.lab-club-page__lead p + p {
    margin-top: 15px;
}

.lab-club-page__content {
    grid-area: content;
    min-width: 0;
    max-width: 691px;
}

.lab-club-page__intro-copy {
    margin: 0 0 48px;
}

.lab-club-page__intro-copy p + p {
    margin-top: 15px;
}

.lab-club-page__content-block + .lab-club-page__content-block {
    margin-top: 48px;
}

.lab-club-page__content-block h2 {
    margin: 0 0 16px;
    color: #202122;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.lab-club-page__content-block p + p {
    margin-top: 15px;
}

.lab-club-page__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.lab-club-page__list li {
    position: relative;
    padding-left: 17px;
}

.lab-club-page__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 21px;
    background: url("../img/lab-club/figma/bullet.svg") center/contain no-repeat;
}

.lab-club-page__aside {
    grid-area: aside;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 24px;
    padding-top: 5px;
}

.lab-club-page__button {
    width: 100%;
    min-height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    background: #fe6702;
    color: #ffffff;
    border-radius: 8.669px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.lab-club-page__aside-note {
    width: 413px;
    max-width: 100%;
    margin: -8px 0 0;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.lab-club-page__aside-note a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lab-club-page__phone-card {
    width: min(274px, 100%);
    max-width: 100%;
    margin-top: 4px;
}

.lab-club-page__phone-card img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 1201px) {
    .lab-club-page__hero {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .lab-club-page__hero-copy {
        width: min(1470px, calc(100vw - 64px));
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .lab-club-page {
        padding: 32px 0 96px;
    }

    .lab-club-page__shell {
        width: min(688px, calc(100vw - 80px));
    }

    .lab-club-page__hero {
        min-height: 464px;
        width: 100vw;
        margin: 32px 0 0 calc(50% - 50vw);
    }

    .lab-club-page__hero-copy {
        min-height: inherit;
        width: min(688px, calc(100vw - 80px));
        margin: 0 auto;
    }

    .lab-club-page__hero-title {
        top: 51px;
        left: -15px;
        width: min(429px, calc(100% - 40px));
    }

    .lab-club-page__hero-subtitle {
        top: 250px;
        left: 0;
        width: 393px;
        font-size: 24px;
        line-height: 26px;
    }

    .lab-club-page__hero-subtitle br {
        display: none;
    }

    .lab-club-page__hero-body {
        display: none;
    }

    .lab-club-page__hero-media {
        background-position-y: center;
        background-position-x: right;
    }

    .lab-club-page__layout {
        display: block;
        width: 100%;
        margin-top: 48px;
    }

    .lab-club-page__content,
    .lab-club-page__lead {
        max-width: 684px;
    }

    .lab-club-page__lead p,
    .lab-club-page__content-block p,
    .lab-club-page__list li {
        font-size: 20px;
        line-height: 26px;
    }

    .lab-club-page__content-block h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .lab-club-page__button {
        min-height: 66px;
        max-width: 458px;
        width: 100%;
        padding: 20px 32px;
        font-size: 20px;
        line-height: 26px;
    }

    .lab-club-page__aside-note {
        width: 413px;
    }

    .lab-club-page__aside {
        width: 100%;
        gap: 24px;
        margin-top: 48px;
        padding-top: 0;
    }

    .lab-club-page__phone-card {
        width: 274px;
        margin: 12px auto 0;
    }

    .lab-club-page__content {
        margin-top: 48px;
    }
}

@media (max-width: 767px) {
    .lab-club-page {
        padding: 24px 0 88px;
    }

    .lab-club-page__shell {
        width: min(343px, calc(100vw - 32px));
    }

    .lab-club-page__breadcrumbs {
        gap: 12px;
        font-size: 12px;
        line-height: 15px;
    }

    .lab-club-page__hero {
        min-height: 352px;
        width: 100vw;
        margin: 24px 0 0 calc(50% - 50vw);
    }

    .lab-club-page__hero-copy {
        min-height: inherit;
        width: min(343px, calc(100vw - 32px));
        margin: 0 auto;
    }

    .lab-club-page__hero-title {
        top: 16px;
        left: 0;
        width: min(242px, calc(100% - 32px));
    }

    .lab-club-page__hero-subtitle {
        top: 155px;
        left: 0;
        width: 230px;
        margin: 0;
        font-size: 18px;
        line-height: 22px;
    }

    .lab-club-page__hero-body {
        display: none;
    }

    .lab-club-page__hero-media {
        background-position: 80% center;
    }

    .lab-club-page__hero-media::before {
        background: linear-gradient(90deg, rgba(32, 33, 34, 0.92) 0%, rgba(32, 33, 34, 0.46) 43%, rgba(32, 33, 34, 0) 74%);
    }

    .lab-club-page__layout {
        display: block;
        margin-top: 24px;
    }

    .lab-club-page__lead p,
    .lab-club-page__content-block p,
    .lab-club-page__list li {
        font-size: 16px;
        line-height: 20px;
    }

    .lab-club-page__content-block h2 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 14px;
    }

    .lab-club-page__aside {
        gap: 16px;
        width: 100%;
        margin-top: 24px;
        padding-top: 0;
    }

    .lab-club-page__button {
        width: 100%;
        min-height: 50px;
        padding: 14px 18px;
        font-size: 13px;
        line-height: 17px;
    }

    .lab-club-page__aside-note {
        width: 100%;
        margin-top: -4px;
        font-size: 12px;
        line-height: 15px;
    }

    .lab-club-page__phone-card {
        width: 182px;
        margin: 12px auto 0;
    }

    .lab-club-page__content {
        margin-top: 24px;
    }

    .lab-club-page__intro-copy {
        margin-bottom: 32px;
    }
}

@media (max-width: 479px) {
    .lab-club-page__phone-card {
        width: min(182px, calc(100vw - 120px));
    }
}

.webinars-page,
.webinar-single {
    padding: 153px 0 120px;
    background: #fff;
    color: #202122;
}

.webinars-page__shell,
.webinar-single__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.webinars-page__breadcrumbs,
.webinar-single__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.webinars-page__breadcrumbs a,
.webinar-single__breadcrumbs a {
    color: inherit;
}

.webinars-page__breadcrumbs span[aria-hidden="true"],
.webinar-single__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.webinars-page__hero-grid {
    display: grid;
    grid-template-columns: 458px 458px 458px;
    justify-content: space-between;
    align-items: start;
    margin-top: 48px;
}

.webinars-page__title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.webinars-page__slash {
    width: 35px;
    height: 60px;
    flex: 0 0 auto;
}

.webinars-page__slash img {
    display: block;
    width: 100%;
}

.webinars-page__title-wrap h1,
.webinar-single__intro h1 {
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    font-weight: 800;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.webinars-page__intro p {
    margin: 0;
    max-width: 458px;
    padding-top: 22px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.webinars-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 458px));
    justify-content: space-between;
    gap: 24px;
    margin-top: 57px;
}

.webinar-card {
    min-width: 0;
}

.webinar-card__link {
    display: block;
    color: inherit;
}

.webinar-card__poster,
.webinar-single__poster {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.webinar-card__poster {
    min-height: 548px;
    padding: 28px;
}

.webinar-single__poster {
    min-height: 640px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.webinar-card--webinar-poster .webinar-card__poster,
.webinar-single__poster--webinar-poster {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.24) 0, rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #f8efe5 0%, #fe9f4d 42%, #fe6702 100%);
}

.webinar-card--webinar-note .webinar-card__poster,
.webinar-single__poster--webinar-note {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #f3f3f3 0%, #d8d8d8 34%, #202122 100%);
    color: #fff;
}

.webinar-card--webinar-grid .webinar-card__poster,
.webinar-single__poster--webinar-grid {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #fff6ef 0%, #feb06b 28%, #fe6702 66%, #202122 100%);
    color: #fff;
}

.webinar-card--webinar-note .webinar-card__poster::before,
.webinar-single__poster--webinar-note::before,
.webinar-card--webinar-grid .webinar-card__poster::before,
.webinar-single__poster--webinar-grid::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 44%;
    background: linear-gradient(180deg, rgba(32, 33, 34, 0) 0%, rgba(32, 33, 34, 0.56) 100%);
}

.webinar-card--webinar-note .webinar-card__poster::after,
.webinar-single__poster--webinar-note::after {
    content: "";
    position: absolute;
    right: 12%;
    top: 16%;
    width: 42%;
    height: 52%;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(32, 33, 34, 0.18);
    transform: rotate(-7deg);
}

.webinar-card--webinar-grid .webinar-card__poster::after,
.webinar-single__poster--webinar-grid::after {
    content: "";
    position: absolute;
    right: 10%;
    bottom: 12%;
    width: 36%;
    height: 36%;
    background: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 24px 24px;
}

.webinar-card__label,
.webinar-single__poster-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 7px 18px;
    border-radius: 55px;
    background: rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(8px);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.webinar-card__poster h2,
.webinar-single__poster h1 {
    position: relative;
    z-index: 1;
    max-width: 88%;
}

.webinar-card__poster h2 {
    margin: 18px 0 0;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.webinar-single__poster h1 {
    font-size: 65px;
    line-height: 65px;
}

.webinar-card__body {
    position: relative;
    padding: 0;
    margin-top: 24px;
}

.webinar-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    color: #a1a1a1;
}

.webinar-card__subtitle {
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #202122;
}

.webinar-card__body p {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 17px;
    color: #525252;
}

.webinar-card__arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 27px;
}

.webinar-card__arrow img {
    display: block;
    width: 100%;
}

.webinar-single__hero-grid {
    display: grid;
    grid-template-columns: 458px 950px;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 48px;
}

.webinar-single__intro {
    min-width: 0;
}

.webinar-single__subtitle {
    margin: 18px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #202122;
}

.webinar-single__description {
    margin: 24px 0 0;
    max-width: 458px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.webinar-single__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
    margin-top: 32px;
}

.webinar-single__meta-item {
    display: grid;
    gap: 16px;
}

.webinar-single__meta-item span {
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.webinar-single__meta-item strong {
    color: #202122;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}

.webinar-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.webinar-single__button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.webinar-single__button--dark {
    background: #202122;
    color: #fff;
}

.webinar-single__button--light {
    border: 1px solid rgba(32, 33, 34, 0.14);
    color: #202122;
}

.webinar-single__section {
    padding-top: 56px;
}

.webinar-single__content-shell {
    display: grid;
    grid-template-columns: 950px 458px;
    justify-content: space-between;
    gap: 24px;
    align-items: start;
}

.webinar-single__content h2,
.webinar-single__note h2 {
    margin: 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.webinar-single__content p {
    margin: 16px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.webinar-single__note {
    padding: 0;
    background: transparent;
}

.webinar-single__bullet-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.webinar-single__bullet-list li {
    position: relative;
    padding-left: 22px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.webinar-single__bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 21px;
    background: url("../img/event-bullet.svg") center/contain no-repeat;
}

@media (max-width: 1200px) {
    .webinars-page,
    .webinar-single {
        padding-top: 144px;
    }

    .webinars-page__shell,
    .webinar-single__shell {
        width: min(1470px, calc(100vw - 48px));
    }

    .webinars-page__hero-grid,
    .webinar-single__hero-grid,
    .webinar-single__content-shell {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .webinars-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .webinar-single__poster {
        min-height: min(76vw, 640px);
    }
}

@media (max-width: 767px) {
    .webinars-page,
    .webinar-single {
        padding: 132px 0 96px;
    }

    .webinars-page__shell,
    .webinar-single__shell {
        width: calc(100vw - 32px);
    }

    .webinars-page__title-wrap h1,
    .webinar-single__intro h1,
    .webinar-single__poster h1 {
        font-size: 48px;
        line-height: 48px;
    }

    .webinars-page__intro p,
    .webinar-single__description,
    .webinar-single__content p {
        font-size: 18px;
        line-height: 24px;
    }

    .webinars-page__grid,
    .webinar-single__meta-grid {
        grid-template-columns: 1fr;
    }

    .webinar-card__poster,
    .webinar-single__poster {
        min-height: 420px;
        height: 92vw;
        max-height: 760px;
    }

    .webinar-card__poster h2,
    .webinar-single__content h2,
    .webinar-single__note h2 {
        font-size: 32px;
        line-height: 34px;
    }
}

@media (max-width: 479px) {
    .webinars-page__title-wrap {
        gap: 14px;
    }

    .webinars-page__slash {
        width: 22px;
        height: auto;
    }

    .webinars-page__title-wrap h1,
    .webinar-single__intro h1,
    .webinar-single__poster h1 {
        font-size: 42px;
        line-height: 42px;
    }

    .webinar-card__subtitle,
    .webinar-card__body p,
    .webinar-single__subtitle,
    .webinar-single__description,
    .webinar-single__content p,
    .webinar-single__bullet-list li {
        font-size: 16px;
        line-height: 22px;
    }

    .webinar-card__poster h2,
    .webinar-single__content h2,
    .webinar-single__note h2 {
        font-size: 28px;
        line-height: 32px;
    }
}

.programs-overview,
.program-detail,
.webinars-overview {
    position: relative;
    padding: 56px 0 120px;
    background: #f7f7f7;
    color: #202122;
}

.programs-overview__shell,
.program-detail__shell,
.webinars-overview__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.programs-overview__breadcrumbs,
.program-detail__breadcrumbs,
.webinars-overview__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.programs-overview__breadcrumbs a,
.program-detail__breadcrumbs a,
.webinars-overview__breadcrumbs a {
    color: inherit;
}

.programs-overview__breadcrumbs span[aria-hidden="true"],
.program-detail__breadcrumbs span[aria-hidden="true"],
.webinars-overview__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.programs-overview__hero,
.webinars-overview__hero {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-start;
    margin-top: 48px;
}

.programs-overview__hero-main,
.webinars-overview__hero-main {
    width: min(816px, 100%);
}

.programs-overview__hero-main h1,
.webinars-overview__hero-main h1,
.program-detail__title {
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    font-weight: 800;
    text-transform: uppercase;
}

.programs-overview__hero-main p,
.webinars-overview__hero-main p {
    max-width: 574px;
    margin: 24px 0 0;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.programs-overview__hero-lead,
.webinars-overview__hero-lead {
    width: min(555px, 100%);
    margin: 0;
    padding-top: 4px;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.programs-overview__cards {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-top: 34px;
}

.programs-overview__card-group {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.programs-overview__card-group--left {
    width: 576px;
}

.programs-overview__card-group--right {
    width: 694px;
}

.programs-overview-card {
    min-width: 0;
}

.programs-overview-card--large {
    width: 339px;
}

.programs-overview-card--small {
    width: 221px;
}

.programs-overview-card__link {
    display: block;
    color: inherit;
}

.programs-overview-card__media {
    overflow: hidden;
    border-radius: 10px;
    background: #d9d9d9;
}

.programs-overview-card--large .programs-overview-card__media {
    aspect-ratio: 339 / 382;
}

.programs-overview-card--small .programs-overview-card__media {
    aspect-ratio: 221 / 249;
}

.programs-overview-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programs-overview-card__body {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.programs-overview-card__copy {
    min-width: 0;
}

.programs-overview-card__copy h2,
.webinars-overview-card__copy h2 {
    margin: 0;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.programs-overview-card__copy p,
.webinars-overview-card__copy p {
    margin: 4px 0 0;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.programs-overview-card__copy span {
    display: block;
    margin-top: 8px;
    color: #a1a1a1;
    font-size: 13px;
    line-height: 17px;
}

.programs-overview-card__arrow {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    margin-top: 2px;
}

.programs-overview-card__arrow img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.webinars-overview__rows {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 40px 16px;
    margin-top: 56px;
}

.webinars-overview__row {
    display: contents;
}

.webinars-overview__cluster {
    display: contents;
}

.webinars-overview-card {
    min-width: 0;
}

.webinars-overview-card__link {
    display: block;
    color: inherit;
    cursor: pointer;
}

.webinars-overview-card--large {
    grid-column: span 4;
}

.webinars-overview-card--compact {
    grid-column: span 3;
}

.webinars-overview-card--slot-a {
    grid-column: 1 / span 4;
}

.webinars-overview-card--slot-b {
    grid-column: 6 / span 3;
}

.webinars-overview-card--slot-c {
    grid-column: 9 / span 4;
}

.webinars-overview-card--slot-d {
    grid-column: 1 / span 3;
}

.webinars-overview-card--slot-e {
    grid-column: 4 / span 4;
}

.webinars-overview-card--slot-f {
    grid-column: 9 / span 4;
}

.webinars-overview-card__media {
    overflow: hidden;
    border-radius: 10px;
    background: #d9d9d9;
}

.webinars-overview-card--large .webinars-overview-card__media {
    aspect-ratio: 458 / 258;
}

.webinars-overview-card--compact .webinars-overview-card__media {
    aspect-ratio: 340 / 192;
}

.webinars-overview-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.webinars-overview-card__body {
    margin-top: 16px;
}

.webinars-overview-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
    margin-top: 24px;
}

.webinars-overview-card__meta {
    display: grid;
    gap: 4px;
    color: #a1a1a1;
    font-size: 13px;
    line-height: 17px;
}

.webinars-overview-card__button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    border-radius: 5px;
    background: #202122;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.materials-section-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 58px;
}

.materials-section-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 19px;
    color: #a1a1a1;
    font-size: 65px;
    line-height: 50px;
    font-weight: 800;
    text-transform: uppercase;
}

.materials-section-nav__link img {
    display: block;
    width: 56.5px;
    height: 56.5px;
    object-fit: contain;
}

.program-detail__subtitle {
    width: min(695px, 100%);
    margin: 16px 0 0 clamp(0px, 8vw, 122px);
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.program-detail__layout {
    display: grid;
    grid-template-columns: 406px 455px 339px;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.program-detail__media {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #d9d9d9;
}

.program-detail__media img {
    display: block;
    width: 100%;
    height: auto;
}

.program-detail__prose p,
.program-detail__list li {
    margin: 0;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.program-detail__prose p + p {
    margin-top: 15px;
}

.program-detail__content-block {
    margin-top: 32px;
}

.program-detail__content-block h2 {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.program-detail__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.program-detail__list li {
    position: relative;
    padding-left: 17px;
}

.program-detail__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 21px;
    background: url("../img/event-bullet.svg") center/contain no-repeat;
}

.program-detail__aside {
    padding-top: 1px;
}

.program-detail__actions {
    padding: 25px 22px;
    border-radius: 10px;
    background: #fff;
}

.program-detail__button {
    display: inline-flex;
    width: 100%;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    padding: 11px 24px 10px;
    border-radius: 5px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.program-detail__button--primary {
    background: #202122;
    color: #fff;
}

.program-detail__button--secondary {
    margin-top: 8px;
    border: 1px solid #d4d4d4;
    color: #a1a1a1;
}

.program-detail__note {
    margin: 18px 0 0;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.program-detail__back-link {
    display: inline-flex;
    align-items: center;
    gap: 19px;
    margin-top: 72px;
    color: #202122;
    font-size: 65px;
    line-height: 50px;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.program-detail__back-arrow {
    flex: 0 0 56.5px;
    width: 56.5px;
    height: 56.5px;
}

.program-detail__back-arrow img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(225deg);
}

@media (max-width: 1360px) {
    .materials-section-nav__link,
    .program-detail__back-link {
        font-size: 52px;
        line-height: 42px;
    }
}

@media (max-width: 1200px) {
    .programs-overview,
    .program-detail,
    .webinars-overview {
        padding-top: 144px;
    }

    .program-detail {
        padding-top: 34px;
    }

    .programs-overview__shell,
    .program-detail__shell,
    .webinars-overview__shell {
        width: min(1470px, calc(100vw - 48px));
    }

    .programs-overview__hero,
    .webinars-overview__hero {
        flex-direction: column;
        gap: 24px;
    }

    .programs-overview__hero-lead,
    .webinars-overview__hero-lead {
        width: min(780px, 100%);
        padding-top: 0;
    }

    .programs-overview__cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .programs-overview__card-group,
    .webinars-overview__cluster {
        display: contents;
    }

    .programs-overview-card,
    .programs-overview-card--large,
    .programs-overview-card--small,
    .webinars-overview-card,
    .webinars-overview-card--large,
    .webinars-overview-card--compact {
        width: 100%;
        grid-column: auto;
    }

    .webinars-overview__rows {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .materials-section-nav__link,
    .program-detail__back-link {
        font-size: 48px;
        line-height: 40px;
    }

    .materials-section-nav__link img,
    .program-detail__back-arrow {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .program-detail__subtitle {
        margin-left: 0;
    }

    .program-detail__layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        grid-template-areas:
      "media aside"
      "content content";
        gap: 32px;
    }

    .program-detail__media {
        grid-area: media;
    }

    .program-detail__content {
        grid-area: content;
    }

    .program-detail__aside {
        grid-area: aside;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .webinars-overview {
        padding: 0 0 120px;
    }

    .webinars-overview__shell {
        width: calc(100vw - 80px);
    }

    .webinars-overview__breadcrumbs {
        margin-top: 32px;
    }

    .webinars-overview__hero {
        margin-top: 48px;
        gap: 32px;
    }

    .webinars-overview__hero-main h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .webinars-overview__hero-main p {
        font-size: 20px;
        line-height: 26px;
    }

    .webinars-overview__hero-lead {
        width: 100%;
        font-size: 24px;
        line-height: 26px;
    }

    .webinars-overview__rows {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 56px 14px;
        margin-top: 56px;
    }

    .webinars-overview__rows > .webinars-overview-card {
        grid-column: auto;
    }

    .webinars-overview-card--large .webinars-overview-card__media,
    .webinars-overview-card--compact .webinars-overview-card__media {
        aspect-ratio: 337 / 192;
    }

    .webinars-overview-card__body {
        margin-top: 16px;
    }

    .webinars-overview-card__copy h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .webinars-overview-card__copy p,
    .webinars-overview-card__meta {
        font-size: 13px;
        line-height: 17px;
    }

    .webinars-overview-card__footer {
        margin-top: 24px;
    }

    .webinars-overview-card__button {
        min-height: 40px;
        padding: 10px 32px;
        font-size: 13px;
        line-height: 20px;
    }

    .webinars-overview .materials-section-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        margin-top: 56px;
    }

    .webinars-overview .materials-section-nav__link {
        font-size: 50px;
        line-height: 50px;
    }

    .webinars-overview .materials-section-nav__link img {
        width: 56.5px;
        height: 56.5px;
        flex-basis: 56.5px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .programs-overview,
    .program-detail {
        padding: 0 0 120px;
    }

    .programs-overview__shell,
    .program-detail__shell {
        width: calc(100vw - 80px);
    }

    .programs-overview__breadcrumbs,
    .program-detail__breadcrumbs {
        margin-top: 32px;
    }

    .programs-overview__hero {
        margin-top: 48px;
        gap: 32px;
    }

    .programs-overview__hero-main h1,
    .program-detail__title {
        font-size: 50px;
        line-height: 50px;
    }

    .programs-overview__hero-main p,
    .program-detail__prose p,
    .program-detail__list li {
        font-size: 20px;
        line-height: 26px;
    }

    .programs-overview__hero-lead,
    .program-detail__subtitle {
        width: 100%;
        font-size: 24px;
        line-height: 26px;
    }

    .programs-overview__cards {
        display: flex;
        flex-direction: column;
        gap: 56px;
        margin-top: 56px;
    }

    .programs-overview__card-group {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .programs-overview__card-group--left {
        width: 572px;
    }

    .programs-overview__card-group--right {
        width: 690px;
    }

    .programs-overview-card--large {
        width: 339px;
    }

    .programs-overview-card--small {
        width: 221px;
    }

    .programs-overview .materials-section-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        margin-top: 56px;
    }

    .programs-overview .materials-section-nav__link {
        font-size: 50px;
        line-height: 50px;
    }

    .programs-overview .materials-section-nav__link img {
        width: 56.5px;
        height: 56.5px;
        flex-basis: 56.5px;
    }

    .program-detail__title {
        width: 100%;
        margin-top: 48px;
    }

    .program-detail__subtitle {
        width: min(574px, 100%);
        margin: 24px 0 0;
    }

    .program-detail__layout {
        grid-template-columns: 339px 337px;
        grid-template-areas:
      "media aside"
      "content content";
        gap: 32px 14px;
        margin-top: 48px;
    }

    .program-detail__media {
        aspect-ratio: 339 / 421;
    }

    .program-detail__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .program-detail__button--secondary {
        min-height: 41px;
        padding: 11px 22px 10px;
    }

    .program-detail__back-link {
        margin-top: 72px;
        font-size: 50px;
        line-height: 50px;
    }

    .program-detail__back-arrow {
        width: 56.5px;
        height: 56.5px;
        flex-basis: 56.5px;
    }
}

@media (max-width: 767px) {
    .programs-overview__shell,
    .program-detail__shell,
    .webinars-overview__shell {
        position: relative;
        z-index: 1;
        width: calc(100vw - 32px);
    }

    .programs-overview__breadcrumbs,
    .program-detail__breadcrumbs,
    .webinars-overview__breadcrumbs {
        gap: 12px;
        margin-top: 56px;
        font-size: 12px;
        line-height: 15px;
    }

    .programs-overview__hero,
    .webinars-overview__hero,
    .programs-overview__cards,
    .program-detail__layout,
    .materials-section-nav {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .programs-overview__hero {
        margin-top: 36px;
        gap: 32px;
    }

    .webinars-overview__hero {
        margin-top: 36px;
        gap: 32px;
    }

    .programs-overview__hero-main h1,
    .webinars-overview__hero-main h1,
    .program-detail__title {
        font-size: 32px;
        line-height: 32px;
    }

    .programs-overview__hero-main p,
    .webinars-overview__hero-main p,
    .program-detail__prose p,
    .program-detail__list li {
        font-size: 16px;
        line-height: 20px;
    }

    .program-detail {
        padding-top: 56px;
    }

    .program-detail__breadcrumbs {
        margin-top: 0;
    }

    .programs-overview__hero-lead,
    .webinars-overview__hero-lead,
    .program-detail__subtitle {
        width: 100%;
        font-size: 18px;
        line-height: 24px;
    }

    .programs-overview__cards,
    .webinars-overview__rows {
        gap: 48px;
        margin-top: 48px;
    }

    .programs-overview__card-group {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 8px;
        width: 100%;
    }

    .programs-overview-card,
    .programs-overview-card--large,
    .programs-overview-card--small {
        width: 100%;
    }

    .programs-overview-card__body {
        gap: 8px;
    }

    .programs-overview-card__copy h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .programs-overview-card__copy p,
    .programs-overview-card__copy span {
        font-size: 12px;
        line-height: 15px;
    }

    .webinars-overview__rows {
        grid-template-columns: 1fr;
    }

    .webinars-overview-card__media {
        aspect-ratio: 345 / 194;
    }

    .webinars-overview-card__body {
        margin-top: 16px;
    }

    .webinars-overview-card__copy h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .webinars-overview-card__copy p,
    .webinars-overview-card__meta {
        font-size: 12px;
        line-height: 15px;
    }

    .webinars-overview-card__footer {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 12px;
        margin-top: 24px;
    }

    .webinars-overview-card__button,
    .program-detail__button {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
    }

    .programs-overview {
        padding-top: 60px;
        padding-bottom: 108px;
    }

    .programs-overview__breadcrumbs {
        margin-top: 0;
    }

    .webinars-overview-card__button {
        width: auto;
        min-height: 41px;
        padding: 11px 32px 10px;
        font-size: 12px;
        line-height: 15px;
    }

    .webinars-overview {
        padding-top: 60px;
        padding-bottom: 108px;
    }

    .webinars-overview__breadcrumbs {
        margin-top: 0;
    }

    .webinars-overview .materials-section-nav {
        align-items: flex-start;
        gap: 26px;
        margin-top: 56px;
    }

    .webinars-overview .materials-section-nav__link {
        gap: 10px;
        font-size: 32px;
        line-height: 13px;
    }

    .webinars-overview .materials-section-nav__link img {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .programs-overview .materials-section-nav {
        align-items: flex-start;
        gap: 26px;
        margin-top: 56px;
    }

    .programs-overview .materials-section-nav__link {
        gap: 10px;
        font-size: 32px;
        line-height: 13px;
    }

    .programs-overview .materials-section-nav__link img {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .program-detail__layout {
        grid-template-columns: 1fr;
        grid-template-areas:
      "media"
      "aside"
      "content";
        margin-top: 48px;
        gap: 24px;
    }

    .program-detail__title {
        margin-top: 56px;
    }

    .program-detail__subtitle {
        margin-top: 16px;
    }

    .program-detail__content-block {
        margin-top: 32px;
    }

    .program-detail__media {
        aspect-ratio: 343 / 425;
    }

    .program-detail__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .program-detail__content-block h2 {
        font-size: 18px;
        line-height: 22px;
    }

    .program-detail__actions {
        padding: 25px 22px;
    }

    .program-detail__button {
        font-size: 12px;
        line-height: 15px;
    }

    .program-detail__button--secondary {
        min-height: 41px;
        padding: 11px 22px 10px;
    }

    .program-detail__note {
        margin-top: 12px;
        font-size: 12px;
        line-height: 15px;
    }

    .program-detail__back-link {
        gap: 19px;
        margin-top: 48px;
        font-size: 32px;
        line-height: 32px;
    }

    .program-detail__back-arrow {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .book-detail {
        padding-top: 0 !important;
    }
}

.products-overview,
.product-detail,
.books-overview,
.book-detail {
    position: relative;
    padding: 60px 0 120px;
    background: #f7f7f7;
    color: #202122;
}

.products-overview__shell,
.product-detail__shell,
.books-overview__shell,
.book-detail__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.products-overview__breadcrumbs,
.product-detail__breadcrumbs,
.books-overview__breadcrumbs,
.book-detail__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.products-overview__breadcrumbs a,
.product-detail__breadcrumbs a,
.books-overview__breadcrumbs a,
.book-detail__breadcrumbs a {
    color: inherit;
}

.products-overview__breadcrumbs span[aria-hidden="true"],
.product-detail__breadcrumbs span[aria-hidden="true"],
.books-overview__breadcrumbs span[aria-hidden="true"],
.book-detail__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.products-overview__hero,
.books-overview__hero {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-start;
    margin-top: 48px;
}

.products-overview__hero-main,
.books-overview__hero-main {
    width: min(816px, 100%);
}

.products-overview__hero-main h1,
.books-overview__hero-main h1,
.product-detail__title,
.book-detail__title {
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    font-weight: 800;
    text-transform: uppercase;
}

.products-overview__hero-main p,
.books-overview__hero-main p {
    max-width: 684px;
    margin: 24px 0 0;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.products-overview__hero-lead,
.books-overview__hero-lead,
.product-detail__subtitle,
.book-detail__subtitle {
    width: min(555px, 100%);
    margin: 0;
    padding-top: 4px;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.products-overview__cards {
    display: grid;
    grid-template-columns: 339px 221px 96px 339px;
    justify-content: start;
    column-gap: 17px;
    row-gap: 32px;
    align-items: start;
    width: min(1046px, 100%);
    margin-top: 34px;
}

.products-overview-card:nth-child(3n + 1) {
    grid-column: 1;
}

.products-overview-card:nth-child(3n + 2) {
    grid-column: 2;
}

.products-overview-card:nth-child(3n) {
    grid-column: 4;
}

.books-overview__rows {
    display: grid;
    gap: 17px;
    margin-top: 34px;
}

.books-overview__row {
    display: grid;
    gap: 17px;
    align-items: start;
}

.books-overview__row--top {
    grid-template-columns: 339px 221px 339px 339px;
}

.books-overview__row--bottom {
    grid-template-columns: 339px 339px 221px;
}

@media (min-width: 1201px) {
    .books-overview__rows {
        margin-top: 56px;
        gap: 56px;
    }

    .books-overview__row {
        gap: 0;
    }

    .books-overview__row--top {
        grid-template-columns: 339px 16px 221px 131px 339px 16px 339px;
        width: 1401px;
    }

    .books-overview__row--top > :nth-child(1) {
        grid-column: 1;
    }

    .books-overview__row--top > :nth-child(2) {
        grid-column: 3;
    }

    .books-overview__row--top > :nth-child(3) {
        grid-column: 5;
    }

    .books-overview__row--top > :nth-child(4) {
        grid-column: 7;
    }

    .books-overview__row--bottom {
        grid-template-columns: 339px 17px 339px 130px 221px;
        width: 1046px;
    }

    .books-overview__row--bottom > :nth-child(1) {
        grid-column: 1;
    }

    .books-overview__row--bottom > :nth-child(2) {
        grid-column: 3;
    }

    .books-overview__row--bottom > :nth-child(3) {
        grid-column: 5;
    }
}

.products-overview-card,
.books-overview-card {
    min-width: 0;
}

.products-overview-card--large,
.books-overview-card--large {
    width: 339px;
}

.products-overview-card--small,
.books-overview-card--small {
    width: 221px;
}

.products-overview-card__link,
.books-overview-card__link {
    display: block;
    color: inherit;
}

.products-overview-card__media,
.books-overview-card__media {
    overflow: hidden;
    border-radius: 10px;
    background: #d9d9d9;
}

.products-overview-card--large .products-overview-card__media,
.books-overview-card--large .books-overview-card__media {
    aspect-ratio: 339 / 382;
}

.products-overview-card--small .products-overview-card__media,
.books-overview-card--small .books-overview-card__media {
    aspect-ratio: 221 / 249;
}

.products-overview-card__media img,
.books-overview-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-overview-card__body,
.books-overview-card__body {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.products-overview-card__copy,
.books-overview-card__copy {
    min-width: 0;
}

.products-overview-card__copy h2,
.books-overview-card__copy h2 {
    margin: 0;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.products-overview-card__copy p,
.books-overview-card__copy p {
    margin: 4px 0 0;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.books-overview-card__copy span {
    display: block;
    margin-top: 8px;
    color: #a1a1a1;
    font-size: 13px;
    line-height: 17px;
}

.products-overview-card__arrow,
.books-overview-card__arrow {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    margin-top: 2px;
}

.products-overview-card__arrow img,
.books-overview-card__arrow img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail__subtitle {
    width: min(695px, 100%);
    margin: 16px 0 0 clamp(0px, 8vw, 122px);
    padding-top: 0;
}

.book-detail__subtitle {
    width: min(695px, 100%);
    margin: 24px 0 48px clamp(0px, 8vw, 122px);
    padding-top: 0;
}

.product-detail__layout,
.book-detail__layout {
    display: grid;
    grid-template-columns: 406px 455px 339px;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.book-detail__layout {
    grid-template-columns: 406px 404px 339px;
    gap: 69px;
}

.product-detail__gallery,
.book-detail__gallery {
    display: grid;
    justify-items: start;
}

.product-detail__gallery-main,
.book-detail__gallery-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #d9d9d9;
    aspect-ratio: 406 / 503;
}

.product-detail__gallery-main,
.book-detail__gallery-main {
    appearance: none;
    border: 0;
    padding: 0;
    cursor: zoom-in;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-detail__gallery-main img,
.book-detail__gallery-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
}

.product-detail__gallery-thumbs,
.book-detail__gallery-thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 72px;
    gap: 8px;
    width: min(100%, 392px);
    margin-top: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
}

.product-detail__thumb,
.book-detail__thumb {
    appearance: none;
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 5px;
    background: #f7f7f7;
    padding: 0;
    cursor: pointer;
    scroll-snap-align: start;
}

.product-detail__thumb.is-active,
.book-detail__thumb.is-active {
    border-color: #d4d4d4;
}

.product-detail__thumb img,
.book-detail__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__lightbox[hidden],
.book-detail__lightbox[hidden] {
    display: none;
}

.product-detail__lightbox,
.book-detail__lightbox {
    position: fixed;
    inset: 0;
    z-index: 240;
    display: grid;
    place-items: center;
    padding: 40px;
    background: rgba(22, 22, 22, 0.84);
}

html.has-gallery-lightbox,
body.has-gallery-lightbox {
    overflow: hidden;
}

.product-detail__lightbox-dialog,
.book-detail__lightbox-dialog {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    width: min(1180px, calc(100vw - 80px));
    outline: none;
}

.product-detail__lightbox-frame,
.book-detail__lightbox-frame {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 0;
}

.product-detail__lightbox-frame img,
.book-detail__lightbox-frame img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
}

.product-detail__lightbox-nav,
.book-detail__lightbox-nav {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease;
}

.product-detail__lightbox-nav,
.book-detail__lightbox-nav {
    width: 52px;
    height: 52px;
    font-size: 42px;
    line-height: 1;
}

.product-detail__prose p,
.product-detail__list li,
.book-detail__prose p {
    margin: 0;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.product-detail__prose p + p,
.book-detail__prose p + p {
    margin-top: 15px;
}

.product-detail__list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.product-detail__list li {
    position: relative;
    padding-left: 17px;
}

.product-detail__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 13px;
    height: 21px;
    background: url("../img/event-bullet.svg") center/contain no-repeat;
}

.product-detail__actions,
.book-detail__actions {
    padding: 25px 22px;
    border-radius: 10px;
    background: #fff;
}

.book-detail__actions {
    min-height: 397px;
}

.product-detail__button,
.book-detail__button {
    display: inline-flex;
    width: 100%;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    padding: 11px 24px 10px;
    border-radius: 5px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.product-detail__button + .product-detail__button {
    margin-top: 8px;
}

.book-detail__button {
    min-height: 41px;
    padding: 11px 32px 10px;
}

.book-detail__buttons {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.product-detail__button--pink,
.book-detail__button--pink {
    background: #fd3399;
    color: #fff;
    transition: all .2s ease;
}

.product-detail__button--blue,
.book-detail__button--blue {
    background: #4c7cff;
    color: #fff;
    transition: all .2s ease;
}

.book-detail__options {
    display: grid;
    gap: 4px;
}

.book-detail__option {
    display: flex;
    min-height: 55px;
    align-items: center;
    padding: 0 22px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    background: transparent;
    text-align: left;
    color: #525252;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--interactive-duration) var(--interactive-ease),
    border-color var(--interactive-duration) var(--interactive-ease),
    color var(--interactive-duration) var(--interactive-ease);
}

@media (min-width: 1534px) {
    .book-detail__breadcrumbs {
        width: calc(100% - 64px);
        margin-left: 33px;
    }

    .book-detail__title {
        width: calc(100% - 58px);
        margin-left: 32px;
    }

    .book-detail__subtitle {
        margin-left: 155px;
    }

    .book-detail__layout {
        width: 1287px;
        margin-left: 151px;
    }
}

.materials-detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 19px;
    margin-top: 72px;
    color: #202122;
    font-size: 65px;
    line-height: 50px;
    font-weight: 800;
    text-transform: uppercase;
}

.materials-detail-back-link__arrow {
    flex: 0 0 56.5px;
    width: 56.5px;
    height: 56.5px;
}

.materials-detail-back-link__arrow img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(225deg);
}

@media (max-width: 1360px) {
    .materials-detail-back-link {
        font-size: 52px;
        line-height: 42px;
    }
}

@media (max-width: 1200px) {
    .products-overview,
    .product-detail,
    .books-overview,
    .book-detail {
        padding-top: 144px;
    }

    .products-overview__shell,
    .product-detail__shell,
    .books-overview__shell,
    .book-detail__shell {
        width: min(1470px, calc(100vw - 48px));
    }

    .products-overview__hero,
    .books-overview__hero {
        flex-direction: column;
        gap: 24px;
    }

    .products-overview__hero-lead,
    .books-overview__hero-lead {
        width: min(780px, 100%);
        padding-top: 0;
    }

    .products-overview__cards,
    .books-overview__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .products-overview-card:nth-child(3n + 1),
    .products-overview-card:nth-child(3n + 2),
    .products-overview-card:nth-child(3n) {
        grid-column: auto;
    }

    .products-overview-card,
    .products-overview-card--large,
    .products-overview-card--small,
    .books-overview-card,
    .books-overview-card--large,
    .books-overview-card--small {
        width: 100%;
    }

    .materials-detail-back-link {
        font-size: 48px;
        line-height: 40px;
    }

    .materials-detail-back-link__arrow {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .product-detail__subtitle,
    .book-detail__subtitle {
        margin-left: 0;
    }

    .product-detail__layout,
    .book-detail__layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        grid-template-areas:
      "gallery aside"
      "content content";
        gap: 32px;
    }

    .product-detail__gallery,
    .book-detail__gallery {
        grid-area: gallery;
    }

    .book-detail__actions {
        min-height: 0;
    }

    .product-detail__gallery-thumbs,
    .book-detail__gallery-thumbs {
        width: min(100%, 392px);
    }

    .product-detail__content,
    .book-detail__content {
        grid-area: content;
    }

    .product-detail__aside,
    .book-detail__aside {
        grid-area: aside;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .products-overview,
    .product-detail {
        padding: 0 0 120px;
    }

    .products-overview__shell,
    .product-detail__shell {
        width: calc(100vw - 80px);
    }

    .products-overview__breadcrumbs,
    .product-detail__breadcrumbs {
        margin-top: 32px;
    }

    .products-overview__hero {
        margin-top: 48px;
        gap: 32px;
    }

    .products-overview__hero-main h1,
    .product-detail__title {
        font-size: 50px;
        line-height: 50px;
    }

    .products-overview__hero-main p,
    .product-detail__prose p,
    .product-detail__list li {
        font-size: 20px;
        line-height: 26px;
    }

    .products-overview__hero-lead,
    .product-detail__subtitle {
        width: 100%;
        font-size: 24px;
        line-height: 26px;
    }

    .products-overview__cards {
        grid-template-columns: 339px 221px;
        justify-content: start;
        gap: 56px 12px;
        width: 572px;
        margin-top: 56px;
    }

    .products-overview-card--large {
        width: 339px;
    }

    .products-overview-card--small {
        width: 221px;
    }

    .products-overview .materials-section-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        margin-top: 56px;
    }

    .products-overview .materials-section-nav__link {
        font-size: 50px;
        line-height: 50px;
    }

    .products-overview .materials-section-nav__link img {
        width: 56.5px;
        height: 56.5px;
        flex-basis: 56.5px;
    }

    .product-detail__title {
        width: 100%;
        margin-top: 48px;
    }

    .product-detail__subtitle {
        width: min(574px, 100%);
        margin: 24px 0 0;
    }

    .product-detail__layout {
        grid-template-columns: 339px 337px;
        grid-template-areas:
      "gallery aside"
      "content content";
        gap: 32px 14px;
        margin-top: 48px;
    }

    .product-detail__gallery-main {
        aspect-ratio: 339 / 421;
    }

    .product-detail__gallery-thumbs {
        width: 100%;
    }

    .product-detail__actions {
        padding: 25px 22px;
    }

    .product-detail__button {
        min-height: 41px;
        padding: 11px 22px 10px;
        font-size: 12px;
        line-height: 15px;
    }

    .materials-detail-back-link {
        margin-top: 72px;
        font-size: 50px;
        line-height: 50px;
    }

    .materials-detail-back-link__arrow {
        width: 56.5px;
        height: 56.5px;
        flex-basis: 56.5px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .books-overview,
    .book-detail {
        padding: 0 0 120px;
    }

    .books-overview__shell,
    .book-detail__shell {
        width: calc(100vw - 80px);
    }

    .books-overview__hero {
        margin-top: 48px;
        gap: 24px;
    }

    .books-overview__hero-main h1,
    .book-detail__title {
        font-size: 50px;
        line-height: 50px;
    }

    .books-overview__hero-main p,
    .book-detail__prose p {
        font-size: 20px;
        line-height: 26px;
    }

    .books-overview__hero-lead,
    .book-detail__subtitle {
        width: 100%;
        font-size: 24px;
        line-height: 26px;
    }

    .books-overview__rows {
        margin-top: 56px;
        gap: 56px;
    }

    .books-overview__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 56px 12px;
    }

    .books-overview-card,
    .books-overview-card--large,
    .books-overview-card--small {
        width: 100%;
    }

    .book-detail__title {
        width: 100%;
        margin-top: 48px;
    }

    .book-detail__subtitle {
        margin: 24px 0 0;
    }

    .book-detail__layout {
        grid-template-columns: 337px 339px;
        grid-template-areas:
      "gallery aside"
      "content content";
        gap: 32px 12px;
        margin-top: 48px;
    }

    .book-detail__gallery-main {
        aspect-ratio: 337 / 418;
    }

    .book-detail__gallery-thumbs {
        width: 100%;
    }

    .materials-detail-back-link {
        margin-top: 72px;
        font-size: 50px;
        line-height: 50px;
    }

    .materials-detail-back-link__arrow {
        width: 56.5px;
        height: 56.5px;
        flex-basis: 56.5px;
    }

    .books-overview {
        padding-top: 32px;
    }
}

@media (max-width: 767px) {
    .books-overview {
        padding-top: 56px;
    }

    .books-overview__breadcrumbs {
        margin-top: 0 !important;
    }

    .products-overview,
    .product-detail {
        padding: 56px 0 88px;
    }

    .products-overview__shell,
    .product-detail__shell,
    .books-overview__shell,
    .book-detail__shell {
        position: relative;
        z-index: 1;
        width: calc(100vw - 32px);
    }

    .products-overview__breadcrumbs,
    .product-detail__breadcrumbs,
    .books-overview__breadcrumbs,
    .book-detail__breadcrumbs {
        gap: 12px;
        margin-top: 0;
        font-size: 12px;
        line-height: 15px;
    }

    .products-overview__hero,
    .books-overview__hero,
    .products-overview__cards,
    .product-detail__layout,
    .book-detail__layout {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .products-overview__hero {
        margin-top: 36px;
        gap: 32px;
    }

    .books-overview__hero {
        margin-top: 36px;
        gap: 32px;
    }

    .products-overview__hero-main h1,
    .books-overview__hero-main h1,
    .product-detail__title,
    .book-detail__title {
        font-size: 32px;
        line-height: 32px;
    }

    .products-overview__hero-main p,
    .books-overview__hero-main p,
    .product-detail__prose p,
    .product-detail__list li,
    .book-detail__prose p {
        font-size: 16px;
        line-height: 20px;
    }

    .products-overview__hero-lead,
    .books-overview__hero-lead,
    .product-detail__subtitle,
    .book-detail__subtitle {
        width: 100%;
        font-size: 18px;
        line-height: 24px;
    }

    .products-overview__cards,
    .books-overview__rows {
        gap: 48px;
        margin-top: 48px;
    }

    .products-overview-card:nth-child(3n + 1),
    .products-overview-card:nth-child(3n + 2),
    .products-overview-card:nth-child(3n) {
        grid-column: auto;
    }

    .products-overview__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 8px;
    }

    .products-overview-card__body {
        gap: 8px;
    }

    .products-overview-card__copy h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .products-overview-card__copy p {
        font-size: 12px;
        line-height: 15px;
    }

    .products-overview .materials-section-nav {
        align-items: flex-start;
        gap: 26px;
        margin-top: 56px;
    }

    .products-overview .materials-section-nav__link {
        gap: 10px;
        font-size: 32px;
        line-height: 13px;
    }

    .products-overview .materials-section-nav__link img {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .books-overview__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 8px;
    }

    .books-overview-card__body {
        gap: 8px;
    }

    .books-overview-card__copy h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .books-overview-card__copy p,
    .books-overview-card__copy span {
        font-size: 12px;
        line-height: 15px;
    }

    .books-overview .materials-section-nav {
        align-items: flex-start;
        gap: 26px;
        margin-top: 56px;
    }

    .books-overview .materials-section-nav__link {
        gap: 10px;
        font-size: 32px;
        line-height: 13px;
    }

    .books-overview .materials-section-nav__link img {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .product-detail__layout,
    .book-detail__layout {
        grid-template-areas:
      "gallery"
      "aside"
      "content";
        gap: 24px;
    }

    .product-detail__layout {
        margin-top: 48px;
    }

    .book-detail__layout {
        margin-top: 28px;
    }

    .product-detail__title,
    .book-detail__title {
        margin-top: 56px;
    }

    .product-detail__subtitle,
    .book-detail__subtitle {
        margin-top: 16px;
    }

    .product-detail__gallery-thumbs,
    .book-detail__gallery-thumbs {
        grid-auto-columns: 72px;
        gap: 8px;
        width: min(100%, 312px);
    }

    .product-detail__thumb,
    .book-detail__thumb {
        width: 72px;
        height: 72px;
    }

    .product-detail__lightbox,
    .book-detail__lightbox {
        padding: 16px;
    }

    .product-detail__lightbox-dialog,
    .book-detail__lightbox-dialog {
        grid-template-columns: 1fr;
        gap: 12px;
        width: min(100vw - 32px, 100%);
    }

    .product-detail__lightbox-frame,
    .book-detail__lightbox-frame {
        width: 100%;
    }

    .product-detail__lightbox-frame img,
    .book-detail__lightbox-frame img {
        max-height: calc(100vh - 176px);
    }

    .product-detail__lightbox-nav,
    .book-detail__lightbox-nav {
        position: absolute;
        top: 50%;
        z-index: 2;
        width: 44px;
        height: 44px;
        font-size: 34px;
        transform: translateY(-50%);
    }

    .product-detail__lightbox-nav--prev,
    .book-detail__lightbox-nav--prev {
        left: 10px;
    }

    .product-detail__lightbox-nav--next,
    .book-detail__lightbox-nav--next {
        right: 10px;
    }

    .book-detail__option,
    .product-detail__button,
    .book-detail__button {
        min-height: 55px;
        padding: 11px 22px 10px;
    }

    .product-detail__button {
        min-height: 41px;
        font-size: 12px;
        line-height: 15px;
    }

    .product-detail__actions {
        padding: 25px 22px;
    }

    .book-detail__button {
        min-height: 41px;
        padding: 11px 22px 10px;
        font-size: 12px;
        line-height: 15px;
    }

    .book-detail__option {
        font-size: 12px;
        line-height: 15px;
    }

    .book-detail__actions {
        padding: 25px 22px;
    }

    .book-detail__gallery-main {
        aspect-ratio: 343 / 425;
    }

    .materials-detail-back-link {
        gap: 19px;
        margin-top: 56px;
        font-size: 32px;
        line-height: 32px;
    }

    .product-detail .materials-detail-back-link {
        margin-top: 48px;
    }

    .materials-detail-back-link__arrow {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }
}

.service-page--contacts .consultation {
    padding-bottom: 0;
}

.content-page,
.service-page {
    padding: 60px 0;
    background: #fff;
    color: #202122;
}

.events-page {
    padding: 35px 0 0 0;
    background: #f7f7f7;
    color: #202122;
}

.events-page__newsletter::before {
    top: 0;
}

.events-page__section {
    padding: 0 0 75px;
}

.events-page .event-card:last-child {
    border: none;
}

.events-page__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.events-page__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.events-page__breadcrumbs a {
    color: inherit;
}

.events-page__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.events-page__hero {
    display: block;
    margin-top: 55px;
}

.events-page__intro-block {
    width: 694px;
}

.events-page__title-wrap {
    display: block;
}

.events-page__title-wrap h1 {
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    font-weight: 800;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.events-page__intro {
    margin: 0;
    max-width: 574px;
    padding-top: 24px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.events-page__toolbar {
    width: min(1403px, 100%);
    margin-top: 51px;
}

.events-page__countries,
.events-page__months,
.events-page__years {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.events-page__countries {
    gap: 25px;
}

.events-page__country,
.events-page__month,
.events-page__year {
    padding: 0;
    border: 0;
    background: transparent;
    color: #202122;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
}

.events-page__country {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    transition: color 180ms ease;
}

.events-page__country.is-active,
.events-page__country:hover {
    color: var(--accent);
}

.events-page__search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 111px;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.events-page__search {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 55px;
    padding: 0 8px 0 14px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    background: #fff;
}

.events-page__search-field {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1 1 auto;
    min-width: 0;
}

.events-page__search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    height: 20px;
    color: rgba(32, 33, 34, 0.5);
}

.events-page__search-icon svg {
    width: 20px;
    height: 20px;
}

.events-page__search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 8px;
    border: 0;
    border-radius: 5px;
    background: #fff;
    color: #202122;
}

.events-page__search-submit svg {
    width: 24px;
    height: 24px;
}

.events-page__search-field input,
.events-page__city-select select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #202122;
    font-size: 13px;
    line-height: 20px;
}

.events-page__search-field input::placeholder {
    color: rgba(32, 33, 34, 0.5);
}

.events-page__city-select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 111px;
    min-height: 55px;
    padding: 0 24px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
}

.events-page__city-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #202122;
    border-bottom: 1.5px solid #202122;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.events-page__city-select select {
    appearance: none;
    font-weight: 700;
    text-transform: uppercase;
}

.events-page__timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 16px;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(32, 33, 34, 0.14);
}

.events-page__months {
    gap: 40px;
}

.events-page__month,
.events-page__year {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: #a1a1a1;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0;
}

.events-page__month.is-active,
.events-page__year.is-active {
    color: #202122;
    letter-spacing: 0.05em;
}

.events-page__years {
    gap: 8px;
}

.events-page__count {
    margin: 16px 0 9px;
    color: #a1a1a1;
    font-size: 13px;
    line-height: 17px;
}

.events-page__list {
    width: min(1403px, 100%);
    margin-top: 0;
}

.events-page .event-list {
    border-top: 0;
}

.events-page .home-event-card {
    gap: 17px;
    padding: 24px 0 23px;
}

.events-page .home-event-card__button {
    min-width: 0;
}

.events-page__empty {
    margin: 32px 0 0;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.events-page__newsletter {
    margin-top: 0;
    background: transparent;
    padding-bottom: 0;
}

.events-page__newsletter::before {
    background: #d4d4d4;
}

.events-page [data-event-card][hidden] {
    display: none;
}

.event-card--sold-out .event-card__button,
.home-event-card--sold-out .home-event-card__button {
    border: 1px solid #d4d4d4;
    background: #d4d4d4;
    color: #fff;
}

.event-card--soon .event-card__button,
.home-event-card--soon .home-event-card__button {
    border: 1px solid #d4d4d4;
    background: #fff;
    color: #a1a1a1;
}

.content-page__shell,
.service-page__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.content-page__breadcrumbs,
.service-page__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.content-page__breadcrumbs a,
.service-page__breadcrumbs a {
    color: inherit;
}

.content-page__breadcrumbs span[aria-hidden="true"],
.service-page__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.content-page__hero,
.service-page__hero {
    display: grid;
    grid-template-columns: 458px 458px 458px;
    justify-content: space-between;
    align-items: start;
    margin-top: 48px;
}

.content-page__title-wrap,
.service-page__title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.content-page__slash,
.service-page__slash {
    width: 35px;
    height: 60px;
    flex: 0 0 auto;
}

.content-page__slash img,
.service-page__slash img {
    display: block;
    width: 100%;
    height: 100%;
}

.content-page__title-wrap h1,
.service-page__title-wrap h1 {
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    font-weight: 800;
    text-transform: uppercase;
}

.content-page__intro,
.service-page__intro {
    margin: 0;
    max-width: 458px;
    padding-top: 22px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.content-page__content {
    width: 950px;
    margin-top: 56px;
}

.legal-page__header {
    margin-top: 48px;
}

.legal-page__header h1 {
    margin: 0;
    font-size: 40px;
    line-height: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.legal-page__intro {
    margin: 16px 0 0;
    max-width: 750px;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.legal-page__body {
    width: min(950px, 100%);
    margin-top: 40px;
    padding-bottom: 80px;
}

.legal-page__body > *:first-child {
    margin-top: 0;
}

.legal-page__body h2,
.legal-page__body h3 {
    margin: 40px 0 0;
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.legal-page__body p,
.legal-page__body li {
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 26px;
    color: #525252;
}

.legal-page__body ul,
.legal-page__body ol {
    margin: 24px 0 0;
    padding-left: 24px;
}

.legal-page__body a {
    color: var(--accent);
}

.content-page__content > *:first-child {
    margin-top: 0;
}

.content-page__content h2,
.content-page__content h3 {
    margin: 40px 0 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.content-page__content p,
.content-page__content li {
    margin: 16px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.content-page__content ul,
.content-page__content ol {
    margin: 24px 0 0;
    padding-left: 24px;
}

.content-page__content a {
    color: var(--accent);
}

.service-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 458px));
    justify-content: space-between;
    gap: 24px;
    margin-top: 57px;
}

.service-page__grid--two {
    grid-template-columns: repeat(2, minmax(0, 702px));
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 32px;
    border-radius: 10px;
    background: #f7f5f1;
}

.service-card__eyebrow {
    margin: 0;
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.service-card h2 {
    margin: 16px 0 0;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.service-card p,
.service-card li {
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 26px;
    color: #525252;
}

.service-card__list {
    margin: 20px 0 0;
    padding-left: 22px;
}

.service-card a,
.footer-secondary-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    text-transform: uppercase;
}

.service-page--contacts .service-page__intro {
    max-width: 702px;
    margin: 0;
    padding: 0;
}

.service-page--contacts .service-page__grid + .service-page__grid {
    margin-top: 24px;
}

.service-page--contacts .consultation {
    margin-top: 32px;
}

.service-card__note {
    margin-top: 14px;
    color: #a1a1a1;
    font-size: 13px;
    line-height: 17px;
}

.service-card__email {
    display: block;
    margin-top: auto;
    padding-top: 32px;
    color: #202122;
    font-size: 32px;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: -0.04em;
    text-transform: none;
    word-break: break-word;
}

.service-card__page-link {
    margin-top: 20px;
}

.service-card__social-list {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding-top: 32px;
}

.service-card__social-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    margin-top: 0;
    padding: 0 24px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    background: #fff;
    color: #202122;
    text-transform: none;
}

.service-card__social-item-icon,
.service-card__social-item-icon svg {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.service-card__social-item-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
}

.service-card__direct {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: auto;
    padding-top: 32px;
}

.service-card__messengers {
    display: flex;
    gap: 16px;
}

.service-card__messengers a {
    display: inline-flex;
    width: 56px;
    height: 56px;
    margin-top: 0;
}

.service-card__messengers img {
    width: 100%;
    height: 100%;
}

.service-card__phone strong {
    display: block;
    color: #202122;
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.04em;
}

.service-card__phone span {
    display: block;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.service-card__button.button {
    align-self: flex-start;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contacts-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(360px, 458px);
    align-items: start;
    gap: 24px;
    margin-top: 57px;
}

.contacts-page__side {
    display: grid;
    gap: 24px;
}

.contacts-page__panel,
.contacts-page__map-section {
    padding: 32px;
    border-radius: 10px;
    background: #f7f5f1;
}

.contacts-page__eyebrow {
    margin: 0;
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.contacts-page__panel-head h2,
.contacts-page__map-head h2 {
    margin: 16px 0 0;
    color: #202122;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.contacts-page__panel-text {
    margin: 16px 0 0;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.contacts-page__rows {
    margin-top: 32px;
    border-top: 1px solid #d4d4d4;
}

.contacts-page__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid #d4d4d4;
}

.contacts-page__row:last-child {
    border: none;
}

.contacts-page__row-label {
    margin: 0;
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.contacts-page__row-copy h3 {
    margin: 14px 0 0;
    color: #202122;
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.contacts-page__row-copy p:last-child {
    margin: 16px 0 0;
    color: #525252;
    font-size: 20px;
    line-height: 26px;
}

.contacts-page__row-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
}

.contacts-page__email {
    display: block;
    color: #202122;
    font-size: 28px;
    font-weight: 800;
    line-height: 32px;
    letter-spacing: -0.04em;
    word-break: break-word;
}

.contacts-page__direct {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.contacts-page__messengers {
    display: flex;
    gap: 16px;
}

.contacts-page__messengers a {
    display: inline-flex;
    width: 56px;
    height: 56px;
}

.contacts-page__messengers img {
    width: 100%;
    height: 100%;
}

.contacts-page__phone strong {
    display: block;
    color: #202122;
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.04em;
}

.contacts-page__phone span {
    display: block;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.contacts-page__button.button {
    align-self: flex-start;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contacts-page__social-list {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}

.contacts-page__social-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 0 20px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    background: #fff;
    color: #202122;
}

.contacts-page__social-item-icon,
.contacts-page__social-item-icon svg {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.contacts-page__social-item-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
}

.contacts-page__map-section {
    margin-top: 24px;
}

.contacts-page__map-frame {
    margin-top: 24px;
    overflow: hidden;
    border-radius: 10px;
    background: #d4d4d4;
    height: 520px;
}

.contacts-page__map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.service-page--contacts.contacts-page {
    padding-bottom: 108px;
}

@media (max-width: 1200px) {
    .service-page--contacts.contacts-page {
        padding-top: 56px;
    }

    .events-page {
        padding-top: 35px;
    }

    .events-page__shell {
        width: min(1470px, calc(100vw - 48px));
    }

    .events-page__intro-block {
        width: 100%;
    }

    .events-page__countries,
    .events-page__months {
        gap: 16px;
    }

    .events-page__country {
        font-size: 18px;
        line-height: 22px;
    }

    .events-page__search-row {
        grid-template-columns: minmax(0, 1fr) 111px;
    }

    .events-page__search {
        width: 100%;
    }

    .events-page__years {
        justify-content: flex-start;
    }

    .content-page,
    .service-page {
        padding-top: 60px;
    }

    .content-page__shell,
    .service-page__shell {
        width: min(1470px, calc(100vw - 48px));
    }

    .content-page__hero,
    .service-page__hero,
    .service-page__grid,
    .service-page__grid--two {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .content-page__content {
        width: 100%;
    }

    .service-page--contacts .consultation {
        margin-top: 24px;
    }

    .contacts-page__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contacts-page__side {
        grid-template-columns: 1fr 1fr;
    }

    .contacts-page__row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contacts-page__row-actions {
        justify-content: flex-start;
    }
}

@media (min-width: 721px) and (max-width: 980px) {
    .events-page__shell {
        width: calc(100vw - 80px);
    }

    .events-page__hero {
        margin-top: 40px;
    }

    .events-page__title-wrap h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .events-page__intro {
        max-width: 574px;
        padding-top: 24px;
        font-size: 20px;
        line-height: 26px;
    }

    .events-page__toolbar,
    .events-page__list {
        width: 100%;
    }

    .events-page__toolbar {
        margin-top: 40px;
    }

    .events-page__countries {
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: repeat(4, auto);
        grid-auto-columns: max-content;
        gap: 16px 36px;
        align-items: start;
        justify-content: start;
    }

    .events-page__country {
        text-align: left;
        font-size: 24px;
        line-height: 26px;
    }

    .events-page__search-row {
        grid-template-columns: minmax(0, 1fr) 103px;
        gap: 14px;
        margin-top: 24px;
    }

    .events-page__timeline {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 12px;
        gap: 0;
    }

    .events-page__months {
        gap: 14px;
    }

    .events-page__month,
    .events-page__year {
        min-height: 30px;
        font-size: 13px;
        line-height: 20px;
    }

    .events-page__search-submit {
        display: none;
    }

    .events-page__count {
        margin: 10px 0 8px;
    }

    .events-page .event-card {
        grid-template-columns: 101px minmax(0, 1fr);
        grid-template-rows: auto 1fr auto;
        gap: 0 13px;
        align-items: start;
        padding: 24px 0;
        position: relative;
    }

    .events-page .event-card__media-place,
    .events-page .event-card__action {
        display: contents;
    }

    .events-page .event-card__date {
        grid-column: 1;
        grid-row: 1;
        width: 101px;
        grid-template-columns: 1fr;
        gap: 0;
        align-content: start;
    }

    .events-page .event-card__date-meta {
        display: none;
    }

    .events-page .event-card__preview {
        display: flex;
        grid-column: 1;
        grid-row: 2 / 4;
        width: 101px;
        height: 62px;
        align-self: end;
        border-radius: 5px;
    }

    .events-page .event-card__place {
        grid-column: 2;
        grid-row: 1;
        min-height: 0;
        padding-top: 0;
        padding-right: 40px;
    }

    .events-page .event-card__place h3 {
        font-size: 32px;
        line-height: 33px;
    }

    .events-page .event-card__place p {
        display: none;
    }

    .events-page .event-card__content {
        grid-column: 2;
        grid-row: 2;
        width: auto;
        min-height: 0;
        gap: 8px;
        margin-top: 24px;
    }

    .events-page .event-card__content h4 {
        width: auto;
        font-size: 20px;
        line-height: 26px;
    }

    .events-page .event-card__format {
        min-height: 24px;
    }

    .events-page .event-card__arrow {
        position: absolute;
        top: 24px;
        right: 0;
        width: 27px;
        height: 27px;
        margin: 0;
    }

    .events-page .event-card__button {
        grid-column: 2;
        grid-row: 3;
        min-height: 41px;
        padding: 11px 32px 10px;
        width: fit-content;
        max-width: 100%;
        flex: none;
        justify-self: start;
        margin-top: 16px;
    }

    .contacts-page__layout {
        margin-top: 42px;
        gap: 16px;
    }

    .contacts-page__side {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contacts-page__panel,
    .contacts-page__map-section {
        padding: 24px;
    }

    .contacts-page__panel-head h2,
    .contacts-page__map-head h2,
    .contacts-page__row-copy h3 {
        font-size: 32px;
        line-height: 34px;
    }

    .contacts-page__panel-text,
    .contacts-page__row-copy p:last-child {
        font-size: 18px;
        line-height: 24px;
    }

    .contacts-page__email,
    .contacts-page__phone strong {
        font-size: 26px;
        line-height: 30px;
    }

    .contacts-page__direct {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contacts-page__map-frame {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .events-page__newsletter {
        padding-bottom: 32px;
    }

    .events-page {
        padding: 60px 0 0 0;
    }

    .events-page__shell {
        width: calc(100vw - 32px);
    }

    .events-page__breadcrumbs {
        gap: 16px;
        font-size: 12px;
        line-height: 15px;
    }

    .events-page__hero {
        margin-top: 48px;
    }

    .events-page__title-wrap h1 {
        font-size: 32px;
        line-height: 32px;
    }

    .events-page__intro,
    .events-page__empty {
        font-size: 16px;
        line-height: 20px;
    }

    .events-page__months,
    .events-page__years {
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .events-page__months::-webkit-scrollbar,
    .events-page__years::-webkit-scrollbar {
        display: none;
    }

    .events-page__toolbar,
    .events-page__list {
        width: 100%;
    }

    .events-page__toolbar {
        margin-top: 36px;
    }

    .events-page__search-row {
        grid-template-columns: minmax(0, 1fr) 107px;
        margin-top: 24px;
        gap: 8px;
    }

    .events-page__countries {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, auto);
        grid-auto-flow: column;
        gap: 8px 0;
        align-items: start;
        justify-content: start;
        overflow: visible;
        padding-bottom: 0;
    }

    .events-page__country {
        text-align: left;
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0;
    }

    .events-page__search {
        width: 100%;
    }

    .events-page__search-submit {
        display: none;
    }

    .events-page__city-select {
        width: 107px;
        min-height: 55px;
        padding: 0 24px 0 16px;
    }

    .events-page__city-select::after {
        right: 12px;
    }

    .events-page__city-select select {
        padding-right: 16px;
        font-size: 12px;
        line-height: 15px;
    }

    .events-page__timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-top: 12px;
        width: 100%;
        overflow: hidden;
    }

    .events-page__months {
        width: 100%;
        gap: 14px;
        overflow-x: auto;
    }

    .events-page__years {
        width: 100%;
        justify-content: flex-start;
        gap: 14px;
    }

    .events-page__month,
    .events-page__year {
        min-height: 30px;
        font-size: 12px;
        line-height: 15px;
        font-weight: 700;
        white-space: nowrap;
    }

    .events-page__count {
        margin: 10px 0 9px;
        font-size: 12px;
        line-height: 15px;
    }

    .events-page__newsletter {
        margin-top: 0;
    }

    .content-page,
    .service-page {
        padding: 60px 0;
    }

    .content-page__shell,
    .service-page__shell {
        width: calc(100vw - 32px);
    }

    .content-page__title-wrap h1,
    .service-page__title-wrap h1 {
        font-size: 48px;
        line-height: 48px;
    }

    .content-page__intro,
    .service-page__intro,
    .content-page__content p,
    .content-page__content li,
    .service-card p,
    .service-card li {
        font-size: 18px;
        line-height: 24px;
    }

    .content-page__content h2,
    .content-page__content h3,
    .service-card h2 {
        font-size: 32px;
        line-height: 34px;
    }

    .service-card__email,
    .service-card__phone strong {
        font-size: 26px;
        line-height: 30px;
    }

    .service-card__social-item {
        min-height: 64px;
        padding: 0 18px;
    }

    .service-card__social-item-name {
        font-size: 18px;
        line-height: 24px;
    }

    .service-card__direct {
        flex-direction: column;
        gap: 16px;
    }

    .contacts-page__layout {
        margin-top: 42px;
        gap: 16px;
    }

    .contacts-page__side {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contacts-page__panel,
    .contacts-page__map-section {
        padding: 24px;
    }

    .contacts-page__panel-head h2,
    .contacts-page__map-head h2,
    .contacts-page__row-copy h3 {
        font-size: 32px;
        line-height: 34px;
    }

    .contacts-page__panel-text,
    .contacts-page__row-copy p:last-child {
        font-size: 18px;
        line-height: 24px;
    }

    .contacts-page__email,
    .contacts-page__phone strong {
        font-size: 26px;
        line-height: 30px;
    }

    .contacts-page__direct {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contacts-page__map-frame {
        height: 420px;
    }
}

@media (max-width: 720px) {
    .events-page .event-card {
        grid-template-columns: 78px minmax(0, 1fr);
        grid-template-rows: auto 1fr auto;
        gap: 0 13px;
        align-items: start;
        padding: 24px 0;
        position: relative;
    }

    .events-page .event-card__media-place,
    .events-page .event-card__action {
        display: contents;
    }

    .events-page .event-card__date {
        grid-column: 1;
        grid-row: 1;
        width: 78px;
        grid-template-columns: 1fr;
        gap: 0;
        align-content: start;
    }

    .events-page .event-card__date-meta {
        display: none;
    }

    .events-page .event-card__month {
        font-size: 12px;
        line-height: 13px;
    }

    .events-page .event-card__day {
        font-size: 32px;
        line-height: 32px;
    }

    .events-page .event-card__preview {
        display: flex;
        grid-column: 1;
        grid-row: 2 / 4;
        width: 78px;
        height: 48px;
        align-self: end;
        border-radius: 5px;
    }

    .events-page .event-card__place {
        grid-column: 2;
        grid-row: 1;
        min-height: 0;
        padding-top: 0;
        padding-right: 40px;
    }

    .events-page .event-card__place h3 {
        font-size: 24px;
        line-height: 26px;
    }

    .events-page .event-card__place p {
        display: none;
    }

    .events-page .event-card__content {
        grid-column: 2;
        grid-row: 2;
        width: auto;
        min-height: 0;
        gap: 8px;
        margin-top: 24px;
    }

    .events-page .event-card__content h4 {
        width: auto;
        font-size: 16px;
        line-height: 20px;
    }

    .events-page .event-card__format {
        min-height: 24px;
        font-size: 12px;
        line-height: 15px;
    }

    .events-page .event-card__arrow {
        position: absolute;
        top: 16px;
        right: 0;
        width: 27px;
        height: 27px;
        margin: 0;
    }

    .events-page .event-card__button {
        grid-column: 2;
        grid-row: 3;
        min-height: 36px;
        padding: 11px 32px 10px;
        width: fit-content;
        max-width: 100%;
        flex: none;
        justify-self: start;
        font-size: 12px;
        line-height: 15px;
        margin-top: 16px;
    }
}

@media (max-width: 479px) {
    .events-page__intro,
    .events-page__empty {
        font-size: 16px;
        line-height: 22px;
    }

    .content-page__title-wrap,
    .service-page__title-wrap {
        gap: 14px;
    }

    .content-page__slash,
    .service-page__slash {
        width: 22px;
        height: auto;
    }

    .content-page__title-wrap h1,
    .service-page__title-wrap h1 {
        font-size: 42px;
        line-height: 42px;
    }

    .content-page__intro,
    .service-page__intro,
    .content-page__content p,
    .content-page__content li,
    .service-card p,
    .service-card li {
        font-size: 16px;
        line-height: 22px;
    }

    .content-page__content h2,
    .content-page__content h3,
    .service-card h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .service-card {
        min-height: 0;
        padding: 24px;
    }

    .service-card__email,
    .service-card__phone strong {
        font-size: 22px;
        line-height: 26px;
    }

    .service-card__social-item {
        gap: 12px;
        min-height: 58px;
        padding: 0 14px;
    }

    .service-card__social-item-name {
        font-size: 16px;
        line-height: 22px;
    }

    .service-card__button.button {
        width: 100%;
    }

    .contacts-page__panel,
    .contacts-page__map-section {
        padding: 20px;
    }

    .contacts-page__panel-head h2,
    .contacts-page__map-head h2,
    .contacts-page__row-copy h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .contacts-page__panel-text,
    .contacts-page__row-copy p:last-child {
        font-size: 16px;
        line-height: 22px;
    }

    .contacts-page__email,
    .contacts-page__phone strong {
        font-size: 22px;
        line-height: 26px;
    }

    .contacts-page__social-item {
        min-height: 56px;
        gap: 12px;
        padding: 0 14px;
    }

    .contacts-page__social-item-name {
        font-size: 16px;
        line-height: 22px;
    }

    .contacts-page__button.button {
        width: 100%;
    }

    .contacts-page__map-frame {
        height: 360px;
    }
}

.about-page {
    position: relative;
    background: #f7f7f7;
    color: #202122;
}

.about-page__section {
    overflow: hidden;
}

.about-page__shell {
    width: min(1470px, calc(100vw - 64px));
    margin: 0 auto;
}

.about-page__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: #525252;
    font-size: 13px;
    line-height: 17px;
}

.about-page__breadcrumbs a {
    color: inherit;
}

.about-page__breadcrumbs span[aria-hidden="true"] {
    color: #d4d4d4;
}

.about-page__hero,
.about-page__biography,
.about-page__method {
    position: relative;
}

.about-page__hero-media,
.about-page__hero-media picture,
.about-page__bio-media picture,
.about-page__bio-gallery picture,
.about-page__method-media picture {
    display: block;
}

.about-page__hero-media picture {
    height: 100%;
}

.about-page__hero-media img,
.about-page__bio-media img,
.about-page__bio-gallery img,
.about-page__method-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.about-page__hero {
    margin-top: 20px;
}

.about-page__hero-visual {
    position: relative;
    height: 251px;
    overflow: hidden;
}

.about-page__hero-media {
    height: 100%;
}

.about-page__hero-media img {
    object-fit: cover;
    object-position: center;
}

.about-page__hero-copy {
    position: absolute;
    inset: 0;
    padding: 20px 16px 16px 175px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(30, 31, 33, 0.9) 42%, rgba(61, 61, 61, 0.75) 100%);
}

.about-page__biography h2,
.about-page__method h2,
.about-page__rules h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.about-page__title-heading {
    font-size: 0;
    line-height: 0;
}

.about-page__title-svg,
.about-page__rule-number-svg {
    display: block;
    overflow: visible;
}

.about-page__title-svg {
    width: 100%;
    height: auto;
}

.about-page__rule-number {
    display: flex;
    align-items: flex-start;
    overflow: visible;
}

.about-page__rule-number-svg {
    width: auto;
    height: 100%;
}

.about-page__hero-copy h1 {
    max-width: 185px;
    color: #fff;
    font-size: 24px;
    line-height: 24px;
}

.about-page__hero-accent {
    margin: 12px 0 0;
    color: #fe6702;
    font-size: 11px;
    line-height: 13px;
    font-weight: 700;
}

.about-page__hero-text,
.about-page__bio-copy > p:first-of-type,
.about-page__story p,
.about-page__method-text p {
    margin: 13px 0 0;
    color: #525252;
    font-size: 11px;
    line-height: 13px;
}

.about-page__hero-text {
    max-width: none;
}

.about-page__biography {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    align-items: start;
    margin-top: 9px;
}

.about-page__bio-media {
    min-height: 206px;
    overflow: hidden;
    border-radius: 4px;
}

.about-page__bio-media img,
.about-page__bio-gallery img {
    object-fit: cover;
}

.about-page__bio-copy {
    padding-top: 10px;
}

.about-page__biography h2 {
    width: min(100%, 156px);
    color: #202122;
    font-size: 29px;
    line-height: 29px;
}

.about-page__bio-accent,
.about-page__story p.about-page__story-accent {
    margin: 13px 0 0;
    color: #202122;
    font-size: 11px;
    line-height: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-page__bio-media img {
    border-radius: 10px;
}

.about-page__bio-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-top: 12px;
}

.about-page__bio-gallery picture {
    min-height: 92px;
    overflow: hidden;
    border-radius: 4px;
}

.about-page__story {
    margin-top: 9px;
    padding: 0 4px;
}

.about-page__story-accent {
    margin-top: 18px;
}

.about-page__method {
    margin-top: 22px;
    padding: 26px 8px 0;
    background: linear-gradient(180deg, #fe6702 0 40px, #d4d4d4 40px 100%);
}

.about-page__method-copy,
.about-page__method-side {
    position: relative;
    z-index: 1;
}

.about-page__method h2 {
    width: min(100%, 205px);
    color: #202122;
    font-size: 24px;
    line-height: 24px;
}

.about-page__method-text p + p {
    margin-top: 15px;
}

.about-page__method-accent {
    margin: 16px 0 0;
    color: #202122;
    font-size: 11px;
    line-height: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-page__bio-media_mobile {
    display: none;
}

.about-page__method-media {
    margin-top: 9px;
    overflow: hidden;
    border-radius: 4px;
}

.about-page__method-media img {
    object-fit: cover;
}

.about-page__rules {
    margin-top: 18px;
}

.about-page__rules h2 {
    width: min(100%, 220px);
    margin: 0 8px;
    color: #fe6702;
    font-size: 29px;
    line-height: 29px;
}

.about-page__rules-list {
    margin-top: 10px;
    border-top: 1px solid rgba(32, 33, 34, 0.12);
}

.about-page__rule {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 13px;
    align-items: center;
    min-height: 46px;
    border-bottom: 1px solid rgba(32, 33, 34, 0.12);
}

.about-page__rule-number {
    position: relative;
    height: 24px;
    padding-left: 8px;
    font-size: 23px;
    line-height: 1;
    font-weight: 200;
    background: none;
    color: inherit;
    filter: none;
    opacity: 1;
}

.about-page__rule p {
    margin: 0;
    color: #202122;
    font-size: 11px;
    line-height: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .about-page {
        padding-top: 0;
    }

    .about-page__shell {
        width: calc(100vw - 80px);
    }

    .about-page__breadcrumbs {
        gap: 23px;
        margin: 24px 0 0;
    }

    .about-page__hero {
        margin-top: 48px;
    }

    .about-page__hero-visual {
        width: 100vw;
        height: 464px;
        margin-left: calc(50% - 50vw);
        overflow: hidden;
    }

    .about-page__hero-media {
        width: 100%;
        height: 100%;
        margin-left: 0;
    }

    .about-page__hero-copy {
        inset: 0;
        padding: 51px 42px 0 333px;
        background: linear-gradient(180deg, rgba(32, 33, 34, 0) 0%, #202122 100%);
    }

    .about-page__hero-copy h1 {
        max-width: none;
        font-size: 50px;
        line-height: 50px;
    }

    .about-page__hero-accent {
        width: auto;
        margin-top: 24px;
        font-size: 24px;
        line-height: 26px;
    }

    .about-page__hero-text,
    .about-page__bio-copy > p:first-of-type,
    .about-page__story p,
    .about-page__method-text p {
        margin-top: 0;
        font-size: 20px;
        line-height: 26px;
    }

    .about-page__hero-text {
        max-width: 684px;
        margin: 48px 0 0;
        color: #525252;
    }

    .about-page__biography {
        grid-template-columns: 341px 1fr;
        grid-template-rows: auto auto auto 1fr auto;
        column-gap: 32px;
        row-gap: 16px;
        margin-top: 60px;
    }

    .about-page__bio-media {
        grid-column: 1;
        grid-row: 2 / 5;
        align-self: start;
        min-height: 336px;
        border-radius: 10px;
    }

    .about-page__bio-copy {
        display: contents;
        padding-top: 0;
    }

    .about-page__title-heading--bio {
        grid-column: 1 / -1;
        width: 536px;
    }

    .about-page__biography h2 {
        width: 536px;
        margin-bottom: 30px;
        font-size: 0;
        line-height: 0;
    }

    .about-page__bio-copy > p:first-of-type {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        margin-top: 0;
    }

    .about-page__bio-accent,
    .about-page__story p.about-page__story-accent,
    .about-page__method-accent {
        grid-column: 2;
        margin-top: 18px;
        font-size: 24px;
        line-height: 26px;
    }

    .about-page__hero-media picture {
        height: 100%;
    }

    .about-page__bio-accent {
        margin-top: 8px;
    }

    .about-page__bio-gallery {
        grid-column: 2;
        grid-row: 5;
        gap: 16px;
        margin-top: 5px;
    }

    .about-page__bio-gallery picture {
        height: 154px;
        border-radius: 10px;
    }

    .about-page__story {
        margin-top: 64px;
        padding: 0;
    }

    .about-page__story p:first-child {
        text-indent: 117px;
    }

    .about-page__method {
        margin-top: 72px;
        padding: 70px 0 0;
        display: block;
        align-items: start;
        background: none;
    }

    .about-page__bio-media img {
        height: 336px;
    }

    .about-page__method::before {
        content: "";
        position: absolute;
        inset: 0 auto auto 50%;
        width: 100vw;
        height: 873px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, #fe6702 0%, #d4d4d4 100%);
    }

    .about-page__method-copy {
        width: 100%;
    }

    .about-page__method-side {
        width: 684px;
        margin-top: 48px;
    }

    .about-page__method h2 {
        width: 422px;
        font-size: 50px;
        line-height: 50px;
    }

    .about-page__method-text {
        margin-top: 32px;
    }

    .about-page__method-media {
        margin-top: 24px;
        height: 564px;
        border-radius: 10px;
    }

    .about-page__rules {
        margin-top: 50px;
    }

    .about-page__rules h2 {
        width: 684px;
        margin: 0;
        font-size: 100px;
        line-height: 100px;
    }

    .about-page__rules-list {
        margin-top: 50px;
    }

    .about-page__rule {
        grid-template-columns: 161px 1fr;
        gap: 16px;
        min-height: 95px;
    }

    .about-page__rule-number {
        top: 0;
        display: flex;
        align-items: center;
        padding-left: 0;
        height: 95px;
        filter: none;
        opacity: 1;
    }

    .about-page__rule-number-svg {
        height: 90%;
    }

    .about-page__rule p {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (min-width: 1200px) {
    .about-page {
        padding-top: 43px;
    }

    .about-page__breadcrumbs {
        gap: 23px;
    }

    .about-page__hero {
        height: 464px;
        margin-top: 48px;
    }

    .about-page__hero-visual {
        height: 464px;
        width: 100vw;
        margin-left: min(0px, calc(50% - 50vw));
    }

    .about-page__hero-media {
        height: 464px;
    }

    .about-page__hero-copy {
        padding: 0;
        background: none;
        width: 1470px;
        left: max(0px, calc(50% - 735px));
        right: auto;
    }

    .about-page__hero-copy h1 {
        position: absolute;
        left: 624px;
        top: 10px;
        max-width: none;
        color: #fff;
        font-size: 65px;
        line-height: 65px;
    }

    .about-page__hero-accent {
        position: absolute;
        left: 624px;
        top: 207px;
        width: 565px;
        margin: 0;
        color: #fe6702;
        font-size: 24px;
        line-height: 26px;
        font-weight: 700;
        text-indent: 117px;
    }

    .about-page__hero-text {
        position: absolute;
        left: 710px;
        top: 340px;
        width: 551px;
        max-width: none;
        margin: 0;
        color: #fff;
        font-size: 20px;
        line-height: 26px;
    }

    .about-page__biography {
        display: block;
        height: 568px;
        margin-top: 90px;
    }

    .about-page__bio-media {
        position: absolute;
        left: 33px;
        top: 0;
        width: 576px;
        min-height: 568px;
        border-radius: 10px;
    }

    .about-page__bio-copy {
        padding: 0;
    }

    .about-page__biography h2 {
        position: absolute;
        left: 505px;
        top: 48px;
        width: 536px;
        margin: 0;
        color: #202122;
        font-size: 100px;
        line-height: 100px;
    }

    .about-page__bio-copy > p:first-of-type {
        position: absolute;
        left: 743px;
        top: 188px;
        width: 577px;
        margin: 0;
        color: #525252;
        font-size: 20px;
        line-height: 26px;
    }

    .about-page__bio-accent {
        position: absolute;
        left: 743px;
        top: 290px;
        width: 577px;
        margin: 0;
        color: #202122;
        font-size: 24px;
        line-height: 26px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .about-page__bio-gallery {
        position: absolute;
        left: 625px;
        top: 360px;
        width: 458px;
        margin: 0;
        grid-template-columns: 221px 221px;
        gap: 16px;
    }

    .about-page__bio-gallery picture {
        height: 208px;
        border-radius: 10px;
    }

    .about-page__story {
        margin-top: 104px;
        height: 392px;
        padding: 6px 0 0 119px;
    }

    .about-page__story p {
        margin: 0;
        color: #525252;
        font-size: 20px;
        line-height: 26px;
    }

    .about-page__story p:first-child {
        width: 776px;
        text-indent: 117px;
    }

    .about-page__story p.about-page__story-accent {
        width: 1044px;
        margin: 48px 0 0 117px;
        color: #202122;
        font-size: 24px;
        line-height: 26px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .about-page__method {
        height: 768px;
        margin-top: 72px;
        padding: 0;
        background: none;
    }

    .about-page__method::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 524px;
        background: linear-gradient(180deg, #fe6702 0%, #d4d4d4 100%);
    }

    .about-page__method-copy {
        position: absolute;
        left: 151px;
        top: 70px;
        width: 568px;
    }

    .about-page__method h2 {
        width: 547px;
        color: #202122;
        font-size: 65px;
        line-height: 65px;
    }

    .about-page__method-text {
        margin-top: 32px;
    }

    .about-page__method-text p {
        margin: 0;
        color: #525252;
        font-size: 20px;
        line-height: 26px;
    }

    .about-page__method-text p + p {
        margin-top: 15px;
    }

    .about-page__method-side {
        position: absolute;
        left: 748px;
        top: 70px;
        width: 690px;
    }

    .about-page__method-accent {
        margin: 0;
        color: #202122;
        font-size: 24px;
        line-height: 26px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .about-page__method-media {
        width: 690px;
        height: 568px;
        margin-top: 26px;
        border-radius: 10px;
    }

    .about-page__rules {
        margin-top: -184px;
        padding: 0 32px 128px;
    }

    .about-page__rules h2 {
        width: 867px;
        height: 200px;
        display: flex;
        margin: 0 0 0 119px;
        color: #fe6702;
        font-size: 100px;
        line-height: 100px;
    }

    .about-page__rules-list {
        margin-top: 104px;
        border-top: 1px solid #d4d4d4;
    }

    .about-page__rule {
        grid-template-columns: 458px 1fr;
        gap: 16px;
        min-height: 103px;
        border-bottom: 1px solid #d4d4d4;
    }

    .about-page__rule-number {
        height: 95px;
        overflow: visible;
        padding-left: var(--about-rule-offset, 116px);
        font-size: 100px;
        line-height: 130px;
        filter: none;
        opacity: 1;
    }

    .about-page__rule p {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .about-page__shell {
        position: relative;
        z-index: 1;
        width: calc(100vw - 32px);
        margin: 0 auto 108px;
    }

    .about-page__breadcrumbs {
        margin: 56px 0 0;
        font-size: 12px;
        line-height: 15px;
    }

    .about-page__hero-copy {
        background: none;
    }

    .about-page__hero-media picture {
        height: 100%;
    }

    .about-page__hero {
        margin-top: 36px;
    }

    .about-page__hero-visual {
        width: 100vw;
        height: 376px;
        margin-left: calc(50% - 50vw);
        overflow: hidden;
    }

    .about-page__hero-media {
        width: 100%;
        height: 100%;
        margin-left: 0;
    }

    .about-page__hero-media img {
        object-position: 24% center;
    }

    .about-page__hero-copy {
        inset: 0;
        padding: 67px 16px 0 146px;
    }

    .about-page__hero-copy h1 {
        max-width: 222px;
        text-transform: uppercase;
        font-size: 32px;
        line-height: 32px;
    }

    .about-page__hero-accent {
        margin-top: 16px;
        font-size: 18px;
        line-height: 22px;
    }

    .about-page__hero-text {
        max-width: 343px;
        margin: 24px 0 0;
        color: #202122;
        font-size: 16px;
        line-height: 20px;
    }

    .about-page__biography {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 80px;
    }

    .about-page__bio-media {
        display: none;
        min-height: 338px;
        border-radius: 5px;
    }

    .about-page__bio-media_mobile {
        display: block;
        width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: 5px;
        margin: 30px 0 35px 0;
    }

    .about-page__bio-copy {
        display: block;
        padding-top: 0;
    }

    .about-page__title-heading--bio {
        width: 221px;
        margin: 0 0 18px;
    }

    .about-page__biography h2 {
        width: 100%;
    }

    .about-page__bio-copy > p:first-of-type {
        margin-top: 24px;
        font-size: 16px;
        line-height: 20px;
        color: #202122;
    }

    .about-page__bio-accent {
        margin-top: 24px;
        font-size: 18px;
        line-height: 24px;
    }

    .about-page__bio-gallery {
        gap: 10px;
        margin-top: 24px;
    }

    .about-page__bio-gallery picture {
        min-height: 0;
        height: 158px;
        border-radius: 10px;
    }

    .about-page__story {
        margin-top: 48px;
        padding: 0;
    }

    .about-page__story p {
        font-size: 16px;
        line-height: 20px;
        color: #202122;
    }

    .about-page__story p.about-page__story-accent {
        margin-top: 24px;
        font-size: 18px;
        line-height: 24px;
    }

    .about-page__method {
        margin-top: 34px;
        padding: 48px 0 0;
        background: none;
    }

    .about-page__method::before {
        content: "";
        position: absolute;
        inset: 0 auto auto 50%;
        width: 100vw;
        height: 751px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, #fe6702 0%, #d4d4d4 100%);
    }

    .about-page__method h2 {
        width: 233px;
        font-size: 32px;
        line-height: 32px;
    }

    .about-page__method-text p {
        font-size: 16px;
        line-height: 20px;
        color: #202122;
    }

    .about-page__method-accent {
        margin-top: 24px;
        font-size: 18px;
        line-height: 24px;
    }

    .about-page__method-media {
        margin-top: 24px;
        height: 282px;
        border-radius: 10px;
    }

    .about-page__rules {
        margin-top: 50px;
    }

    .about-page__rules h2 {
        width: 100%;
        margin: 0;
        font-size: 50px;
        line-height: 50px;
    }

    .about-page__rule-number-svg {
        height: 60px;
    }

    .about-page__rules-list {
        margin-top: 28px;
    }

    .about-page__rule {
        grid-template-columns: 98px 1fr;
        gap: 16px;
        min-height: 95px;
    }

    .about-page__rule-number {
        display: flex;
        align-items: center;
        top: 0;
        height: 95px;
        padding-left: 0;
    }

    .about-page__rule p {
        font-size: 18px;
        line-height: 24px;
        font-weight: 700;
    }
}

:where(
  a,
  button,
  input,
  select,
  textarea,
  .newsletter__control,
  .events-page__search,
  .events-page__city-select,
  .search-page__form,
  .product-detail__thumb,
  .book-detail__thumb,
  .service-card__social-item,
  .contacts-page__social-item
) {
    transition: color var(--interactive-duration) var(--interactive-ease),
    background-color var(--interactive-duration) var(--interactive-ease),
    border-color var(--interactive-duration) var(--interactive-ease),
    box-shadow var(--interactive-duration) var(--interactive-ease),
    opacity var(--interactive-duration) var(--interactive-ease),
    transform var(--interactive-duration) var(--interactive-ease),
    filter var(--interactive-duration) var(--interactive-ease);
}

:where(
  .publication-card__arrow,
  .book-card__arrow,
  .product-card__arrow,
  .program-card__arrow,
  .webinar-card__arrow,
  .article-card__arrow,
  .event-card__arrow,
  .news-card__arrow,
  .programs-overview-card__arrow,
  .products-overview-card__arrow,
  .books-overview-card__arrow,
  .about__more img,
  .club__more img,
  .news__all img,
  .materials__link img,
  .consultation__submit img,
  .consultation__icons img,
  .not-found-page__link img,
  .materials-section-nav__link img,
  .program-detail__back-arrow,
  .materials-detail-back-link__arrow,
  .social-links svg,
  .publication-single__share-link svg
) {
    transition: transform var(--interactive-duration) var(--interactive-ease),
    filter var(--interactive-duration) var(--interactive-ease),
    opacity var(--interactive-duration) var(--interactive-ease);
}

:where(
  .publication-card__media,
  .book-card__cover,
  .product-card__poster,
  .program-card__poster,
  .webinar-card__poster,
  .programs-overview-card__media,
  .products-overview-card__media,
  .books-overview-card__media,
  .webinars-overview-card__media,
  .materials-card__visual,
  .product-detail__thumb img,
  .book-detail__thumb img,
  .publication-card__body h2,
  .book-card__body h2,
  .product-card__subtitle,
  .program-card__subtitle,
  .webinar-card__subtitle,
  .programs-overview-card__copy h2,
  .products-overview-card__copy h2,
  .books-overview-card__copy h2,
  .webinars-overview-card__copy h2,
  .search-result-card__top h2,
  .materials-card__body h3,
  .event-card__content h4,
  .event-card__place h3,
  .article-card__body h3
) {
    transition: color var(--interactive-duration) var(--interactive-ease),
    box-shadow var(--interactive-duration) var(--interactive-ease),
    transform var(--interactive-duration) var(--interactive-ease),
    filter var(--interactive-duration) var(--interactive-ease);
}

.event-card__preview img,
.books-overview-card__media img {
    transition: transform var(--interactive-duration) var(--interactive-ease);
}

.service-card__email,
.service-card__social-item-name,
.contacts-page__email,
.contacts-page__social-item-name {
    transition: color var(--interactive-duration) var(--interactive-ease),
    transform var(--interactive-duration) var(--interactive-ease);
}

.newsletter__control,
.events-page__search,
.events-page__city-select,
.search-page__form {
    transition: border-color var(--interactive-duration) var(--interactive-ease),
    box-shadow var(--interactive-duration) var(--interactive-ease);
}

.newsletter__submit,
.events-page__search-submit,
.search-page__submit,
.consultation__submit {
    transition: background var(--interactive-duration) var(--interactive-ease),
    color var(--interactive-duration) var(--interactive-ease),
    transform var(--interactive-duration) var(--interactive-ease),
    box-shadow var(--interactive-duration) var(--interactive-ease);
}

.consultation__fields input {
    transition: border-color var(--interactive-duration) var(--interactive-ease),
    box-shadow var(--interactive-duration) var(--interactive-ease);
}

.newsletter__field input,
.events-page__search-field input,
.search-page__input {
    transition: color var(--interactive-duration) var(--interactive-ease);
}

:where(a, button, input, select, textarea):focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

:where(
  .newsletter__field input,
  .events-page__search-field input,
  .search-page__input,
  .events-page__city-select select,
  .consultation__fields input
):focus-visible {
    outline: none;
}

:where(
  .newsletter__control,
  .events-page__search,
  .events-page__city-select,
  .search-page__form
):focus-within {
    border-color: #a1a1a1;
    box-shadow: 0 0 0 1px rgba(161, 161, 161, 0.55);
}

:where(
  .newsletter__field input,
  .events-page__search-field input,
  .search-page__input,
  .events-page__city-select select
):focus {
    color: #202122;
}

.product-detail__button--pink:hover,
.book-detail__button--pink:hover {
    transition: all .2s ease;
    background: #AF3571FF;
}

.product-detail__button--blue:hover,
.book-detail__button--blue:hover {
    transition: all .2s ease;
    background: #415CB9FF;
}

.product-detail__thumb.is-active,
.book-detail__thumb.is-active {
    border-color: #fe6702;
}

@media (hover: hover) and (pointer: fine) {
    :is(
    .newsletter__control,
    .events-page__search,
    .events-page__city-select,
    .search-page__form
  ):hover {
        border-color: #a1a1a1;
    }

    .consultation__fields input:hover {
        border-color: #a1a1a1;
    }

    :is(
    .button--dark,
    .event-card__button,
    .consultation__submit,
    .book-single__button--dark,
    .product-single__button--dark,
    .program-single__button--dark,
    .webinar-single__button--dark,
    .program-detail__button--primary,
    .webinars-overview-card__button
  ):hover,
    :is(
    .button--dark,
    .event-card__button,
    .consultation__submit,
    .book-single__button--dark,
    .product-single__button--dark,
    .program-single__button--dark,
    .webinar-single__button--dark,
    .program-detail__button--primary,
    .webinars-overview-card__button
  ):focus-visible {
        background: #fe6702;
        color: #fff;
        box-shadow: var(--interactive-shadow-soft);
    }

    :is(
    .about__more:hover,
    .about__more:focus-visible,
    .club__more:hover,
    .club__more:focus-visible,
    .news__all:hover,
    .news__all:focus-visible,
    .events__all-link:hover,
    .events__all-link:focus-visible,
    .materials__link:hover,
    .materials__link:focus-visible
  ) {
    }

    :is(.about__more:hover span, .about__more:focus-visible span) {
        color: #fe6702;
    }

    :is(
    .event-page__status-button--accent,
    .lab-club-page__button
  ):hover,
    :is(
    .event-page__status-button--accent,
    .lab-club-page__button
  ):focus-visible {
        background: #202122;
        color: #fff;
        box-shadow: var(--interactive-shadow-soft);
    }

    .newsletter__submit:hover,
    .newsletter__submit:focus-visible {
        box-shadow: var(--interactive-shadow-soft);
    }

    .events-page__search:focus-within .events-page__search-submit,
    .search-page__form:focus-within .search-page__submit {
        background: #d4d4d4;
    }

    .events-page__search-submit:hover,
    .events-page__search-submit:focus-visible,
    .search-page__submit:hover,
    .search-page__submit:focus-visible {
        box-shadow: var(--interactive-shadow-soft);
    }

    :is(
    .event-page__map-button,
    .book-single__button--light,
    .product-single__button--light,
    .program-single__button--light,
    .webinar-single__button--light,
    .program-detail__button--secondary
  ):hover,
    :is(
    .event-page__map-button,
    .book-single__button--light,
    .product-single__button--light,
    .program-single__button--light,
    .webinar-single__button--light,
    .program-detail__button--secondary
  ):focus-visible {
        border-color: #fe6702;
        background: rgba(254, 103, 2, 0.04);
        color: #fe6702;
        /*box-shadow: var(--interactive-shadow-soft);*/
    }

    .book-detail__option:hover,
    .book-detail__option:focus-visible {
        border-color: #202122;
        background: #202122;
        color: #fff;
    }

    :is(
    .product-detail__button--pink,
    .book-detail__button--pink,
    .product-detail__button--blue,
    .book-detail__button--blue
  ):hover,
    :is(
    .product-detail__button--pink,
    .book-detail__button--pink,
    .product-detail__button--blue,
    .book-detail__button--blue
  ):focus-visible {
        box-shadow: none;
    }

    :is(
    .publication-card__link,
    .book-card__link,
    .product-card__link,
    .program-card__link,
    .webinar-card__link,
    .programs-overview-card__link,
    .products-overview-card__link,
    .books-overview-card__link,
    .search-result-card__link,
    .news-card
  ):hover,
    :is(
    .publication-card__link,
    .book-card__link,
    .product-card__link,
    .program-card__link,
    .webinar-card__link,
    .programs-overview-card__link,
    .products-overview-card__link,
    .books-overview-card__link,
    .search-result-card__link,
    .news-card
  ):focus-visible {
    }

    .materials-card:hover .materials-card__layer,
    .materials-card:focus-visible .materials-card__layer {
        transform: scale(1.05);
    }

    /*:is(*/
    /*  .publication-card__link:hover .publication-card__media,*/
    /*  .publication-card__link:focus-visible .publication-card__media,*/
    /*  .book-card__link:hover .book-card__cover,*/
    /*  .book-card__link:focus-visible .book-card__cover,*/
    /*  .product-card__link:hover .product-card__poster,*/
    /*  .product-card__link:focus-visible .product-card__poster,*/
    /*  .program-card__link:hover .program-card__poster,*/
    /*  .program-card__link:focus-visible .program-card__poster,*/
    /*  .webinar-card__link:hover .webinar-card__poster,*/
    /*  .webinar-card__link:focus-visible .webinar-card__poster,*/
    /*  .programs-overview-card__link:hover .programs-overview-card__media,*/
    /*  .programs-overview-card__link:focus-visible .programs-overview-card__media,*/
    /*  .products-overview-card__link:hover .products-overview-card__media,*/
    /*  .products-overview-card__link:focus-visible .products-overview-card__media,*/
    /*  .webinars-overview-card:hover .webinars-overview-card__media,*/
    /*  .news-card:hover .news-card__media,*/
    /*  .news-card:focus-visible .news-card__media*/
    /*) {*/
    /*  box-shadow: var(--interactive-shadow);*/
    /*}*/
    :is(
    .publication-card__link:hover .publication-card__body h2,
    .publication-card__link:focus-visible .publication-card__body h2,
    .book-card__link:hover .book-card__body h2,
    .book-card__link:focus-visible .book-card__body h2,
    .search-result-card__link:hover .search-result-card__top h2,
    .search-result-card__link:focus-visible .search-result-card__top h2,
    .programs-overview-card__link:hover .programs-overview-card__copy h2,
    .programs-overview-card__link:focus-visible .programs-overview-card__copy h2,
    .products-overview-card__link:hover .products-overview-card__copy h2,
    .products-overview-card__link:focus-visible .products-overview-card__copy h2,
    .books-overview-card__link:hover .books-overview-card__copy h2,
    .books-overview-card__link:focus-visible .books-overview-card__copy h2,
    .webinars-overview-card__link:hover .webinars-overview-card__copy h2,
    .webinars-overview-card__link:focus-visible .webinars-overview-card__copy h2,
    .webinars-overview-card:hover .webinars-overview-card__copy h2,
    .materials-card:hover .materials-card__body h3,
    .materials-card:focus-visible .materials-card__body h3,
    .news-card:hover .news-card__body h3,
    .news-card:focus-visible .news-card__body h3,
    .event-card:hover .event-card__content h4,
    .event-card:hover .event-card__place h3,
    .article-card:hover .article-card__body h3
  ) {
        color: #fe6702;
    }

    .event-card:hover .event-card__preview img {
        transform: scale(1.08);
    }

    :is(
    .publication-card__media img,
    .publication-card__media img,
    .books-overview-card__media img,
    .books-overview-card__media img,
    .news-card__media img,
    .news-card__media img
  ) {
        transition: all .2s ease;
    }

    .products-overview-card__link .products-overview-card__media img,
    .programs-overview-card__link .programs-overview-card__media img{
        transition: all .2s ease;
    }

    :is(
    .programs-overview-card__link:hover .programs-overview-card__media img,
    .programs-overview-card__link:focus-visible .programs-overview-card__media img,
    .products-overview-card__link:hover .products-overview-card__media img,
    .products-overview-card__link:focus-visible .products-overview-card__media img,
    .webinars-overview-card__link:hover .webinars-overview-card__media img,
    .webinars-overview-card__link:focus-visible .webinars-overview-card__media img,
    .publication-card__link:hover .publication-card__media img,
    .publication-card__link:focus-visible .publication-card__media img,
    .books-overview-card__link:hover .books-overview-card__media img,
    .books-overview-card__link:focus-visible .books-overview-card__media img,
    .news-card:hover .news-card__media img,
    .news-card:focus-visible .news-card__media img
  ) {
        transition: all .2s ease;
        transform: scale(1.05);
    }

    .event-card:hover {
        cursor: pointer;
    }

    .event-card:hover .event-card__arrow {
        transform: rotate(45deg);
    }

    :is(
    .product-card__link:hover .product-card__subtitle,
    .product-card__link:focus-visible .product-card__subtitle,
    .program-card__link:hover .program-card__subtitle,
    .program-card__link:focus-visible .program-card__subtitle,
    .webinar-card__link:hover .webinar-card__subtitle,
    .webinar-card__link:focus-visible .webinar-card__subtitle
  ) {
        color: #fe6702;
    }

    :is(
    .publication-card__link:hover .publication-card__arrow,
    .publication-card__link:focus-visible .publication-card__arrow,
    .book-card__link:hover .book-card__arrow,
    .book-card__link:focus-visible .book-card__arrow,
    .product-card__link:hover .product-card__arrow,
    .product-card__link:focus-visible .product-card__arrow,
    .program-card__link:hover .program-card__arrow,
    .program-card__link:focus-visible .program-card__arrow,
    .webinar-card__link:hover .webinar-card__arrow,
    .webinar-card__link:focus-visible .webinar-card__arrow,
    .programs-overview-card__link:hover .programs-overview-card__arrow,
    .programs-overview-card__link:focus-visible .programs-overview-card__arrow,
    .products-overview-card__link:hover .products-overview-card__arrow,
    .products-overview-card__link:focus-visible .products-overview-card__arrow,
    .books-overview-card__link:hover .books-overview-card__arrow,
    .books-overview-card__link:focus-visible .books-overview-card__arrow,
    .news-card:hover .news-card__arrow,
    .news-card:focus-visible .news-card__arrow,
    .article-card:hover .article-card__arrow,
    .about__more:hover img,
    .about__more:focus-visible img,
    .club__more:hover img,
    .club__more:focus-visible img,
    .news__all:hover img,
    .news__all:focus-visible img,
    .materials__link:hover img,
    .materials__link:focus-visible img,
    .consultation__submit:hover img,
    .consultation__submit:focus-visible img,
    .not-found-page__link:hover img,
    .not-found-page__link:focus-visible img
  ) {
        transform: rotate(45deg);
    }

    :is(
    .materials-section-nav__link:hover,
    .materials-section-nav__link:focus-visible,
    .program-detail__back-link:hover,
    .program-detail__back-link:focus-visible,
    .materials-detail-back-link:hover,
    .materials-detail-back-link:focus-visible,
    .about__more:hover,
    .about__more:focus-visible,
    .club__more:hover,
    .club__more:focus-visible,
    .news__all:hover,
    .news__all:focus-visible,
    .events__all-link:hover,
    .events__all-link:focus-visible,
    .materials__link:hover,
    .materials__link:focus-visible,
    .footer-menu a:hover,
    .footer-menu a:focus-visible,
    .footer-contact-link:hover,
    .footer-contact-link:focus-visible,
    .site-footer__stack a:hover,
    .site-footer__stack a:focus-visible,
    .site-footer__top:hover,
    .site-footer__top:focus-visible,
    .lab-club-page__aside-note a:hover,
    .lab-club-page__aside-note a:focus-visible,
    .publication-archive__filter:not(.is-active):hover,
    .publication-archive__filter:not(.is-active):focus-visible,
    .events-page__country:not(.is-active):hover,
    .events-page__country:not(.is-active):focus-visible,
    .events-page__month:not(.is-active):hover,
    .events-page__month:not(.is-active):focus-visible,
    .events-page__year:not(.is-active):hover,
    .events-page__year:not(.is-active):focus-visible
  ) {
        color: #fe6702;
    }

    :is(
    .materials-section-nav__link:hover img,
    .materials-section-nav__link:focus-visible img
  ) {
        transform: rotate(45deg);
    }

    :is(
    .program-detail__back-link:hover .program-detail__back-arrow,
    .program-detail__back-link:focus-visible .program-detail__back-arrow,
    .materials-detail-back-link:hover .materials-detail-back-link__arrow,
    .materials-detail-back-link:focus-visible .materials-detail-back-link__arrow
  ) {
        transform: translate3d(-4px, 0, 0);
    }

    :is(
    .menu-list a:hover,
    .menu-list a:focus-visible,
    .lang-switch .lang-switch__text:not(.active):hover,
    .lang-switch .lang-switch__text:not(.active):focus-visible,
    .site-header__search:hover,
    .site-header__search:focus-visible,
    .site-header__menu-button:hover,
    .site-header__menu-button:focus-visible
  ) {
        color: #fe6702;
    }

    :is(.site-header__search:hover, .site-header__search:focus-visible) {
    }

    :is(.social-links a:hover, .social-links a:focus-visible, .publication-single__share-link:hover, .publication-single__share-link:focus-visible) {
        color: #fe6702;
    }

    :is(.social-links a:hover svg, .social-links a:focus-visible svg, .publication-single__share-link:hover svg, .publication-single__share-link:focus-visible svg) {
    }

    :is(.consultation__icons a:hover, .consultation__icons a:focus-visible) {
        filter: brightness(0) saturate(100%) invert(49%) sepia(98%) saturate(2705%) hue-rotate(2deg) brightness(106%) contrast(102%);
    }

    :is(.consultation__icons a:hover img, .consultation__icons a:focus-visible img) {
        filter: brightness(0) saturate(100%) invert(49%) sepia(98%) saturate(2705%) hue-rotate(2deg) brightness(106%) contrast(102%);
    }

    :is(.product-detail__thumb:hover, .product-detail__thumb:focus-visible, .book-detail__thumb:hover, .book-detail__thumb:focus-visible) {
        border-color: #fe6702;
        box-shadow: var(--interactive-shadow-soft);
    }

    :is(.product-detail__gallery-main:hover, .product-detail__gallery-main:focus-visible, .book-detail__gallery-main:hover, .book-detail__gallery-main:focus-visible) {
        box-shadow: var(--interactive-shadow-soft);
        transform: translateY(-2px);
    }

    :is(.product-detail__gallery-main:hover img, .product-detail__gallery-main:focus-visible img, .book-detail__gallery-main:hover img, .book-detail__gallery-main:focus-visible img) {
        transform: scale(1.02);
    }

    :is(.product-detail__lightbox-nav:hover, .product-detail__lightbox-nav:focus-visible, .book-detail__lightbox-nav:hover, .book-detail__lightbox-nav:focus-visible) {
        background: rgba(254, 103, 2, 0.92);
        transform: translateY(-1px);
    }

    :is(.product-detail__thumb:hover img, .book-detail__thumb:hover img) {
        transform: scale(1.03);
    }

    :is(.service-card__email:hover, .service-card__email:focus-visible) {
        color: #fe6702;
    }

    :is(.service-card__social-item:hover, .service-card__social-item:focus-visible) {
        border-color: #fe6702;
        box-shadow: var(--interactive-shadow-soft);
        transform: translateY(-1px);
    }

    :is(.service-card__social-item:hover .service-card__social-item-name, .service-card__social-item:focus-visible .service-card__social-item-name) {
        color: #fe6702;
    }

    :is(.contacts-page__email:hover, .contacts-page__email:focus-visible) {
        color: #fe6702;
    }

    :is(.contacts-page__social-item:hover, .contacts-page__social-item:focus-visible) {
        border-color: #fe6702;
        box-shadow: var(--interactive-shadow-soft);
        transform: translateY(-1px);
    }

    :is(.contacts-page__social-item:hover .contacts-page__social-item-name, .contacts-page__social-item:focus-visible .contacts-page__social-item-name) {
        color: #fe6702;
    }
}

/* ——— Form loading states ——— */

.newsletter__submit.is-loading,
.consultation__submit.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

/* ——— Result Modal ——— */

.result-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--interactive-duration) var(--interactive-ease),
    visibility var(--interactive-duration) var(--interactive-ease);
}

.result-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.result-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border: 0;
    padding: 0;
    cursor: pointer;
}

.result-modal__card {
    position: relative;
    width: 458px;
    max-width: 100%;
    background: var(--surface);
    border-radius: 10px;
    padding: 60px 54px 50px;
    text-align: center;
    transform: translateY(12px) scale(0.97);
    transition: transform var(--interactive-duration) var(--interactive-ease);
}

.result-modal.is-open .result-modal__card {
    transform: translateY(0) scale(1);
}

.result-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: opacity var(--interactive-duration) var(--interactive-ease);
}

.result-modal__close:hover {
    opacity: 0.6;
}

.result-modal__close svg {
    width: 22px;
    height: 22px;
}

.result-modal__title {
    margin: 0 0 15px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--ink);
}

.result-modal__text {
    margin: 0;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--muted);
}

@media (max-width: 480px) {
    .result-modal__card {
        padding: 48px 28px 36px;
    }

    .result-modal__title {
        font-size: 20px;
    }

    .result-modal__text {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    :where(
    a,
    button,
    input,
    select,
    textarea,
    .newsletter__control,
    .events-page__search,
    .events-page__city-select,
    .search-page__form,
    .product-detail__gallery-main,
    .book-detail__gallery-main,
    .product-detail__thumb,
    .book-detail__thumb,
    .product-detail__lightbox-nav,
    .book-detail__lightbox-nav,
    .service-card__social-item,
    .contacts-page__social-item,
    .publication-card__arrow,
    .book-card__arrow,
    .product-card__arrow,
    .program-card__arrow,
    .webinar-card__arrow,
    .article-card__arrow,
    .event-card__arrow,
    .programs-overview-card__arrow,
    .products-overview-card__arrow,
    .books-overview-card__arrow,
    .materials__link img,
    .not-found-page__link img,
    .materials-section-nav__link img,
    .program-detail__back-arrow,
    .materials-detail-back-link__arrow,
    .social-links svg,
    .publication-single__share-link svg
  ) {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ============================================================
   Desktop breadcrumb spacing — all pages
   Placed at END of file so these overrides win the cascade.
   Breadcrumbs own padding is the SOLE source of spacing.
   ============================================================ */
@media (min-width: 1261px) {
    /* Breadcrumb padding = sole spacing source */
    nav[class*="__breadcrumbs"] {
        padding-top: 33px;
        padding-bottom: 55px;
        margin-top: 0;
        margin-bottom: 0;
    }

    /* --- Zero parent section padding-top --- */
    .search-page,
    .publication-archive,
    .publication-single,
    .events-page,
    .lab-club-page,
    .programs-overview,
    .program-detail,
    .webinars-overview,
    .products-overview,
    .product-detail,
    .books-overview,
    .book-detail,
    .content-page,
    .service-page,
    .books-page,
    .book-single,
    .products-page,
    .product-single,
    .webinars-page,
    .webinar-single,
    .about-page {
        padding-top: 0;
    }

    /* --- Zero next-element margin-top after breadcrumbs --- */
    .publication-archive__intro,
    .publication-single__hero-media-wrap,
    .events-page__hero,
    .lab-club-page__hero,
    .programs-overview__hero,
    .webinars-overview__hero,
    .products-overview__hero,
    .books-overview__hero,
    .book-detail__layout,
    .content-page__hero,
    .service-page__hero,
    .book-single__hero-grid,
    .product-single__hero-grid,
    .webinar-single__hero-grid,
    .about-page__hero {
        margin-top: 0;
    }
}

/* ============================
   Breadcrumb separator: SVG slash
   ============================ */
[class*="__breadcrumbs"] > span[aria-hidden="true"] {
    font-size: 0;
    display: inline-block;
    width: 11px;
    height: 19px;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='19' viewBox='0 0 11 19' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M7.798 0h2.807L3.431 18.714H.624L7.798 0Z' fill='%23D4D4D4'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Crect width='10.917' height='18.714' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat center / contain;
}

/* ============================================================
   Front Page Events Rebuild
   Fully isolated home page event card component.
   ============================================================ */

.front-page .events .event-list {
    width: 100%;
}

:is(.front-page .events, .events-page) .home-event-card {
    position: relative;
    display: grid;
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid rgba(32, 33, 34, 0.14);
    color: #202122;
    cursor: pointer;
}

:is(.front-page .events, .events-page) .home-event-card[hidden] {
    display: none;
}

:is(.front-page .events, .events-page) .home-event-card__date,
:is(.front-page .events, .events-page) .home-event-card__place,
:is(.front-page .events, .events-page) .home-event-card__content {
    min-width: 0;
}

:is(.front-page .events, .events-page) .home-event-card__date-block {
    display: grid;
    align-content: start;
    gap: 8px;
}

:is(.front-page .events, .events-page) .home-event-card__month {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
    text-align: center;
}

:is(.front-page .events, .events-page) .home-event-card__day {
    display: block;
    color: #202122;
    font-size: 65px;
    font-weight: 700;
    line-height: 65px;
    text-align: center;
}

:is(.front-page .events, .events-page) .home-event-card__date-meta {
    display: grid;
    gap: 3px;
    color: #525252;
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
}

:is(.front-page .events, .events-page) .home-event-card__media {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f3f3;
}

:is(.front-page .events, .events-page) .home-event-card__media.is-empty {
    display: none;
}

:is(.front-page .events, .events-page) .home-event-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--interactive-duration) var(--interactive-ease);
}

:is(.front-page .events, .events-page) .home-event-card__place h3,
:is(.front-page .events, .events-page) .home-event-card__content h4 {
    margin: 0;
    overflow-wrap: anywhere;
    transition: color var(--interactive-duration) var(--interactive-ease),
    transform var(--interactive-duration) var(--interactive-ease);
}

:is(.front-page .events, .events-page) .home-event-card__place h3 {
    color: #202122;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.04em;
}

:is(.front-page .events, .events-page) .home-event-card__place p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    color: #525252;
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
}

:is(.front-page .events, .events-page) .home-event-card__pin {
    display: inline-flex;
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
}

:is(.front-page .events, .events-page) .home-event-card__pin img {
    display: block;
    width: 100%;
    height: 100%;
}

:is(.front-page .events, .events-page) .home-event-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

:is(.front-page .events, .events-page) .home-event-card__content h4 {
    color: #202122;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}

:is(.front-page .events, .events-page) .home-event-card__format {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 55px;
    background: #fff;
    color: #525252;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
}

:is(.front-page .events, .events-page) .home-event-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 41px;
    padding: 11px 32px 10px;
    border: 1px solid #202122;
    border-radius: 5px;
    background: #202122;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background var(--interactive-duration) var(--interactive-ease),
    color var(--interactive-duration) var(--interactive-ease),
    border-color var(--interactive-duration) var(--interactive-ease),
    transform var(--interactive-duration) var(--interactive-ease),
    box-shadow var(--interactive-duration) var(--interactive-ease);
}

:is(.front-page .events, .events-page) .home-event-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56.5px;
    height: 56.5px;
    transition: transform var(--interactive-duration) var(--interactive-ease);
}

:is(.front-page .events, .events-page) .home-event-card__arrow img {
    display: block;
    width: 100%;
    height: 100%;
}

:is(.front-page .events, .events-page) .home-event-card--sold-out .home-event-card__button {
    border-color: #d4d4d4;
    background: #d4d4d4;
    color: #fff;
}

:is(.front-page .events, .events-page) .home-event-card--soon .home-event-card__button {
    border-color: #d4d4d4;
    background: #fff;
    color: #a1a1a1;
}

@media (hover: hover) and (pointer: fine) {
    :is(.front-page .events, .events-page) .home-event-card:hover .home-event-card__place h3,
    :is(.front-page .events, .events-page) .home-event-card:hover .home-event-card__content h4,
    :is(.front-page .events, .events-page) .home-event-card:focus-visible .home-event-card__place h3,
    :is(.front-page .events, .events-page) .home-event-card:focus-visible .home-event-card__content h4 {
        color: #fe6702;
    }

    :is(.front-page .events, .events-page) .home-event-card:hover .home-event-card__media img,
    :is(.front-page .events, .events-page) .home-event-card:focus-visible .home-event-card__media img {
        transform: scale(1.06);
    }

    :is(.front-page .events, .events-page) .home-event-card:hover .home-event-card__arrow,
    :is(.front-page .events, .events-page) .home-event-card:focus-visible .home-event-card__arrow {
        transform: rotate(45deg);
    }

    :is(.front-page .events, .events-page) .home-event-card__button:hover,
    :is(.front-page .events, .events-page) .home-event-card__button:focus-visible {
        background: #fe6702;
        border-color: #fe6702;
        color: #fff;
        box-shadow: var(--interactive-shadow-soft);
    }

    :is(.front-page .events, .events-page) .home-event-card--sold-out .home-event-card__button:hover,
    :is(.front-page .events, .events-page) .home-event-card--sold-out .home-event-card__button:focus-visible {
        background: #d4d4d4;
        border-color: #d4d4d4;
        color: #fff;
        box-shadow: none;
    }

    :is(.front-page .events, .events-page) .home-event-card--soon .home-event-card__button:hover,
    :is(.front-page .events, .events-page) .home-event-card--soon .home-event-card__button:focus-visible {
        background: #fff;
        border-color: #d4d4d4;
        color: #a1a1a1;
        box-shadow: none;
    }
}

@media (min-width: 1403px) {
    .front-page .events .container,
    .events-page__list {
        width: min(1403px, calc(100vw - 32px));
    }

    :is(.front-page .events, .events-page) .home-event-card {
        grid-template-columns: 221px 221px 337px 338px 218px;
        column-gap: 17px;
        align-items: center;
    }

    :is(.front-page .events, .events-page) .home-event-card__date {
        grid-column: 1;
        grid-row: 1;
        display: grid;
        grid-template-columns: 64px 71px;
        gap: 19px;
        align-items: center;
        width: 221px;
    }

    :is(.front-page .events, .events-page) .home-event-card__media {
        grid-column: 2;
        grid-row: 1;
        width: 221px;
        height: 136px;
    }

    :is(.front-page .events, .events-page) .home-event-card__place {
        grid-column: 3;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 136px;
        padding-top: 3px;
    }

    :is(.front-page .events, .events-page) .home-event-card__place p {
        width: 230px;
    }

    :is(.front-page .events, .events-page) .home-event-card__content {
        grid-column: 4;
        grid-row: 1;
        min-height: 136px;
    }

    :is(.front-page .events, .events-page) .home-event-card__button {
        grid-column: 5;
        grid-row: 1;
        justify-self: end;
        align-self: end;
        white-space: nowrap;
    }

    :is(.front-page .events, .events-page) .home-event-card__arrow {
        grid-column: 5;
        grid-row: 1;
        position: static;
        justify-self: end;
        align-self: start;
    }

    :is(.front-page .events, .events-page) .home-event-card--no-preview {
        grid-template-columns: 221px 0 558px 338px 218px;
    }

    :is(.front-page .events, .events-page) .home-event-card--no-preview .home-event-card__place {
        grid-column: 2 / 4;
    }
}

@media (min-width: 768px) and (max-width: 1402px) {
    .front-page .events .container,
    .events-page__list {
        width: calc(100vw - 80px);
    }

    :is(.front-page .events, .events-page) .home-event-card {
        grid-template-columns: 101px minmax(0, 1fr);
        grid-template-areas:
      "date place"
      "media content"
      ". button";
        column-gap: 14px;
        row-gap: 16px;
        align-items: start;
    }

    :is(.front-page .events, .events-page) .home-event-card__date {
        grid-area: date;
        display: block;
    }

    :is(.front-page .events, .events-page) .home-event-card__date-meta,
    :is(.front-page .events, .events-page) .home-event-card__place p {
        display: none;
    }

    :is(.front-page .events, .events-page) .home-event-card__media {
        grid-area: media;
        width: 101px;
        height: 62px;
        border-radius: 5px;
        align-self: end;
    }

    :is(.front-page .events, .events-page) .home-event-card__place {
        grid-area: place;
        padding-right: 56px;
    }

    :is(.front-page .events, .events-page) .home-event-card__place h3 {
        font-size: 32px;
        line-height: 33px;
    }

    :is(.front-page .events, .events-page) .home-event-card__content {
        grid-area: content;
        gap: 13px;
        max-width: 573px;
    }

    :is(.front-page .events, .events-page) .home-event-card__button {
        grid-area: button;
        align-self: start;
        justify-self: start;
        white-space: nowrap;
    }

    :is(.front-page .events, .events-page) .home-event-card__arrow {
        position: absolute;
        top: 24px;
        right: 0;
        width: 27px;
        height: 27px;
    }

    :is(.front-page .events, .events-page) .home-event-card--no-preview {
        grid-template-areas:
      "date place"
      ". content"
      ". button";
    }
}

@media (max-width: 767px) {
    .club__band_mobile .club__phone_mobile img {
        max-width: 70%;
        margin: 0 auto;
    }

    .club__band_mobile .club__benefits_mobile {
        align-items: center;
    }

    .club__title-row,
    .club__title-row .club__title-row--bottom {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .front-page .events .container,
    .events-page__list {
        width: calc(100vw - 32px);
    }

    :is(.front-page .events, .events-page) .home-event-card {
        grid-template-columns: 78px minmax(0, 1fr);
        grid-template-areas:
      "date place"
      "media content"
      ". button";
        column-gap: 14px;
        row-gap: 12px;
        align-items: start;
    }

    :is(.front-page .events, .events-page) .home-event-card__date {
        grid-area: date;
        display: block;
    }

    :is(.front-page .events, .events-page) .home-event-card__date-meta,
    :is(.front-page .events, .events-page) .home-event-card__place p {
        display: none;
    }

    :is(.front-page .events, .events-page) .home-event-card__month {
        font-size: 12px;
        line-height: 13px;
    }

    :is(.front-page .events, .events-page) .home-event-card__day {
        font-size: 32px;
        line-height: 32px;
        letter-spacing: normal;
    }

    :is(.front-page .events, .events-page) .home-event-card__media {
        grid-area: media;
        width: 78px;
        height: 48px;
        border-radius: 5px;
        align-self: end;
    }

    :is(.front-page .events, .events-page) .home-event-card__place {
        grid-area: place;
        padding-right: 34px;
    }

    :is(.front-page .events, .events-page) .home-event-card__place h3 {
        font-size: 24px;
        line-height: 26px;
    }

    :is(.front-page .events, .events-page) .home-event-card__content {
        grid-area: content;
        gap: 10px;
    }

    :is(.front-page .events, .events-page) .home-event-card__content h4 {
        font-size: 16px;
        line-height: 20px;
    }

    :is(.front-page .events, .events-page) .home-event-card__format {
        font-size: 12px;
        line-height: 15px;
    }

    :is(.front-page .events, .events-page) .home-event-card__button {
        grid-area: button;
        min-height: 36px;
        padding: 10px 27px 9px;
        font-size: 12px;
        line-height: 15px;
        white-space: nowrap;
    }

    :is(.front-page .events, .events-page) .home-event-card__arrow {
        position: absolute;
        top: 24px;
        right: 0;
        width: 27px;
        height: 27px;
    }

    :is(.front-page .events, .events-page) .home-event-card--no-preview {
        grid-template-areas:
      "date place"
      ". content"
      ". button";
    }
}

@media (min-width: 721px) and (max-width: 767px) {
    .club__band_mobile .club__benefits_mobile {
        align-items: flex-start;
    }
}

@media (min-width: 720px) and (max-width: 980px) {
    .club__title-row,
    .club__title-row .club__title-row--bottom {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .club__title-copy--space {
        text-align: left;
    }

    .club__title-row--top .club__title-mark {
        margin-bottom: 0;
    }

    .club__title {
        gap: 0;
    }
}

@media (max-width: 1400px) {
    .publication-single__intro {
        padding-left: 0;
    }

    .publication-single__shell--content {
        padding-left: 0;
        padding-right: 0;
    }

    .club__band_mobile {
        display: flex;
    }

    .club__band {
        display: none;
    }

    .club__phone {
        display: none;
    }

    .newsletter__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .newsletter::before {
        top: 0;
        height: 100%;
    }

    .newsletter__form-block {
        width: 100%;
        max-width: 453px;
        margin: 0 auto;
        padding-top: 0;
    }
}

@media (min-width: 981px) and (max-width: 1180px) {
    .news__layout {
        display: none;
    }

    .news__responsive {
        display: grid;
        gap: 32px;
    }

    .news__responsive-track {
        margin: 0 -40px;
    }

    .news__responsive-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(686px, 100%);
        margin: 0 auto;
    }

    .swiper-slide.news-card--responsive {
        width: 458px;
    }
}

@media (min-width: 981px) and (max-width: 1330px) {
    .consultation__contact {
        display: none;
    }
}

@media (min-width: 1201px) and (max-width: 1360px) {
    .program-detail__layout {
        grid-template-columns: 300px 425px 320px;
    }

    .product-detail__layout {
        grid-template-columns: 300px 425px 320px;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .about-page__hero-accent {
        width: 430px;
        text-indent: 0;
    }

    .about-page__hero-text {
        left: 593px;
    }
}

@media (min-width: 1200px) and (max-width: 1350px) {
    .about-page__bio-copy > p:first-of-type {
        left: 620px;
    }

    .about-page__bio-accent {
        left: 620px;
    }

    .about-page__story p.about-page__story-accent {
        margin: 48px 0 0 0;
        width: 1000px;
    }
}

@media (min-width: 1470px) {
    .about-page__hero-text {
        position: absolute;
        left: 743px;
        top: 340px;
        width: 551px;
        max-width: none;
        margin: 0;
        color: #fff;
        font-size: 20px;
        line-height: 26px;
    }
}

@media (min-width: 1200px) and (max-width: 1469px) {
    .about-page__method {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(460px, 0.96fr);
        gap: 36px;
        height: auto;
        min-height: 0;
        margin-top: 72px;
        padding: 56px 40px 72px;
        align-items: start;
    }

    .about-page__method::before {
        height: 470px;
    }

    .about-page__method-copy,
    .about-page__method-side {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
    }

    .about-page__method-copy {
        max-width: 520px;
    }

    .about-page__method h2 {
        width: min(100%, 480px);
        font-size: 56px;
        line-height: 56px;
    }

    .about-page__method-text {
        margin-top: 28px;
    }

    .about-page__method-text p {
        font-size: 18px;
        line-height: 24px;
    }

    .about-page__method-side {
        margin-top: 10px;
    }

    .about-page__method-accent {
        font-size: 22px;
        line-height: 24px;
    }

    .about-page__method-media {
        width: 100%;
        height: auto;
        margin-top: 22px;
        aspect-ratio: 690 / 568;
    }

    .about-page__rules {
        margin-top: -260px;
        padding: 0 40px 128px;
    }
}