/* =========================================================
   FEDERASYON WEB
   HOME HERO
   Sabit Background + Dinamik Haber Görseli
========================================================= */

.home-hero-full {
    --hero-navy-950: #041329;
    --hero-navy-900: #061b3a;
    --hero-navy-800: #0a2d5c;
    --hero-navy-700: #124b89;

    --hero-gold: #f5b400;
    --hero-gold-light: #ffd667;

    --hero-white: #ffffff;

    --hero-inner-width: 1480px;

    position: relative;
    isolation: isolate;

    width: 100%;

    overflow: hidden;

    color: var(--hero-white);
    background: var(--hero-navy-950);
}


/* =========================================================
   SABİT HERO ARKA PLANI
========================================================= */

.home-hero-full__background {
    position: absolute;
    inset: 0;
    z-index: 0;

    pointer-events: none;

    background-image:
        url("/images/frontend/hero/tgf-hero.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.015);
}


/* =========================================================
   SABİT OVERLAY
========================================================= */

.home-hero-full__background::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(4, 19, 41, .94) 0%,
            rgba(6, 27, 58, .88) 34%,
            rgba(6, 34, 72, .72) 58%,
            rgba(4, 24, 52, .46) 100%);
}


/* =========================================================
   SLIDER SHELL
========================================================= */

.home-hero-full__slider {
    position: relative;
    z-index: 2;

    width: 100%;

    min-height: 780px;
}


/* =========================================================
   SLIDES
========================================================= */

.home-hero-full__slide {
    position: absolute;
    inset: 0;

    display: grid;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .42s ease,
        visibility .42s ease,
        transform .42s ease;
}


.home-hero-full__slide.active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);
}


/* =========================================================
   CONTENT CONTAINER
========================================================= */

.home-hero-full__inner {
    position: relative;
    z-index: 4;

    width: min(calc(100% - 96px), var(--hero-inner-width));
    min-height: 780px;

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(0, .78fr) minmax(650px, 1.22fr);

    align-items: center;

    gap: clamp(50px, 5vw, 90px);

    padding-top: 70px;
    padding-bottom: 105px;
}


/* =========================================================
   SOL İÇERİK
========================================================= */

.home-hero-full__content {
    position: relative;

    min-width: 0;
    max-width: 620px;

    padding-left: 26px;
}


.home-hero-full__content::before {
    content: "";

    position: absolute;

    top: 4px;
    bottom: 4px;
    left: 0;

    width: 3px;

    border-radius: 999px;

    background:
        linear-gradient(180deg,
            transparent,
            var(--hero-gold) 16%,
            var(--hero-gold-light) 82%,
            transparent);

    box-shadow:
        0 0 22px rgba(245, 180, 0, .30);
}


/* =========================================================
   EYEBROW
========================================================= */

.home-hero-full__eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 20px;
}


.home-hero-full__eyebrow>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 29px;

    padding: 7px 11px;

    border-radius: 6px;

    color: var(--hero-navy-950);

    background:
        linear-gradient(135deg,
            var(--hero-gold-light),
            var(--hero-gold));

    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}


.home-hero-full__eyebrow time {
    display: inline-flex;
    align-items: center;

    color: rgba(255, 255, 255, .64);

    font-size: 11px;
    font-weight: 750;
}


.home-hero-full__eyebrow time::before {
    content: "";

    width: 5px;
    height: 5px;

    margin-right: 9px;

    border-radius: 50%;

    background: var(--hero-gold);
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.home-hero-full__content h2 {
    max-width: 700px;

    margin: 0 0 20px;

    color: #ffffff;

    font-size:
        clamp(36px,
            3.8vw,
            58px);

    line-height: 1.05;
    font-weight: 800;

    letter-spacing: -.04em;

    text-wrap: balance;
}


.home-hero-full__content p {
    max-width: 590px;

    margin: 0 0 29px;

    color: rgba(255, 255, 255, .72);

    font-size: 16px;
    line-height: 1.68;
    font-weight: 500;
}


/* =========================================================
   BUTTON
========================================================= */

.home-hero-full__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 47px;

    padding: 0 18px;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 7px;

    color: #ffffff !important;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(10px);

    text-decoration: none;

    font-size: 12px;
    font-weight: 850;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.home-hero-full__button:hover {
    border-color: var(--hero-gold);

    color: var(--hero-navy-950) !important;

    background: var(--hero-gold);

    transform: translateY(-2px);
}


.home-hero-full__button span {
    font-size: 17px;

    transition:
        transform .25s ease;
}


.home-hero-full__button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   SAĞ BÜYÜK HABER GÖRSELİ
========================================================= */

.home-hero-full__featured {
    position: relative;

    min-width: 0;

    width: 100%;
}


.home-hero-full__featured-frame {
    position: relative;

    display: block;

    width: 100%;
    height: 560px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;

    background: rgba(4, 19, 41, .72);

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .34);
}


.home-hero-full__featured-frame::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(180deg,
            rgba(4, 19, 41, .00) 30%,
            rgba(4, 19, 41, .04) 60%,
            rgba(4, 19, 41, .42) 100%);
}


.home-hero-full__featured-frame img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1);

    transition:
        transform 8s ease;
}


.home-hero-full__slide.active .home-hero-full__featured-frame img {
    transform: scale(1.035);
}


/* =========================================================
   FEATURED BADGE
========================================================= */

.home-hero-full__featured-badge {
    position: absolute;

    right: 16px;
    bottom: 16px;
    z-index: 3;

    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding: 0 10px;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;

    color: #ffffff;

    background: rgba(4, 19, 41, .68);

    backdrop-filter: blur(10px);

    font-size: 9px;
    font-weight: 850;

    letter-spacing: .07em;
    text-transform: uppercase;
}


/* =========================================================
   FALLBACK
========================================================= */

.home-hero-full__featured-placeholder {
    display: grid;
    place-items: center;

    width: 100%;
    height: 100%;

    color: rgba(255, 255, 255, .25);

    font-size: 42px;
    font-weight: 900;
    letter-spacing: .08em;

    background:
        linear-gradient(135deg,
            #061b3a,
            #124b89);
}


/* =========================================================
   UI BAR
========================================================= */

.home-hero-full__ui {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    z-index: 8;

    pointer-events: none;
}


.home-hero-full__ui-inner {
    width: min(calc(100% - 96px), var(--hero-inner-width));

    margin-inline: auto;

    padding-bottom: 30px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


/* =========================================================
   DOTS
========================================================= */

.home-hero-full__dots {
    display: flex;
    align-items: center;

    gap: 8px;

    pointer-events: auto;
}


.home-hero-full__dot {
    width: 18px;
    height: 3px;

    padding: 0;

    border: 0;
    border-radius: 999px;

    background: rgba(255, 255, 255, .30);

    cursor: pointer;

    transition:
        width .25s ease,
        background .25s ease;
}


.home-hero-full__dot.active {
    width: 42px;

    background: var(--hero-gold);
}


/* =========================================================
   CONTROLS
========================================================= */

.home-hero-full__controls {
    display: flex;
    align-items: center;

    gap: 6px;

    padding: 6px;

    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 7px;

    background: rgba(3, 18, 42, .68);

    backdrop-filter: blur(14px);

    pointer-events: auto;
}


.home-hero-full__counter {
    min-width: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding-inline: 8px;

    color: rgba(255, 255, 255, .48);

    font-size: 10px;
    font-weight: 800;
}


.home-hero-full__counter span:first-child {
    color: var(--hero-gold);

    font-size: 14px;
    font-weight: 950;
}


.home-hero-full__counter i {
    display: block;

    width: 17px;
    height: 1px;

    background: rgba(255, 255, 255, .22);
}


.home-hero-full__control {
    position: static !important;

    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 6px;

    color: #ffffff;

    background: rgba(255, 255, 255, .05);

    cursor: pointer;

    transition:
        color .22s ease,
        background .22s ease,
        border-color .22s ease,
        transform .22s ease;
}


.home-hero-full__control:hover {
    border-color: var(--hero-gold);

    color: var(--hero-navy-950);

    background: var(--hero-gold);

    transform: translateY(-1px);
}


/* =========================================================
   PROGRESS
========================================================= */

.home-hero-full__progress {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    z-index: 9;

    height: 3px;

    overflow: hidden;

    background: rgba(255, 255, 255, .08);
}


.home-hero-full__progress span {
    display: block;

    width: 0;
    height: 100%;

    background:
        linear-gradient(90deg,
            #d99800,
            var(--hero-gold),
            var(--hero-gold-light));
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .home-hero-full__slider {
        min-height: auto;
    }


    .home-hero-full__inner {
        min-height: auto;

        grid-template-columns:
            minmax(0, 1fr) minmax(330px, .78fr);

        gap: 35px;

        padding-top: 90px;
        padding-bottom: 100px;
    }


    .home-hero-full__featured-frame {
        height: 390px;
    }


    .home-hero-full__content h2 {
        font-size:
            clamp(32px,
                4vw,
                45px);
    }

}


/* =========================================================
   10. HERO LOWER AREA
========================================================= */

.home-hero-full__lower {
    position: relative;
    z-index: 12;
    margin-top: -1px;
    padding: 0 0 44px;
    background:
        radial-gradient(circle at 8% 8%, rgba(245, 180, 0, .08), transparent 28%),
        radial-gradient(circle at 92% 38%, rgba(56, 128, 216, .20), transparent 34%),
        linear-gradient(89deg, #061b3ad9 0%, #0a2c59de 48%, #154e8bc9 100%);
}

.home-hero-full__lower::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(135deg,
            rgba(255, 255, 255, .014) 0,
            rgba(255, 255, 255, .014) 1px,
            transparent 1px,
            transparent 18px);
}

.home-hero-full__lower-inner {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 96px), var(--hero-inner-width));
    margin-inline: auto;
}

/* =========================================================
   11. QUICK ACCESS PANEL
========================================================= */

.home-hero-full__quick {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 0 0 12px 12px;
    background: rgba(255, 255, 255, .97);
    box-shadow:
        0 24px 60px rgba(0, 10, 29, .26),
        inset 0 1px 0 rgba(255, 255, 255, .82);
}

.home-hero-full__quick-card {
    position: relative;
    min-width: 0;
    min-height: 116px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding: 20px 18px;
    overflow: hidden;
    border-right: 1px solid rgba(6, 27, 58, .09);
    color: var(--hero-navy-900);
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .99),
            rgba(246, 248, 251, .98));
    text-decoration: none;
    transition:
        color .27s ease,
        background .27s ease,
        transform .27s ease,
        box-shadow .27s ease;
}

.home-hero-full__quick-card:last-child {
    border-right: 0;
}

.home-hero-full__quick-card::before {
    content: "";
    position: absolute;
    right: 17px;
    bottom: 0;
    left: 17px;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background:
        linear-gradient(90deg,
            var(--hero-gold),
            var(--hero-gold-light));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .27s ease;
}

.home-hero-full__quick-card:hover {
    color: var(--hero-navy-900);
    background:
        linear-gradient(135deg,
            #ffffff,
            #fff8df);
    box-shadow: inset 0 -4px 0 rgba(245, 180, 0, .08);
}

.home-hero-full__quick-card:hover::before {
    transform: scaleX(1);
}

/* Primary card */

.home-hero-full__quick-card.is-primary {
    border-right-color: rgba(255, 255, 255, .12);
    color: #ffffff;
    background:
        linear-gradient(135deg,
            #082653 0%,
            #0e4380 100%);
}

.home-hero-full__quick-card.is-primary::before {
    transform: scaleX(1);
}

.home-hero-full__quick-card.is-primary strong {
    color: #ffffff;
}

.home-hero-full__quick-card.is-primary small {
    color: rgba(255, 255, 255, .65);
}

/* Quick icon */

.home-hero-full__quick-icon {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: var(--hero-navy-800);
    background: rgba(8, 42, 87, .07);
    transition:
        color .27s ease,
        background .27s ease,
        transform .27s ease;
}

.home-hero-full__quick-icon svg {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
    max-height: 23px !important;
    display: block;
    flex: none;
}

.home-hero-full__quick-card.is-primary .home-hero-full__quick-icon {
    color: var(--hero-gold);
    background: rgba(255, 255, 255, .08);
}

.home-hero-full__quick-card:hover .home-hero-full__quick-icon {
    color: var(--hero-navy-900);
    background: rgba(245, 180, 0, .22);
    transform: translateY(-2px);
}

/* Quick typography */

.home-hero-full__quick-card>span:last-child {
    min-width: 0;
}

.home-hero-full__quick-card strong {
    display: block;
    margin-bottom: 6px;
    overflow: hidden;
    color: var(--hero-navy-900);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -.01em;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.home-hero-full__quick-card small {
    display: -webkit-box;
    overflow: hidden;
    color: #69778b;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

/* =========================================================
   12. CURRENT PULSE
========================================================= */

.home-hero-full__pulse {
    margin-top: 14px;
}

.home-pulse {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin: 0;
}

.home-pulse-card {
    position: relative;
    min-width: 0;
    min-height: 72px;
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 7px;
    color: #ffffff;
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition:
        color .24s ease,
        background .24s ease,
        border-color .24s ease,
        transform .24s ease;
}

.home-pulse-card:hover {
    border-color: rgba(245, 180, 0, .52);
    color: #ffffff;
    background: rgba(255, 255, 255, .095);
    transform: translateY(-2px);
}

.home-pulse-icon {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: 6px;
    color: var(--hero-navy-900);
    background:
        linear-gradient(135deg,
            var(--hero-gold-light),
            var(--hero-gold));
    box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
}

.home-pulse-icon svg {
    width: 17px !important;
    height: 17px !important;
    max-width: 17px !important;
    max-height: 17px !important;
    display: block;
}

.home-pulse-copy {
    min-width: 0;
}

.home-pulse-copy small {
    display: block;
    margin-bottom: 4px;
    overflow: hidden;
    color: #f7c744;
    font-size: 8px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: .09em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-pulse-copy strong {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, .91);
    font-size: 14px;
    line-height: 1.38;
    font-weight: 600;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.home-pulse-arrow {
    color: rgba(255, 255, 255, .36);
    font-size: 15px;
    line-height: 1;
    transition:
        color .24s ease,
        transform .24s ease;
}

.home-pulse-card:hover .home-pulse-arrow {
    color: var(--hero-gold);
    transform: translateX(3px);
}

/* =========================================================
   RESPONSIVE - TABLET LANDSCAPE
========================================================= */

@media (max-width: 1200px) {

    .home-hero-full__lower-inner {
        width: min(calc(100% - 64px), var(--hero-inner-width));
    }

    .home-hero-full__quick {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-radius: 0 0 10px 10px;
    }

    .home-hero-full__quick-card:nth-child(3) {
        border-right: 0;
    }

    .home-hero-full__quick-card:nth-child(n + 4) {
        border-top: 1px solid rgba(6, 27, 58, .09);
    }

    .home-hero-full__quick-card:nth-child(4) {
        grid-column: span 1;
    }

    .home-hero-full__quick-card:nth-child(5) {
        grid-column: span 2;
        border-right: 0;
    }
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {

    .home-hero-full__slider {
        height: 560px;
        min-height: 560px;
    }

    .home-hero-full__inner,
    .home-hero-full__ui-inner,
    .home-hero-full__lower-inner {
        width: min(calc(100% - 42px), var(--hero-inner-width));
    }

    .home-hero-full__content {
        max-width: 590px;
    }

    .home-hero-full__content h2 {
        font-size: clamp(36px, 6vw, 52px);
    }

    .home-hero-full__content p {
        max-width: 550px;
        font-size: 15px;
    }

    .home-pulse {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {

    .home-hero-full__background::after {
        background:
            linear-gradient(180deg,
                rgba(4, 19, 41, .92) 0%,
                rgba(4, 19, 41, .90) 50%,
                rgba(4, 19, 41, .98) 100%);
    }

    .home-hero-full__inner {
        width: 100%;
        grid-template-columns: 1fr;
        align-items: flex-end;
        gap: 22px;
        padding: 22px 19px 82px;
    }

    .home-hero-full__content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: 0;
    }

    .home-hero-full__content::before {
        display: none;
    }

    .home-hero-full__eyebrow {
        gap: 9px;
        margin-bottom: 12px;
        margin-top: 15px;
    }

    .home-hero-full__eyebrow>span {
        min-height: 25px;
        padding: 6px 9px;
        font-size: 8px;
    }

    .home-hero-full__eyebrow time {
        font-size: 9px;
    }

    .home-hero-full__content h2 {
        max-width: 100%;
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 1.10;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .home-hero-full__content p {
        display: none;
    }

    .home-hero-full__button {
        min-height: 41px;
        padding: 10px 15px;
        font-size: 11px;
    }

    .home-hero-full__featured-frame {
        height: 310px;
    }

    .home-hero-full__ui-inner {
        width: calc(100% - 30px);
        padding-bottom: 12px;
    }

    .home-hero-full__counter {
        display: none;
    }

    .home-hero-full__controls {
        gap: 4px;
        padding: 4px;
    }

    .home-hero-full__control {
        flex-basis: 31px;
        width: 31px;
        height: 31px;
        font-size: 11px;
    }

    .home-hero-full__dot {
        width: 12px;
    }

    .home-hero-full__dot.active {
        width: 27px;
    }

    .home-hero-full__lower-inner {
        width: calc(100% - 24px);
    }

    .home-hero-full__quick {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
        border-radius: 0 0 9px 9px;
    }

    .home-hero-full__quick-card {
        min-height: 102px;
        grid-template-columns: 35px minmax(0, 1fr);
        gap: 9px;
        padding: 15px 12px;
    }

    .home-hero-full__quick-card:nth-child(odd) {
        border-right: 1px solid rgba(6, 27, 58, .09);
    }

    .home-hero-full__quick-card:nth-child(even) {
        border-right: 0;
    }

    .home-hero-full__quick-card:nth-child(n + 3) {
        border-top: 1px solid rgba(6, 27, 58, .09);
    }

    .home-hero-full__quick-card:last-child {
        grid-column: 1 / -1;
        border-right: 0;
    }

    .home-hero-full__quick-icon {
        width: 35px;
        height: 35px;
    }

    .home-hero-full__quick-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .home-hero-full__quick-card strong {
        font-size: 10px;
    }

    .home-hero-full__quick-card small {
        font-size: 12px;
    }

    .home-hero-full__lower {
        padding-bottom: 30px;
    }
}

/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-hero-full__slider {
        height: 470px;
        min-height: 470px;
    }

    .home-hero-full__inner {
        width: calc(100% - 28px);
        padding: 0 15px 94px;
    }

    .home-hero-full__eyebrow time {
        display: none;
    }

    .home-hero-full__content h2 {
        font-size: 25px;
    }

    .home-hero-full__button {
        min-height: 39px;
        padding: 9px 13px;
    }

    .home-hero-full__featured-frame {
        height: 275px;
    }

    .home-hero-full__dot.active {
        width: 30px;
    }

    .home-hero-full__ui-inner {
        width: calc(100% - 20px);
    }

    .home-hero-full__quick {
        grid-template-columns: 1fr;
    }

    .home-hero-full__quick-card,
    .home-hero-full__quick-card:nth-child(odd),
    .home-hero-full__quick-card:nth-child(even),
    .home-hero-full__quick-card:last-child {
        grid-column: auto;
        min-height: 78px;
        border-right: 0;
        border-top: 1px solid rgba(6, 27, 58, .09);
    }

    .home-hero-full__quick-card:first-child {
        border-top: 0;
    }

    .home-hero-full__quick-card {
        grid-template-columns: 34px minmax(0, 1fr);
        padding: 12px 13px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-hero-full__slide,
    .home-hero-full__featured-frame img,
    .home-hero-full__button,
    .home-hero-full__control,
    .home-hero-full__quick-card,
    .home-pulse-card {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================================
   HOME HERO - DESKTOP COMPACT
   1920x1080 FINAL TUNING
========================================================= */

@media (min-width: 1201px) {

    /* =====================================================
       ANA HERO YÜKSEKLİĞİ
    ====================================================== */

    .home-hero-full__slider {
        min-height: 610px;
    }

    .home-hero-full__inner {
        min-height: 610px;

        grid-template-columns:
            minmax(0, .82fr) minmax(560px, 1.18fr);

        gap: clamp(38px, 4vw, 68px);

        padding-top: 38px;
        padding-bottom: 68px;
    }


    /* =====================================================
       SOL İÇERİK
    ====================================================== */

    .home-hero-full__content {
        max-width: 570px;
        padding-left: 22px;
    }

    .home-hero-full__eyebrow {
        gap: 9px;
        margin-bottom: 13px;
    }

    .home-hero-full__eyebrow>span {
        min-height: 25px;

        padding: 6px 9px;

        font-size: 9px;
    }

    .home-hero-full__eyebrow time {
        font-size: 10px;
    }

    .home-hero-full__content h2 {
        max-width: 620px;

        margin-bottom: 14px;

        font-size:
            clamp(31px,
                3vw,
                48px);

        line-height: 1.04;
    }

    .home-hero-full__content p {
        max-width: 540px;

        margin-bottom: 20px;

        font-size: 14px;
        line-height: 1.55;
    }

    .home-hero-full__button {
        min-height: 42px;

        gap: 9px;

        padding: 0 15px;

        font-size: 11px;
    }


    /* =====================================================
       SAĞ HABER GÖRSELİ
    ====================================================== */

    .home-hero-full__featured-frame {
        height: 440px;

        border-radius: 10px;
    }

    .home-hero-full__featured-badge {
        right: 12px;
        bottom: 12px;

        min-height: 25px;

        font-size: 8px;
    }


    /* =====================================================
       SLIDER UI
    ====================================================== */

    .home-hero-full__ui-inner {
        padding-bottom: 18px;
    }

    .home-hero-full__controls {
        gap: 4px;

        padding: 4px;
    }

    .home-hero-full__control {
        flex-basis: 31px;

        width: 31px;
        height: 31px;
    }

    .home-hero-full__counter {
        min-width: 68px;

        font-size: 9px;
    }

    .home-hero-full__counter span:first-child {
        font-size: 12px;
    }

    .home-hero-full__dot {
        width: 15px;
    }

    .home-hero-full__dot.active {
        width: 34px;
    }


    /* =====================================================
       HERO ALT BÖLÜM
    ====================================================== */

    .home-hero-full__lower {
        padding-bottom: 26px;
    }


    /* =====================================================
       HIZLI ERİŞİM
    ====================================================== */

    .home-hero-full__quick-card {
        min-height: 88px;

        grid-template-columns:
            36px minmax(0, 1fr);

        gap: 10px;

        padding: 13px 14px;
    }

    .home-hero-full__quick-icon {
        width: 36px;
        height: 36px;
    }

    .home-hero-full__quick-icon svg {
        width: 19px !important;
        height: 19px !important;

        max-width: 19px !important;
        max-height: 19px !important;
    }

    .home-hero-full__quick-card strong {
        margin-bottom: 3px;

        font-size: 10px;
    }

    .home-hero-full__quick-card small {
        font-size: 11px;
        line-height: 1.3;
    }


    /* =====================================================
       ALT BİLGİ / PULSE KARTLARI
    ====================================================== */

    .home-hero-full__pulse {
        margin-top: 9px;
    }

    .home-pulse-card {
        min-height: 58px;

        grid-template-columns:
            30px minmax(0, 1fr) 15px;

        gap: 8px;

        padding: 9px 11px;
    }

    .home-pulse-icon {
        width: 30px;
        height: 30px;
    }

    .home-pulse-icon svg {
        width: 15px !important;
        height: 15px !important;
    }

    .home-pulse-copy small {
        margin-bottom: 2px;

        font-size: 7px;
    }

    .home-pulse-copy strong {
        font-size: 11px;
        line-height: 1.3;
    }
}