@font-face {
    font-family: 'Tektur';
    src: url('/site-resources/fonts/tektur-variable.woff2') format('woff2-variations');
    font-weight: 400 900;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url('/site-resources/fonts/geologica-variable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-display: swap;
}
@font-face {
    font-family: 'Space Mono';
    src: url('/site-resources/fonts/space-mono-regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Material Icons';
    src: url('/site-resources/fonts/material-icons.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}
.material-icons {
    font-family: 'Material Icons', system-ui, -apple-system, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Geologica', system-ui, -apple-system, sans-serif;
    color: rgb(30, 30, 35);
    background-color: rgb(245, 240, 235);
    line-height: 1.6;
    overflow-x: hidden;
}
.site-header,
.site-footer {
    font-family: 'Tektur', system-ui, -apple-system, sans-serif;
}
h1, h2, h3, h4 {
    font-family: 'Tektur', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
}
code, .mono-text {
    font-family: 'Space Mono', 'Courier New', monospace;
}
.prime-zone {
    max-height: 60vh;
}
@media (max-width: 768px) {
    .prime-zone {
        max-height: 100% !important;
    }
    .no-mobile-anim * {
        animation: none !important;
        transition: none !important;
    }
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
}
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.age-check {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.age-check--no-overlay {
    background-color: transparent;
}
.age-check__inner {
    background-color: rgb(245, 240, 235);
    border: 3px solid rgb(25, 65, 115);
    border-radius: 8px;
    padding: 40px 30px;
    max-width: 520px;
    width: calc(100% - 40px);
    box-shadow: 0 12px 30px rgba(30, 30, 35, 0.25);
    pointer-events: auto;
    position: relative;
    margin: 20px;
}
.age-check__icon-holder {
    text-align: center;
    margin-bottom: 20px;
}
.age-check__icon {
    font-size: 48px;
    color: rgb(220, 95, 50);
}
.age-check__title {
    font-size: 28px;
    color: rgb(25, 65, 115);
    margin-bottom: 15px;
    text-align: center;
}
.age-check__text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
    color: rgb(30, 30, 35);
}
.age-check__actions {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.age-check__btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Tektur', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    transition: all 0.3s ease;
}
.age-check__btn--confirm {
    background-color: rgb(25, 65, 115);
    color: rgb(255, 255, 255);
}
.age-check__btn--confirm:hover,
.age-check__btn--confirm:focus {
    background-color: rgb(15, 45, 95);
    transform: translateY(-2px);
}
.age-check__btn--decline {
    background-color: rgb(230, 230, 235);
    color: rgb(30, 30, 35);
    border: 2px solid rgb(200, 200, 205);
}
.age-check__btn--decline:hover,
.age-check__btn--decline:focus {
    background-color: rgb(220, 220, 225);
    border-color: rgb(180, 180, 185);
}
.age-check__btn-icon {
    font-size: 20px;
}
.age-check__info-link {
    display: block;
    text-align: center;
    color: rgb(25, 65, 115);
    text-decoration: underline;
    font-size: 15px;
}
.age-check__info-link:hover {
    color: rgb(220, 95, 50);
}
@media (max-width: 768px) {
    .age-check {
        align-items: flex-start;
        padding-top: 40px;
        overflow-y: auto;
    }
    .age-check__inner {
        margin: 20px auto;
        max-width: 90%;
        padding: 30px 20px;
    }
    .age-check__actions {
        flex-direction: column;
        align-items: center;
    }
    .age-check__btn {
        width: 100%;
        max-width: 280px;
    }
    .age-check__title {
        font-size: 24px;
    }
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9998;
    pointer-events: none;
}
.cookie-consent--bottom {
    bottom: 0;
}
.cookie-consent__inner {
    background-color: rgb(30, 30, 35);
    color: rgb(245, 240, 235);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.cookie-consent__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1120px;
    margin: 0 auto;
    pointer-events: auto;
}
.cookie-consent__icon-text {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1;
}
.cookie-consent__icon {
    font-size: 32px;
    color: rgb(220, 95, 50);
    flex-shrink: 0;
    margin-top: 3px;
}
.cookie-consent__text-block {
    flex: 1;
}
.cookie-consent__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}
.cookie-consent__link {
    color: rgb(220, 95, 50);
    text-decoration: underline;
    font-size: 15px;
}
.cookie-consent__link:hover {
    color: rgb(245, 240, 235);
}
.cookie-consent__button {
    background-color: rgb(25, 65, 115);
    color: rgb(255, 255, 255);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: 'Tektur', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.cookie-consent__button:hover,
.cookie-consent__button:focus {
    background-color: rgb(15, 45, 95);
    transform: scale(1.05);
}
.cookie-consent__button-icon {
    font-size: 20px;
}
@media (max-width: 768px) {
    .cookie-consent__content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .cookie-consent__icon-text {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 12px;
    }
    .cookie-consent__icon {
        margin-top: 0;
    }
    .cookie-consent__button {
        align-self: center;
        width: 100%;
        max-width: 200px;
    }
}

.site-header {
    background-color: rgb(25, 65, 115);
    color: rgb(255, 255, 255);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}
.site-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.site-header__block {
    flex: 1;
}
.site-header__block--primary {
    order: 1;
}
.site-header__block--secondary {
    order: 2;
    text-align: right;
}
.site-header__nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}
.site-header__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}
.site-header__nav-link:hover,
.site-header__nav-link:focus {
    color: rgb(220, 95, 50);
}
.site-header__nav-link--home {
    font-weight: 700;
}
.site-header__nav-icon {
    font-size: 20px;
}
.site-header__nav-text {
    font-family: 'Tektur', system-ui, -apple-system, sans-serif;
}
.site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 700;
}
.site-header__brand:hover {
    color: rgb(220, 95, 50);
}
.site-header__brand-icon {
    font-size: 32px;
    color: rgb(220, 95, 50);
}
.site-header__brand-text {
    font-family: 'Tektur', system-ui, -apple-system, sans-serif;
}
.site-header__burger {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    background: transparent;
}
.site-header__burger-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: rgb(255, 255, 255);
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease;
}
.site-header__burger-line--top {
    top: 0;
}
.site-header__burger-line--mid {
    top: 50%;
    transform: translateY(-50%);
}
.site-header__burger-line--bot {
    bottom: 0;
}
.site-header__burger[aria-expanded="true"] .site-header__burger-line--top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.site-header__burger[aria-expanded="true"] .site-header__burger-line--mid {
    opacity: 0;
}
.site-header__burger[aria-expanded="true"] .site-header__burger-line--bot {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}
@media (max-width: 768px) {
    .site-header__container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .site-header__block--primary {
        order: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .site-header__block--secondary {
        order: 1;
        text-align: center;
    }
    .site-header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgb(25, 65, 115);
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        z-index: 99;
    }
    .site-header__nav[aria-hidden="false"] {
        max-height: 300px;
        padding: 20px;
    }
    .site-header__nav-list {
        flex-direction: column;
        gap: 15px;
    }
    .site-header__nav-link {
        padding: 12px 15px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        justify-content: center;
    }
    .site-header__burger {
        display: block;
    }
}

.welcome-zone {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: rgb(255, 255, 255);
    padding: 60px 20px;
}
.moving-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(220, 95, 50, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 95, 50, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    animation: gridMove 25s linear infinite;
}
@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}
.welcome-zone__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}
.welcome-zone__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.welcome-zone__title {
    font-size: 42px;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.1;
}
.welcome-zone__geo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: rgb(220, 95, 50);
    margin-bottom: 25px;
    font-family: 'Space Mono', 'Courier New', monospace;
}
.welcome-zone__geo-icon {
    font-size: 22px;
}
.welcome-zone__text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgb(245, 240, 235);
}
.welcome-zone__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgb(220, 95, 50);
    color: rgb(255, 255, 255);
    padding: 16px 34px;
    border-radius: 8px;
    font-family: 'Tektur', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.welcome-zone__cta:hover,
.welcome-zone__cta:focus {
    background-color: rgb(25, 65, 115);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.welcome-zone__cta-text {
    font-family: 'Tektur', system-ui, -apple-system, sans-serif;
}
.welcome-zone__cta-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}
.welcome-zone__cta:hover .welcome-zone__cta-icon {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .welcome-zone {
        min-height: 70vh;
        padding: 40px 20px;
    }
    .welcome-zone__title {
        font-size: 32px;
    }
    .welcome-zone__text {
        font-size: 18px;
    }
    .welcome-zone__cta {
        padding: 14px 28px;
        font-size: 16px;
    }
    .moving-grid {
        animation-duration: 40s;
    }
}

.events-section {
    padding: 80px 0;
    background-color: rgb(255, 255, 255);
}
.events-section__title {
    font-size: 36px;
    color: rgb(25, 65, 115);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}
.events-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.event-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background-color: rgb(245, 240, 235);
    border-radius: 12px;
    border-left: 6px solid rgb(220, 95, 50);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(30, 30, 35, 0.1);
}
.event-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(25, 65, 115);
    color: rgb(255, 255, 255);
    padding: 15px 10px;
    border-radius: 8px;
    min-width: 90px;
    flex-shrink: 0;
}
.event-card__day {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.event-card__number {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    margin: 5px 0;
    font-family: 'Space Mono', 'Courier New', monospace;
}
.event-card__month {
    font-size: 18px;
    font-weight: 600;
}
.event-card__content {
    flex: 1;
}
.event-card__title {
    font-size: 22px;
    color: rgb(30, 30, 35);
    margin-bottom: 12px;
    font-weight: 600;
}
.event-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(80, 80, 85);
}
@media (max-width: 768px) {
    .events-section {
        padding: 60px 0;
    }
    .events-section__title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .events-section__grid {
        gap: 25px;
    }
    .event-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    .event-card__date {
        width: 100%;
        max-width: 120px;
    }
}

.about-section {
    padding: 80px 0;
    background-color: rgb(245, 240, 235);
}
.about-section__layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.about-section__text-block {
    flex: 1;
}
.about-section__title {
    font-size: 36px;
    color: rgb(25, 65, 115);
    margin-bottom: 25px;
    font-weight: 700;
}
.about-section__text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgb(30, 30, 35);
}
.about-section__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgb(220, 95, 50);
    font-weight: 600;
    font-size: 17px;
    margin-top: 20px;
    transition: gap 0.3s ease;
}
.about-section__link:hover {
    gap: 15px;
}
.about-section__link-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.about-section__link:hover .about-section__link-icon {
    transform: translateX(5px);
}
.about-section__features {
    flex: 1;
}
.about-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 30px;
}
.feature-card {
    background-color: rgb(255, 255, 255);
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid rgb(25, 65, 115);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 30, 35, 0.08);
}
.feature-card__icon {
    font-size: 42px;
    color: rgb(220, 95, 50);
    margin-bottom: 20px;
    display: block;
}
.feature-card__title {
    font-size: 20px;
    color: rgb(25, 65, 115);
    margin-bottom: 12px;
    font-weight: 600;
}
.feature-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(80, 80, 85);
}
@media (max-width: 992px) {
    .about-section__layout {
        flex-direction: column;
        gap: 50px;
    }
}
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    .about-section__title {
        font-size: 30px;
    }
    .about-section__grid {
        gap: 25px;
    }
}

.membership-cta {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: rgb(255, 255, 255);
    padding: 70px 20px;
    background-color: rgb(30, 30, 35);
}
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.shape {
    position: absolute;
    opacity: 0.1;
    border: 2px solid rgb(220, 95, 50);
}
.shape--circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation: floatCircle 20s ease-in-out infinite;
}
.shape--triangle {
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid rgb(220, 95, 50);
    border-top: none;
    top: 60%;
    right: 15%;
    animation: floatTriangle 25s ease-in-out infinite;
}
.shape--square {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation: floatSquare 22s ease-in-out infinite;
}
.shape--diamond {
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: 2px solid rgb(220, 95, 50);
    transform: rotate(45deg);
    top: 25%;
    right: 25%;
    animation: floatDiamond 28s ease-in-out infinite;
}
@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -40px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}
@keyframes floatTriangle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, 25px) rotate(180deg); }
}
@keyframes floatSquare {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -30px) rotate(90deg); }
    75% { transform: translate(-30px, 40px) rotate(270deg); }
}
@keyframes floatDiamond {
    0%, 100% { transform: translate(0, 0) rotate(45deg); }
    33% { transform: translate(35px, 35px) rotate(135deg); }
    66% { transform: translate(-25px, -25px) rotate(225deg); }
}
.membership-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 65, 115, 0.85);
    z-index: 2;
}
.membership-cta__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.membership-cta__title {
    font-size: 40px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}
.membership-cta__text {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgb(245, 240, 235);
}
.membership-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgb(220, 95, 50);
    color: rgb(255, 255, 255);
    padding: 18px 38px;
    border-radius: 8px;
    font-family: 'Tektur', system-ui, -apple-system, sans-serif;
    font-size: 19px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.membership-cta__button:hover,
.membership-cta__button:focus {
    background-color: rgb(255, 255, 255);
    color: rgb(25, 65, 115);
    transform: scale(1.05);
}
.membership-cta__button-icon {
    font-size: 22px;
}
@media (max-width: 768px) {
    .membership-cta {
        min-height: 60vh;
        padding: 50px 20px;
    }
    .membership-cta__title {
        font-size: 32px;
    }
    .membership-cta__text {
        font-size: 17px;
    }
    .membership-cta__button {
        padding: 16px 32px;
        font-size: 17px;
    }
    .shape--circle,
    .shape--triangle,
    .shape--square,
    .shape--diamond {
        transform: scale(0.7);
    }
}

.news-section {
    padding: 80px 0;
    background-color: rgb(255, 255, 255);
}
.news-section__title {
    font-size: 36px;
    color: rgb(25, 65, 115);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}
.news-section__intro {
    text-align: center;
    font-size: 18px;
    color: rgb(80, 80, 85);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
.news-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 30px;
}
.news-card {
    background-color: rgb(245, 240, 235);
    padding: 30px 25px;
    border-radius: 10px;
    border-top: 5px solid rgb(25, 65, 115);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(30, 30, 35, 0.1);
}
.news-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.news-card__icon {
    font-size: 32px;
    color: rgb(220, 95, 50);
}
.news-card__date {
    font-size: 14px;
    color: rgb(120, 120, 125);
    font-weight: 500;
    font-family: 'Space Mono', 'Courier New', monospace;
}
.news-card__title {
    font-size: 20px;
    color: rgb(30, 30, 35);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}
.news-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(80, 80, 85);
}
@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }
    .news-section__title {
        font-size: 30px;
    }
    .news-section__intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .news-section__grid {
        gap: 25px;
    }
}

.site-footer {
    background-color: rgb(30, 30, 35);
    color: rgb(245, 240, 235);
    padding: 50px 0 30px;
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    color: rgb(255, 255, 255);
}
.footer-brand__icon {
    font-size: 36px;
    color: rgb(220, 95, 50);
}
.footer-brand__text {
    font-family: 'Tektur', system-ui, -apple-system, sans-serif;
}
.footer-map-block {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.footer-contacts {
    flex: 0 0 30%;
    min-width: 280px;
}
.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
}
.contact-item__icon {
    font-size: 26px;
    color: rgb(220, 95, 50);
    flex-shrink: 0;
    margin-top: 3px;
}
.contact-item__content {
    flex: 1;
}
.contact-item__title {
    font-size: 17px;
    color: rgb(255, 255, 255);
    margin-bottom: 5px;
    font-weight: 600;
}
.contact-item__text,
.contact-item__link {
    font-size: 14px;
    line-height: 1.5;
    color: rgb(200, 200, 205);
}
.contact-item__link {
    text-decoration: underline;
}
.contact-item__link:hover {
    color: rgb(220, 95, 50);
}
.footer-map {
    flex: 1;
    min-width: 280px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid rgb(25, 65, 115);
}
.footer-map__iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.footer-nav {
    margin-bottom: 30px;
}
.footer-nav__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}
.footer-nav__link {
    color: rgb(200, 200, 205);
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s ease;
    font-weight: 500;
}
.footer-nav__link:hover {
    color: rgb(220, 95, 50);
}
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgb(70, 70, 75);
}
.footer-copyright__text {
    font-size: 14px;
    color: rgb(150, 150, 155);
}
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 25px;
    }
    .footer-brand {
        font-size: 22px;
        margin-bottom: 30px;
        justify-content: center;
    }
    .footer-map-block {
        gap: 35px;
        margin-bottom: 40px;
    }
    .footer-contacts {
        flex: 0 0 100%;
    }
    .footer-map {
        flex: 0 0 100%;
        height: 250px;
        min-width: 250px;
    }
    .footer-nav__row {
        gap: 20px;
        justify-content: space-around;
    }
    .footer-nav__link {
        font-size: 14px;
    }
}