

/* Start:/bitrix/templates/kostomarovforum/kf2026/styles.css?178593729841988*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Unbounded:wght@600;700;800&display=swap');

:root {
    --kf-red: #b5223f;
    --kf-red-dark: #8f172f;
    --kf-pink: #ffc5d0;
    --kf-ink: #171824;
    --kf-text: #333333;
    --kf-muted: #686975;
    --kf-line: #e4dcde;
    --kf-soft: #f5eff1;
    --kf-cream: #f8eae5;
    --kf-white: #ffffff;
    --kf-radius: 28px;
    --kf-container: 1240px;
    --kf-shadow: 0 18px 50px rgba(67, 21, 31, 0.14);
}

.kf2026-site,
.kf2026-site * {
    box-sizing: border-box;
}

.kf2026-site {
    margin: 0;
    overflow-x: hidden;
    color: var(--kf-ink);
    background: #fff;
    font-family: 'Lato', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.kf2026-site img {
    max-width: 100%;
}

.kf2026-site a {
    color: inherit;
    text-decoration: none;
}

.kf2026-site button,
.kf2026-site input,
.kf2026-site textarea {
    font: inherit;
}

.kf-container {
    width: min(var(--kf-container), 82vw);
    margin-inline: auto;
}

.kf-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.kf-header {
    position: relative;
    z-index: 120;
    min-height: 109px;
    background: rgba(247, 244, 240, 0.97);
    backdrop-filter: blur(10px);
}

.kf-header__inner {
    width: min(1620px, 86vw);
    min-height: 109px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
    align-items: center;
    gap: 36px;
}

.kf-header__nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4.3vw, 88px);
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    font-synthesis: none;
}

.kf-header__nav--right {
    justify-content: flex-end;
    gap: clamp(12px, 2vw, 34px);
}

.kf-header__mobile-only {
    display: none;
}

.kf-header__link,
.kf-header__dropdown-toggle {
    position: relative;
    padding: 10px 0;
    border: 0;
    background: transparent;
    color: var(--kf-text);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato', Arial, sans-serif;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0;
    cursor: pointer;
    white-space: nowrap;
}

.kf-header__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.kf-header__dropdown-toggle > span {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    display: block;
    flex: 0 0 auto;
    transform: translateY(-2px) rotate(45deg);
}

.kf-header__link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    background: var(--kf-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.kf-header__link:hover::after,
.kf-header__link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.kf-header__logo {
    width: 72px;
    height: 90px;
    justify-self: center;
    display: block;
}

.kf-header__logo img {
    width: 72px;
    height: 90px;
    object-fit: contain;
}

.kf-header__dropdown {
    position: relative;
}

.kf-header__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -20px;
    width: 240px;
    padding: 12px;
    border: 1px solid var(--kf-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--kf-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .2s ease;
}

.kf-header__dropdown:hover .kf-header__dropdown-menu,
.kf-header__dropdown:focus-within .kf-header__dropdown-menu,
.kf-header__dropdown.is-open .kf-header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kf-header__dropdown-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--kf-text);
    font-size: 14px;
}

.kf-header__dropdown-menu a:hover {
    color: var(--kf-red);
    background: var(--kf-soft);
}

.kf-button {
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--kf-red);
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.kf-button:hover {
    background: var(--kf-red-dark);
    transform: translateY(-1px);
}

.kf-button--outline {
    border: 2px solid var(--kf-red);
    background: transparent;
    color: var(--kf-red) !important;
}

.kf-button--outline:hover {
    background: var(--kf-red);
    color: #fff !important;
}

.kf-button--light {
    background: #fff;
    color: var(--kf-red) !important;
}

.kf-button--ghost {
    border: 1px solid rgba(255,255,255,.72);
    background: rgba(255,255,255,.04);
}

.kf-header__register {
    min-height: 47px;
    padding-inline: 32px;
    font-family: 'Lato', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    font-size: 16px;
}

.kf-header__icon {
    width: 47px;
    height: 47px;
    padding: 11px;
    border: 0;
    border-radius: 8px;
    background: #eeeae6;
    color: var(--kf-text);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

.kf-header__icon:hover {
    color: var(--kf-red);
}

.kf-header__icon svg,
.kf-search__field svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.kf-header__menu-button {
    display: none;
}

.kf-search[hidden] {
    display: none;
}

.kf-search {
    position: fixed;
    z-index: 300;
    inset: 0;
}

.kf-search__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23,24,36,.46);
    backdrop-filter: blur(6px);
}

.kf-search__panel {
    position: relative;
    width: min(920px, calc(100% - 32px));
    max-height: min(720px, calc(100vh - 80px));
    margin: 40px auto;
    padding: 28px;
    border-radius: 24px;
    overflow: auto;
    background: #fff;
    box-shadow: 0 28px 90px rgba(23,24,36,.28);
}

.kf-search__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kf-search__field {
    min-height: 62px;
    padding: 0 20px;
    border: 1px solid var(--kf-line);
    border-radius: 14px;
    display: flex;
    flex: 1;
    align-items: center;
    gap: 12px;
    color: var(--kf-red);
}

.kf-search__field:focus-within {
    border-color: var(--kf-red);
    box-shadow: 0 0 0 4px rgba(181,34,63,.08);
}

.kf-search__field input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--kf-ink);
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
}

.kf-search__close {
    width: 54px;
    height: 54px;
    border: 1px solid var(--kf-line);
    border-radius: 50%;
    background: #fff;
    color: var(--kf-red);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.kf-search__hint {
    margin: 14px 4px 22px;
    color: var(--kf-muted);
    font-size: 13px;
}

.kf-search-result {
    padding: 18px 0;
    border-top: 1px solid var(--kf-line);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 24px;
}

.kf-search-result__title {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.kf-search-result__title:hover {
    color: var(--kf-red);
}

.kf-search-result__text {
    grid-column: 1 / 2;
    margin: 0;
    color: var(--kf-muted);
    font-size: 14px;
    line-height: 1.5;
}

.kf-search-result__path {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    color: var(--kf-red);
    font-size: 22px;
}

.kf-section-label {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--kf-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.kf-section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: currentColor;
}

.kf-section-label--light {
    color: var(--kf-pink);
}

.kf-display {
    margin: 0;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(42px, 4.2vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.kf-display .kf-accent,
.kf-accent {
    color: var(--kf-red);
}

.kf-hero {
    position: relative;
    min-height: 824px;
    color: #fff;
    background: #2c2928 url('/bitrix/templates/kostomarovforum/kf2026/./assets/hero-source.png') center 62% / cover no-repeat;
    isolation: isolate;
}

.kf-hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,13,13,.68) 0%, rgba(13,13,13,.2) 55%, rgba(13,13,13,.05) 100%);
}

.kf-hero__content {
    min-height: 824px;
    padding: 88px 0 74px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.kf-hero__anniversary {
    margin: 0 0 34px;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 700;
}

.kf-hero__title {
    max-width: 980px;
    margin: 0;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.kf-hero__title .kf-roman {
    color: var(--kf-red);
}

.kf-hero__date {
    display: inline-flex;
    margin-left: 16px;
    padding: 14px 28px;
    border-radius: 8px;
    transform: translateY(-6px);
    background: var(--kf-red);
    font-size: 24px;
    letter-spacing: 0;
    white-space: nowrap;
}

.kf-hero__theme {
    width: fit-content;
    max-width: 760px;
    margin: 36px 0;
    padding: 26px 32px;
    border-radius: 24px;
    background: rgba(255,255,255,.88);
    color: var(--kf-text);
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.kf-hero__theme-inner {
    padding-left: 16px;
    border-left: 3px solid var(--kf-red);
}

.kf-hero__theme small {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.kf-hero__theme strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.12;
}

.kf-hero__theme strong br {
    display: block;
}

.kf-hero__details {
    display: flex;
    gap: 56px;
    margin-bottom: 36px;
}

.kf-hero__details strong,
.kf-hero__details span {
    display: block;
}

.kf-hero__details strong {
    margin-bottom: 4px;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
}

.kf-hero__details span {
    font-size: 20px;
}

.kf-hero__actions {
    width: min(583px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.kf-countdown {
    min-height: 104px;
    border-bottom: 0;
    background: var(--kf-red);
    color: #fff;
}

.kf-countdown__inner {
    min-height: 104px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 42px;
}

.kf-countdown__label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    text-transform: uppercase;
}

.kf-countdown__label::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #51ec9c;
    box-shadow: 0 0 0 6px rgba(81,236,156,.18);
}

.kf-countdown__values {
    display: flex;
    justify-content: center;
    gap: 19px;
}

.kf-countdown__unit {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.kf-countdown__unit strong {
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-size: 48px;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kf-countdown__unit span {
    color: rgba(255,255,255,.7);
    font-size: 20px;
    line-height: 1.45;
}

.kf-countdown__separator {
    color: rgba(255,255,255,.35);
    font-size: 30px;
    line-height: 1.45;
}

.kf-countdown__status {
    padding-left: 35px;
    border-left: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.kf-organizers {
    padding: 42px 0;
}

.kf-organizers__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(28px, 3.7vw, 71px);
}

.kf-organizers__item {
    height: 88px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--kf-muted);
    font-size: 13px;
}

.kf-organizers__item img {
    width: 100%;
    max-width: 100%;
    max-height: 88px;
    object-fit: contain;
}

.kf-organizers__item--wide {
    width: 315px;
}

.kf-organizers__item--unesco {
    width: 90px;
}

.kf-organizers__item--pushkin {
    width: 191px;
}

.kf-about {
    padding: 90px 0 88px;
}

.kf-about__grid,
.kf-dialogue__grid,
.kf-cta__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 1fr);
    gap: 100px;
    align-items: start;
}

.kf-about__text {
    margin: 6px 0 0;
    font-size: 24px;
    line-height: 1.3;
}

.kf-about__stats {
    margin-top: 64px;
    border-top: 1px solid var(--kf-line);
    border-bottom: 1px solid var(--kf-line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.kf-stat {
    min-height: 170px;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.kf-stat + .kf-stat {
    border-left: 1px solid var(--kf-line);
}

.kf-stat strong {
    color: var(--kf-red);
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    white-space: nowrap;
}

.kf-stat span {
    max-width: 84px;
    color: var(--kf-muted);
    font-size: 12px;
    line-height: 1.2;
    text-align: left;
}

.kf-dialogue {
    padding: 92px 0;
    background: var(--kf-red);
    color: #fff;
}

.kf-dialogue__grid {
    align-items: center;
}

.kf-dialogue__text {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.45;
}

.kf-video {
    padding: 118px 0;
    background: linear-gradient(135deg, #f9ebe6, #f5ded8);
}

.kf-video__title {
    max-width: 850px;
    margin-bottom: 50px;
}

.kf-video__link {
    position: relative;
    aspect-ratio: 1240 / 600;
    border-radius: 28px;
    display: block;
    overflow: hidden;
    background: #d8c8c4;
    box-shadow: 0 18px 48px rgba(91,23,39,.16);
}

.kf-video__link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(99,32,48,.04), rgba(65,17,29,.38));
    transition: background .25s ease;
}

.kf-video__link:hover::after {
    background: linear-gradient(to bottom, rgba(99,32,48,.02), rgba(65,17,29,.2));
}

.kf-video__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kf-video__play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 86px;
    height: 86px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 32px rgba(95, 28, 45, .28);
}

.kf-video__play::before {
    content: '';
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 21px solid var(--kf-red);
}

.kf-reviews {
    padding: clamp(78px, 6.15vw, 118px) 0;
    overflow: hidden;
    background: var(--kf-soft);
}

.kf-reviews__head {
    margin-bottom: 32px;
    display: flex;
    justify-content: flex-end;
}

.kf-reviews__arrows {
    display: flex;
    gap: 10px;
}

.kf-slider-button {
    width: 54px;
    height: 54px;
    border: 1px solid #d9ced1;
    border-radius: 50%;
    background: #fff;
    color: var(--kf-red);
    font-size: 25px;
    cursor: pointer;
}

.kf-slider-button:disabled {
    opacity: .38;
    cursor: default;
}

.kf-reviews__head,
.kf-reviews__viewport {
    width: min(1530px, calc(100% - 48px));
    max-width: none;
}

.kf-reviews__viewport {
    overflow: hidden;
}

.kf-reviews__track {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.kf-reviews__track::-webkit-scrollbar {
    display: none;
}

.kf-review-card {
    width: calc((100% - 66px) / 4);
    min-width: calc((100% - 66px) / 4);
    height: clamp(540px, calc(100svh - 180px), 686px);
    min-height: 0;
    padding: 31px;
    border: 1px solid #ddd1d4;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    background: #fffbfb;
    color: var(--kf-ink);
}

.kf-review-card.is-accent {
    background: var(--kf-red);
    color: #fff;
}

.kf-review-card__person {
    min-height: 112px;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    align-items: start;
}

.kf-review-card__photo,
.kf-review-card__placeholder {
    width: 92px;
    height: 112px;
    border-radius: 12px;
    object-fit: cover;
}

.kf-review-card__placeholder {
    display: grid;
    place-items: center;
    background: var(--kf-line);
    color: var(--kf-red);
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.kf-review-card__name {
    margin: 20px 0 6px;
    font-size: 15px;
    line-height: 1.45;
}

.kf-review-card__role,
.kf-review-card__country {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
}

.kf-review-card__country {
    margin-top: 4px;
    color: var(--kf-muted);
    font-size: 11px;
}

.is-accent .kf-review-card__country {
    color: rgba(255,255,255,.68);
}

.kf-review-card__quote {
    margin: 32px 0 0;
    font-size: 18px;
    line-height: 1.55;
}

.kf-review-card:not(.is-expanded) .kf-review-card__quote {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 12;
}

.kf-review-card.is-expanded {
    height: auto;
    min-height: clamp(540px, calc(100svh - 180px), 686px);
}

.kf-review-card__more {
    margin-top: auto;
    padding: 24px 0 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    text-decoration: underline;
    cursor: pointer;
}

.kf-reviews__progress {
    position: relative;
    height: 20px;
    margin-top: 17px;
    touch-action: none;
    cursor: ew-resize;
}

.kf-reviews__progress::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 0;
    left: 0;
    height: 3px;
    background: #ded4d7;
}

.kf-reviews__progress-bar {
    position: absolute;
    top: 8px;
    height: 3px;
    left: 0;
    width: 25%;
    background: var(--kf-red);
    transition: left .12s ease, width .2s ease;
}

.kf-partners {
    padding: 118px 0;
}

.kf-partners__title {
    max-width: 730px;
    margin-bottom: 52px;
}

.kf-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.kf-partner-card {
    position: relative;
    min-height: 145px;
    padding: 25px;
    border: 1px solid var(--kf-line);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.kf-partner-card img {
    max-width: 190px;
    max-height: 96px;
    object-fit: contain;
    filter: grayscale(.08);
    transition: transform .2s ease, filter .2s ease;
}

.kf-partner-card:hover img {
    transform: scale(1.035);
    filter: grayscale(0);
}

.kf-partners__special {
    margin: 52px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.kf-partners__special-card {
    min-height: 180px;
    padding: 28px 34px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    align-items: center;
    gap: 36px;
    background: #f1ecee;
}

.kf-partners__special-card strong {
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    line-height: 1.45;
}

.kf-partners__special-card img {
    justify-self: center;
    max-width: 230px;
    max-height: 110px;
}

.kf-info-partners {
    padding-top: 54px;
    border-top: 1px solid var(--kf-line);
}

.kf-info-partners h3 {
    margin: 0 0 28px;
    font-family: 'Unbounded', sans-serif;
    font-size: 21px;
}

.kf-info-partners__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 10px;
}

.kf-info-partners__item {
    width: calc((100% - 30px) / 4);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kf-info-partners__item img {
    width: 100%;
    max-width: 250px;
    max-height: 77px;
    object-fit: contain;
}

.kf-cta {
    padding: 0;
    background: var(--kf-red);
    color: #fff;
}

.kf-cta__grid {
    min-height: clamp(400px, 26.05vw, 500px);
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
    gap: 80px;
}

.kf-cta .kf-display {
    font-size: clamp(44px, 2.82vw, 54px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kf-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kf-cta__actions p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 18px;
}

.kf-cta .kf-button--light {
    border: 1px solid rgba(255,255,255,.22);
    background: #fff;
    color: var(--kf-red) !important;
}

.kf-cta .kf-button--light:hover {
    background: #f8edef;
    color: var(--kf-red-dark) !important;
}

.kf-contact-review {
    padding: clamp(84px, 6.15vw, 118px) 0;
}

.kf-contact-review__grid {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
    gap: 16px;
    align-items: stretch;
}

.kf-contact-card,
.kf-review-form-card {
    min-height: clamp(580px, 35.94vw, 690px);
    padding: clamp(36px, 2.5vw, 48px);
    border-radius: 28px;
}

.kf-contact-card {
    background: var(--kf-red);
    color: #fff;
}

.kf-contact-card__title,
.kf-review-form-card__title {
    margin: 0 0 28px;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(42px, 2.92vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.kf-contact-card__group {
    margin-top: 24px;
}

.kf-contact-card__group span,
.kf-contact-card__group a {
    display: block;
}

.kf-contact-card__group span {
    margin-bottom: 6px;
    color: rgba(255,255,255,.75);
    font-size: 18px;
}

.kf-contact-card__group a {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    overflow-wrap: anywhere;
}

.kf-contact-card__address {
    margin: 30px 0 18px;
    color: rgba(255,255,255,.75);
}

.kf-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kf-social {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.kf-social__crop {
    width: 24px;
    height: 24px;
    overflow: hidden;
    display: block;
}

.kf-social img {
    width: auto;
    max-width: none;
    height: 24px;
    display: block;
}

.kf-social--telegram img {
    width: 24px;
}

.kf-review-form-card {
    background: #fff;
    border: 1px solid #f1ecee;
}

.kf-review-form {
    min-height: 288px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
}

.kf-review-form textarea {
    width: 100%;
    height: 125px;
    padding: 16px;
    border: 1px solid #ddd5d7;
    border-radius: 12px;
    resize: vertical;
    outline: 0;
}

.kf-review-form textarea:focus {
    border-color: var(--kf-red);
    box-shadow: 0 0 0 4px rgba(181,34,63,.08);
}

.kf-review-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--kf-muted);
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.kf-review-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    flex: 0 0 auto;
    accent-color: var(--kf-red);
}

.kf-review-consent a {
    color: var(--kf-red);
    text-decoration: underline;
}

.kf-review-login {
    min-height: 288px;
    padding: 24px;
    border: 1px solid rgba(181,34,63,.14);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f7, #fbf7f8);
}

.kf-review-login h3 {
    margin: 0 0 12px;
    font-family: 'Unbounded', sans-serif;
    font-size: 23px;
}

.kf-review-login p {
    max-width: 500px;
    margin: 0;
    color: var(--kf-muted);
    line-height: 1.5;
}

.kf-review-login__actions {
    margin-top: 28px;
    display: flex;
    gap: 10px;
}

.kf-review-prompt {
    min-height: 150px;
    margin-top: 16px;
    border: 1px solid rgba(181,34,63,.12);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 90px;
    background: linear-gradient(135deg, #fff5f7, #fbf7f8);
}

.kf-review-prompt__body {
    padding: 24px 22px;
}

.kf-review-prompt__eyebrow {
    color: var(--kf-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.kf-review-prompt h3 {
    margin: 8px 0 12px;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
}

.kf-review-prompt__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.kf-review-prompt__tags span {
    padding: 7px 11px;
    border: 1px solid #e6dadd;
    border-radius: 999px;
    background: rgba(255,255,255,.8);
    color: #64616a;
    font-size: 11px;
}

.kf-review-prompt__quote {
    display: grid;
    place-items: center;
    background: var(--kf-red);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 88px;
    line-height: 1;
}

.kf-review-note {
    margin-top: 14px;
    color: #77737a;
    font-size: 11px;
}

.kf-form-message {
    min-height: 22px;
    color: var(--kf-red);
    font-size: 14px;
}

.kf-inner-main {
    min-height: 50vh;
    padding: 54px 0 96px;
}

.kf-inner-heading {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--kf-line);
}

.kf-inner-heading h1 {
    margin: 20px 0 0;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
}

.kf-inner-content {
    padding-top: 42px;
}

.kf-news-page .data-table {
    width: 100%;
    margin: 0 0 36px;
    border: 1px solid var(--kf-line);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--kf-soft);
}

.kf-news-page .data-table thead td {
    padding: 18px 22px;
    border: 0;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: left !important;
}

.kf-news-page .data-table tbody td,
.kf-news-page .data-table tfoot td {
    padding: 14px 22px;
    border: 0;
    border-top: 1px solid var(--kf-line);
    vertical-align: middle !important;
}

.kf-news-page .data-table select,
.kf-news-page .data-table input[type='submit'] {
    min-height: 42px;
    border: 1px solid #d9ced1;
    border-radius: 10px;
    background: #fff;
    color: var(--kf-ink);
    font: inherit;
}

.kf-news-page .data-table select {
    min-width: 160px;
    padding: 0 38px 0 13px;
}

.kf-news-page .data-table input[type='submit'] {
    margin: 0 10px 0 0;
    padding: 0 20px;
    cursor: pointer;
}

.kf-news-page .data-table input[name='set_filter'] {
    border-color: var(--kf-red);
    background: var(--kf-red);
    color: #fff;
}

.kf-news-page .news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.kf-news-page .row.row-shadow {
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--kf-line);
    border-radius: 22px !important;
    display: block;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
}

.kf-news-page .news-cont {
    height: 100%;
    margin: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.kf-news-page .news-date {
    color: var(--kf-muted);
    font-size: 13px;
    line-height: 1.45;
}

.kf-news-page .news-name {
    margin: 16px 0 18px;
    color: var(--kf-ink);
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(18px, 1.45vw, 23px);
    font-weight: 700;
    line-height: 1.28;
}

.kf-news-page .news-text {
    margin: 0 0 22px;
    color: var(--kf-muted);
    font-size: 15px;
    line-height: 1.6;
}

.kf-news-page .news-cont > a {
    align-self: flex-start;
    margin-top: auto;
    text-decoration: none;
}

.kf-news-page .news-button {
    min-width: 158px;
    padding: 13px 22px;
    border-radius: 10px !important;
    background: var(--kf-red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: background .2s ease, transform .2s ease;
}

.kf-news-page .news-cont > a:hover .news-button {
    background: var(--kf-red-dark);
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .kf-news-page .data-table,
    .kf-news-page .data-table tbody,
    .kf-news-page .data-table tr,
    .kf-news-page .data-table td {
        display: block;
        width: 100%;
    }

    .kf-news-page .data-table thead {
        display: block;
    }

    .kf-news-page .data-table tbody td + td {
        padding-top: 0;
        border-top: 0;
    }

    .kf-news-page .data-table select {
        width: 100%;
    }

    .kf-news-page .news-list {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .kf-news-page .news-cont {
        padding: 22px;
    }

    .kf-news-page .news-name {
        font-size: 18px;
    }
}

.kf-footer {
    padding: 72px 0 26px;
    background: var(--kf-red);
    color: #fff;
}

.kf-footer__grid {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr .7fr 1fr;
    gap: 60px;
}

.kf-footer__brand img {
    width: 110px;
    height: 145px;
    object-fit: contain;
    filter: none;
}

.kf-footer__brand p {
    max-width: 270px;
    color: rgba(255,255,255,.58);
    font-size: 16px;
    line-height: 1.45;
}

.kf-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.kf-footer__column h2 {
    margin: 0 0 12px;
    color: #ffb7c4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.56px;
    text-transform: uppercase;
}

.kf-footer__column a,
.kf-footer__column p {
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.45;
}

.kf-footer__column a:hover {
    color: #fff;
}

.kf-footer__column p span,
.kf-footer__column p a {
    display: block;
}

.kf-footer__column p a {
    color: #fff;
    font-weight: 700;
}

.kf-footer__organizer img {
    width: 180px;
    height: 86px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.kf-footer__bottom {
    margin-top: 54px;
    padding-top: 23px;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.48);
    font-size: 11px;
}

body.kf-lock-scroll {
    overflow: hidden;
}

@media (max-width: 1280px) {
    .kf-header__inner {
        width: min(1180px, 90vw);
        gap: 22px;
    }

    .kf-header__nav {
        gap: 24px;
    }

    .kf-header__nav--right {
        gap: 12px;
    }

    .kf-header__register {
        padding-inline: 18px;
    }

    .kf-partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .kf-container {
        width: calc(100% - 40px);
        max-width: var(--kf-container);
    }

    .kf-header {
        min-height: 84px;
    }

    .kf-header__inner {
        min-height: 84px;
        grid-template-columns: 48px 1fr 48px;
    }

    .kf-header__logo {
        width: 54px;
        height: 68px;
    }

    .kf-header__logo img {
        width: 54px;
        height: 68px;
    }

    .kf-header__menu-button {
        width: 47px;
        height: 47px;
        padding: 12px;
        border: 0;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: #eeeae6;
        cursor: pointer;
    }

    .kf-header__menu-button span:not(.kf-sr-only) {
        width: 100%;
        height: 2px;
        background: var(--kf-red);
        transition: .2s ease;
    }

    .kf-header__nav--left {
        position: absolute;
        top: 84px;
        right: 0;
        left: 0;
        padding: 22px 20px 28px;
        border-top: 1px solid var(--kf-line);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: #f7f4f0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .2s ease;
    }

    .kf-header__nav--left.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .kf-header__nav--left .kf-header__link {
        width: 100%;
        padding: 14px 12px;
        display: block;
        text-align: left;
    }

    .kf-header__nav--left .kf-header__dropdown-toggle {
        display: flex;
        justify-content: flex-start;
    }

    .kf-header__nav--left .kf-header__mobile-only {
        display: block;
    }

    .kf-header__dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 12px;
        border: 0;
        box-shadow: none;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
    }

    .kf-header__dropdown.is-open .kf-header__dropdown-menu {
        max-height: 260px;
        padding-block: 8px;
    }

    .kf-header__nav--right {
        display: contents;
    }

    .kf-header__nav--right > *:not(.kf-header__icon:last-child):not(button.kf-header__icon) {
        display: none;
    }

    .kf-header__nav--right button.kf-header__icon {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .kf-header__nav--right a.kf-header__icon {
        display: none;
    }

    .kf-about__grid,
    .kf-dialogue__grid,
    .kf-cta__grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .kf-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .kf-contact-review__grid {
        grid-template-columns: 1fr;
    }

    .kf-contact-card,
    .kf-review-form-card {
        min-height: auto;
    }

    .kf-reviews__head,
    .kf-reviews__viewport {
        width: calc(100% - 40px);
    }

    .kf-review-card {
        width: calc((100% - 22px) / 2);
        min-width: calc((100% - 22px) / 2);
    }

    .kf-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .kf-container {
        width: calc(100% - 32px);
        max-width: var(--kf-container);
    }

    .kf-search__panel {
        margin-block: 16px;
        padding: 18px;
        max-height: calc(100vh - 32px);
    }

    .kf-search__field {
        min-height: 54px;
        padding-inline: 14px;
    }

    .kf-search__close {
        width: 46px;
        height: 46px;
        font-size: 29px;
    }

    .kf-search-result {
        grid-template-columns: 1fr auto;
        gap: 6px 12px;
    }

    .kf-display {
        font-size: clamp(36px, 11vw, 52px);
        overflow-wrap: anywhere;
    }

    .kf-cta .kf-display {
        font-size: clamp(32px, 8vw, 44px);
        overflow-wrap: anywhere;
    }

    .kf-hero {
        min-height: 690px;
        background-position: 62% center;
    }

    .kf-hero::after {
        background: linear-gradient(180deg, rgba(13,13,13,.25), rgba(13,13,13,.78));
    }

    .kf-hero__content {
        min-height: 690px;
        padding: 58px 0 42px;
        justify-content: flex-end;
    }

    .kf-hero__anniversary {
        margin-bottom: 22px;
        font-size: 18px;
    }

    .kf-hero__title {
        font-size: clamp(34px, 10vw, 48px);
        overflow-wrap: anywhere;
    }

    .kf-hero__date {
        margin: 16px 0 0;
        padding: 11px 18px;
        transform: none;
        font-size: 18px;
    }

    .kf-hero__theme {
        margin: 24px 0;
        padding: 20px;
        border-radius: 18px;
    }

    .kf-hero__theme strong {
        font-size: 16px;
    }

    .kf-hero__theme strong br {
        display: none;
    }

    .kf-hero__details {
        width: 100%;
        gap: 26px;
    }

    .kf-hero__details > div {
        flex: 1;
    }

    .kf-hero__details strong,
    .kf-hero__details span {
        font-size: 14px;
    }

    .kf-hero__actions {
        grid-template-columns: 1fr;
    }

    .kf-countdown__inner {
        padding-block: 24px;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        text-align: center;
    }

    .kf-countdown__values {
        width: 100%;
        justify-content: center;
        gap: 14px;
    }

    .kf-countdown__label {
        justify-content: center;
    }

    .kf-countdown__unit {
        flex-direction: column;
        gap: 4px;
    }

    .kf-countdown__unit strong {
        font-size: 30px;
    }

    .kf-countdown__status {
        padding-left: 0;
        border-left: 0;
        font-size: 14px;
        text-align: center;
    }

    .kf-organizers__row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .kf-organizers__item {
        width: 100%;
        justify-content: center;
    }

    .kf-organizers__item img {
        width: auto;
        max-width: min(315px, 100%);
    }

    .kf-about,
    .kf-video,
    .kf-reviews,
    .kf-partners,
    .kf-contact-review {
        padding: 76px 0;
    }

    .kf-about__grid,
    .kf-dialogue__grid,
    .kf-cta__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .kf-about__text {
        font-size: 19px;
        text-align: center;
    }

    .kf-about__stats {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

    .kf-stat {
        min-height: 120px;
        flex-direction: column;
        gap: 7px;
    }

    .kf-stat span {
        max-width: none;
        color: var(--kf-muted);
        text-align: center;
    }

    .kf-stat + .kf-stat {
        border-top: 1px solid var(--kf-line);
        border-left: 0;
    }

    .kf-dialogue,
    .kf-cta {
        padding: 76px 0;
    }

    .kf-video__title {
        margin-bottom: 30px;
    }

    .kf-video__link {
        aspect-ratio: 16 / 10;
        border-radius: 20px;
    }

    .kf-video__play {
        width: 64px;
        height: 64px;
    }

    .kf-reviews__head {
        margin-bottom: 20px;
    }

    .kf-review-card {
        width: min(86vw, 340px);
        min-width: min(86vw, 340px);
        height: min(560px, calc(100svh - 120px));
        min-height: 480px;
        padding: 24px;
    }

    .kf-review-card:not(.is-expanded) .kf-review-card__quote {
        -webkit-line-clamp: 10;
    }

    .kf-review-card.is-expanded {
        min-height: 480px;
    }

    .kf-partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kf-partner-card {
        min-width: 0;
        min-height: 120px;
        padding: 18px;
    }

    .kf-partner-card img {
        max-width: 100%;
    }

    .kf-partners__special {
        grid-template-columns: minmax(0, 1fr);
    }

    .kf-partners__special-card {
        min-width: 0;
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .kf-partners__special-card img {
        max-width: 100%;
    }

    .kf-info-partners__grid {
        gap: 22px 10px;
    }

    .kf-info-partners__item {
        width: calc((100% - 10px) / 2);
    }

    .kf-contact-review__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kf-contact-card,
    .kf-review-form-card {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .kf-contact-card__group span {
        font-size: 16px;
    }

    .kf-review-form-card__title,
    .kf-contact-card__title {
        font-size: 36px;
    }

    .kf-review-login,
    .kf-review-form {
        min-height: 260px;
    }

    .kf-review-login__actions {
        width: 100%;
        flex-direction: column;
    }

    .kf-review-login__actions .kf-button {
        width: 100%;
    }

    .kf-review-prompt {
        min-height: 182px;
        grid-template-columns: 1fr 66px;
    }

    .kf-review-prompt__quote {
        font-size: 64px;
    }

    .kf-footer {
        padding-top: 54px;
    }

    .kf-footer__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .kf-footer__bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 420px) {
    .kf-hero__title {
        font-size: clamp(23px, 6.9vw, 27px);
        overflow-wrap: normal;
    }

    .kf-display {
        font-size: clamp(25px, 8vw, 34px);
        overflow-wrap: normal;
    }

    .kf-cta .kf-display {
        font-size: clamp(28px, 8vw, 34px);
        overflow-wrap: anywhere;
    }

    .kf-partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .kf-partner-card {
        min-height: 104px;
        padding: 10px;
    }

    .kf-countdown__values {
        justify-content: center;
    }

    .kf-countdown__unit strong {
        font-size: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kf2026-site *,
    .kf2026-site *::before,
    .kf2026-site *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* End */
/* /bitrix/templates/kostomarovforum/kf2026/styles.css?178593729841988 */
