﻿@charset "utf-8";

:root {
    --hero-color: #E31E24;
    --hero-color-dark: #B91419;
}

/*==================================================
HERO SLIDER
==================================================*/

.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    isolation: isolate;
    background-color: #151515;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.65s ease, visibility 0.65s ease;
    will-change: opacity;
}

    .hero-slide.active {
        z-index: 2;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.73) 45%, rgba(10, 10, 10, 0.20) 100% );
}

/*==================================================
İÇERİK
==================================================*/

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 85px;
}

.hero-content {
    width: 100%;
    max-width: 860px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.65s ease 0.15s, transform 0.65s ease 0.15s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--hero-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .hero-subtitle::before {
        content: "";
        width: 42px;
        height: 3px;
        background-color: var(--hero-color);
    }

.hero-content h1,
.hero-content h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(45px, 5vw, 76px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

    .hero-content h1 span,
    .hero-content h2 span {
        color: var(--hero-color);
    }

.hero-content p {
    max-width: 650px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.7;
}

/*==================================================
BUTONLAR
==================================================*/

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btn {
    display: inline-flex;
    min-height: 54px;
    padding: 0 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

    .hero-btn:hover {
        transform: translateY(-2px);
    }

.hero-btn-primary {
    color: #ffffff;
    border-color: var(--hero-color);
    background-color: var(--hero-color);
}

    .hero-btn-primary:hover {
        color: #ffffff;
        border-color: var(--hero-color-dark);
        background-color: var(--hero-color-dark);
    }

.hero-btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.70);
    background-color: rgba(255, 255, 255, 0.05);
}

    .hero-btn-outline:hover {
        color: #ffffff;
        border-color: var(--hero-color);
        background-color: var(--hero-color);
    }

/*==================================================
YÖN OKLARI
==================================================*/

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.30);
    font-size: 21px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

    .hero-arrow:hover {
        border-color: var(--hero-color);
        background-color: var(--hero-color);
    }

.hero-prev {
    left: 25px;
}

.hero-next {
    right: 25px;
}

/*==================================================
SLIDER NOKTALARI
==================================================*/

.hero-dots {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 30px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease;
}

    .hero-dot.active {
        width: 30px;
        background-color: var(--hero-color);
    }

/*==================================================
TABLET
==================================================*/

@media (max-width: 1024px) {

    .hero-slider {
        height: 650px;
    }

    .hero-container {
        padding: 0 70px;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
    }

    .hero-prev {
        left: 14px;
    }

    .hero-next {
        right: 14px;
    }
}

/*==================================================
MOBİL
==================================================*/

@media (max-width: 767px) {

    .hero-slider {
        height: 600px;
    }

    .hero-overlay {
        background: rgba(10, 10, 10, 0.72);
    }

    .hero-container {
        padding: 0 24px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        justify-content: center;
        margin-bottom: 15px;
        font-size: 12px;
        letter-spacing: 1.3px;
    }

        .hero-subtitle::before {
            display: none;
        }

    .hero-content h1,
    .hero-content h2 {
        margin-bottom: 18px;
        font-size: 39px;
        line-height: 1.12;
        letter-spacing: -0.5px;
    }

    .hero-content p {
        margin-bottom: 27px;
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-btn {
        min-height: 49px;
        padding: 0 21px;
        font-size: 14px;
    }

    .hero-arrow {
        top: auto;
        bottom: 16px;
        width: 38px;
        height: 38px;
        transform: none;
    }

    .hero-prev {
        left: 20px;
    }

    .hero-next {
        right: 20px;
    }

    .hero-dots {
        bottom: 29px;
    }
}








/*==================================================
MODERN KIL ÇADIR KATEGORİLERİ
==================================================*/

.modern-categories {
    --main-color: #E31E24;
    --main-dark: #B81419;
    --dark-color: #151515;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #f4f4f2;
}

    .modern-categories::before {
        content: "";
        position: absolute;
        top: -300px;
        right: -300px;
        width: 700px;
        height: 700px;
        border: 1px solid rgba(227, 30, 36, 0.08);
        border-radius: 50%;
    }

    .modern-categories::after {
        content: "";
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        border: 1px solid rgba(227, 30, 36, 0.08);
        border-radius: 50%;
    }

.modern-categories__container {
    position: relative;
    z-index: 2;
    width: calc(100% - 50px);
    max-width: 1360px;
    margin: 0 auto;
}

/*==================================================
BAŞLIK
==================================================*/

.modern-categories__header {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 55px;
}

.modern-categories__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

    .modern-categories__eyebrow::before {
        content: "";
        width: 38px;
        height: 3px;
        background-color: var(--main-color);
    }

.modern-categories__header h2 {
    margin: 0;
    color: var(--dark-color);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -2.5px;
}

    .modern-categories__header h2 strong {
        color: var(--main-color);
        font-weight: 800;
    }

.modern-categories__header > p {
    max-width: 500px;
    margin: 0 0 6px;
    padding-left: 25px;
    border-left: 3px solid var(--main-color);
    color: #686868;
    font-size: 17px;
    line-height: 1.75;
}

/*==================================================
BENTO GRID
==================================================*/

.modern-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 285px;
    gap: 18px;
}

.modern-category {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    color: #ffffff;
    background-color: #222222;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
    isolation: isolate;
}

.modern-category--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.modern-category--wide {
    grid-column: span 2;
}

/*==================================================
KART GÖRSELİ
==================================================*/

.modern-category img {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}

.modern-category:hover img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

.modern-category__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.05) 10%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.88) 100% );
}

.modern-category::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient( 145deg, rgba(227, 30, 36, 0.45), transparent 55% );
    opacity: 0;
    transition: opacity 0.45s ease;
}

.modern-category:hover::before {
    opacity: 1;
}

/* Kırmızı alt çizgi */
.modern-category::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 0;
    left: 22px;
    height: 4px;
    border-radius: 5px 5px 0 0;
    background-color: var(--main-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.modern-category:hover::after {
    transform: scaleX(1);
}

/*==================================================
KART ÜST BÖLÜM
==================================================*/

.modern-category__top {
    position: absolute;
    top: 22px;
    right: 22px;
    left: 22px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .modern-category__top > span:first-child {
        display: inline-flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.30);
        border-radius: 50%;
        color: #ffffff;
        background-color: rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(8px);
        font-size: 12px;
        font-weight: 700;
    }

.modern-category__label {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 30px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/*==================================================
KART İÇERİĞİ
==================================================*/

.modern-category__content {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 3;
}

.modern-category__small {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.modern-category h3 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: clamp(22px, 2vw, 31px);
    line-height: 1.12;
    font-weight: 750;
    letter-spacing: -0.6px;
}

.modern-category--featured h3 {
    font-size: clamp(38px, 4vw, 58px);
    letter-spacing: -1.5px;
}

.modern-category__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.80);
    font-size: 13px;
    font-weight: 600;
}

    .modern-category__button i {
        display: inline-flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #ffffff;
        background-color: var(--main-color);
        font-size: 18px;
        font-style: normal;
        transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    }

.modern-category:hover .modern-category__button i {
    color: var(--main-color);
    background-color: #ffffff;
    transform: rotate(45deg);
}

/*==================================================
ALT İLETİŞİM
==================================================*/

.modern-categories__footer {
    display: flex;
    min-height: 105px;
    margin-top: 28px;
    padding: 25px 32px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 16px;
    background-color: var(--dark-color);
}

    .modern-categories__footer p {
        margin: 0;
        color: rgba(255, 255, 255, 0.70);
        font-size: 17px;
    }

        .modern-categories__footer p strong {
            color: #ffffff;
        }

.modern-categories__contact {
    display: inline-flex;
    min-height: 52px;
    padding: 0 23px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-radius: 9px;
    color: #ffffff;
    background-color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .modern-categories__contact span {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .modern-categories__contact:hover {
        color: #ffffff;
        background-color: var(--main-dark);
        transform: translateY(-2px);
    }

        .modern-categories__contact:hover span {
            transform: translateX(5px);
        }

/*==================================================
GÖRÜNME ANİMASYONU
==================================================*/

.reveal-item {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal-item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/*==================================================
TABLET
==================================================*/

@media (max-width: 1050px) {

    .modern-categories {
        padding: 90px 0;
    }

    .modern-categories__header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

        .modern-categories__header > p {
            max-width: 700px;
        }

    .modern-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 290px;
    }

    .modern-category--featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .modern-category--wide {
        grid-column: span 2;
    }
}

/*==================================================
MOBİL
==================================================*/

@media (max-width: 650px) {

    .modern-categories {
        padding: 70px 0;
    }

    .modern-categories__container {
        width: calc(100% - 30px);
    }

    .modern-categories__header {
        margin-bottom: 35px;
    }

        .modern-categories__header h2 {
            font-size: 39px;
            letter-spacing: -1.3px;
        }

        .modern-categories__header > p {
            padding-left: 17px;
            font-size: 15px;
        }

    .modern-categories__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 340px;
        gap: 14px;
    }

    .modern-category,
    .modern-category--featured,
    .modern-category--wide {
        grid-column: auto;
        grid-row: auto;
    }

    .modern-category--featured {
        height: 440px;
    }

        .modern-category--featured h3 {
            font-size: 39px;
        }

    .modern-category__content {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .modern-categories__footer {
        padding: 27px 20px;
        align-items: stretch;
        flex-direction: column;
    }

        .modern-categories__footer p {
            font-size: 15px;
            line-height: 1.6;
        }

    .modern-categories__contact {
        width: 100%;
    }
}

.hero-slider {
    overflow: hidden;
}



/*==================================================
KIL ÇADIR HAKKINDA
==================================================*/

.tent-about {
    --about-color: #E31E24;
    --about-dark: #B81419;
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    background-color: #ffffff;
}

    .tent-about::before {
        content: "KIL ÇADIR";
        position: absolute;
        top: 30px;
        right: -20px;
        color: transparent;
        font-size: clamp(90px, 13vw, 200px);
        line-height: 1;
        font-weight: 900;
        letter-spacing: -8px;
        white-space: nowrap;
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.04);
        pointer-events: none;
    }

.tent-about__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    width: calc(100% - 50px);
    max-width: 1360px;
    margin: 0 auto;
    align-items: center;
    gap: 90px;
}

/*==================================================
GÖRSEL ALANI
==================================================*/

.tent-about__visual {
    position: relative;
    min-height: 650px;
}

.tent-about__main-image {
    position: absolute;
    top: 0;
    right: 60px;
    bottom: 65px;
    left: 0;
    overflow: hidden;
    border-radius: 26px;
    background-color: #eeeeee;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
}

    .tent-about__main-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, transparent 50%, rgba(0, 0, 0, 0.25) 100% );
    }

    .tent-about__main-image img,
    .tent-about__small-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

.tent-about__visual:hover .tent-about__main-image img {
    transform: scale(1.035);
}

.tent-about__small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 42%;
    height: 275px;
    padding: 8px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.20);
}

    .tent-about__small-image img {
        border-radius: 13px;
    }

.tent-about__badge {
    position: absolute;
    top: 45px;
    left: -25px;
    z-index: 4;
    display: flex;
    width: 150px;
    height: 150px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 7px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background-color: var(--about-color);
    box-shadow: 0 18px 40px rgba(227, 30, 36, 0.30);
    text-align: center;
}

    .tent-about__badge span {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .tent-about__badge strong {
        margin: 2px 0;
        font-size: 30px;
        line-height: 1;
        font-weight: 800;
    }

    .tent-about__badge small {
        font-size: 11px;
        opacity: 0.80;
    }

/* Kırmızı dekor */
.tent-about__visual::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 35px;
    z-index: -1;
    width: 190px;
    height: 190px;
    border-radius: 25px;
    background-color: var(--about-color);
}

/*==================================================
İÇERİK
==================================================*/

.tent-about__eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    align-items: center;
    gap: 12px;
    color: var(--about-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

    .tent-about__eyebrow::before {
        content: "";
        width: 40px;
        height: 3px;
        background-color: var(--about-color);
    }

.tent-about__content h2 {
    margin: 0 0 27px;
    color: #171717;
    font-size: clamp(42px, 4.6vw, 65px);
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -2.4px;
}

    .tent-about__content h2 strong {
        display: block;
        color: var(--about-color);
        font-weight: 800;
    }

.tent-about__lead {
    margin: 0 0 17px;
    color: #252525;
    font-size: 20px;
    line-height: 1.65;
    font-weight: 600;
}

.tent-about__description {
    margin: 0;
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.8;
}

/*==================================================
ÖZELLİKLER
==================================================*/

.tent-about__features {
    display: grid;
    margin-top: 35px;
    border-top: 1px solid #e3e3e3;
}

.tent-about__feature {
    display: grid;
    grid-template-columns: 52px 1fr;
    padding: 18px 0;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e3e3e3;
    transition: padding-left 0.3s ease;
}

    .tent-about__feature:hover {
        padding-left: 10px;
    }

.tent-about__feature-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--about-color);
    background-color: rgba(227, 30, 36, 0.08);
    font-size: 12px;
    font-weight: 800;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.tent-about__feature:hover .tent-about__feature-number {
    color: #ffffff;
    background-color: var(--about-color);
}

.tent-about__feature h3 {
    margin: 0 0 4px;
    color: #1c1c1c;
    font-size: 17px;
    font-weight: 750;
}

.tent-about__feature p {
    margin: 0;
    color: #777777;
    font-size: 14px;
}

/*==================================================
BUTONLAR
==================================================*/

.tent-about__buttons {
    display: flex;
    margin-top: 35px;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.tent-about__primary-button {
    display: inline-flex;
    min-height: 55px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    gap: 35px;
    border-radius: 8px;
    color: #ffffff;
    background-color: var(--about-color);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .tent-about__primary-button span {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .tent-about__primary-button:hover {
        color: #ffffff;
        background-color: var(--about-dark);
        transform: translateY(-2px);
    }

        .tent-about__primary-button:hover span {
            transform: translateX(5px);
        }

.tent-about__text-button {
    display: inline-flex;
    padding-bottom: 5px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #bbbbbb;
    color: #252525;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

    .tent-about__text-button span {
        color: var(--about-color);
        font-size: 18px;
    }

    .tent-about__text-button:hover {
        color: var(--about-color);
        border-color: var(--about-color);
    }

/*==================================================
ANİMASYON
==================================================*/

.about-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .about-reveal.about-visible {
        opacity: 1;
        transform: translateY(0);
    }

.tent-about__content.about-reveal {
    transition-delay: 0.15s;
}

/*==================================================
TABLET
==================================================*/

@media (max-width: 1050px) {

    .tent-about {
        padding: 95px 0;
    }

    .tent-about__container {
        grid-template-columns: 1fr;
        gap: 75px;
    }

    .tent-about__visual {
        width: 100%;
        max-width: 750px;
        min-height: 620px;
        margin: 0 auto;
    }

    .tent-about__content {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
    }
}

/*==================================================
MOBİL
==================================================*/

@media (max-width: 650px) {

    .tent-about {
        padding: 75px 0;
    }

        .tent-about::before {
            display: none;
        }

    .tent-about__container {
        width: calc(100% - 30px);
        gap: 55px;
    }

    .tent-about__visual {
        min-height: 480px;
    }

    .tent-about__main-image {
        right: 25px;
        bottom: 50px;
        border-radius: 18px;
    }

    .tent-about__small-image {
        width: 48%;
        height: 175px;
        border-radius: 15px;
    }

    .tent-about__badge {
        top: 25px;
        left: -5px;
        width: 115px;
        height: 115px;
        padding: 15px;
        border-width: 5px;
    }

        .tent-about__badge strong {
            font-size: 23px;
        }

    .tent-about__content h2 {
        font-size: 39px;
        letter-spacing: -1.4px;
    }

    .tent-about__lead {
        font-size: 18px;
    }

    .tent-about__buttons {
        align-items: stretch;
        flex-direction: column;
        gap: 22px;
    }

    .tent-about__primary-button {
        width: 100%;
    }

    .tent-about__text-button {
        align-self: flex-start;
    }
}