.replay-button {
    background: #7a35d4;
}

.replay-button:hover {
    background: #6427b7;
}
.article-link-box {
    margin-top: 28px;
    text-align: center;
}

.article-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 210px;
    padding: 14px 28px;

    border-radius: 10px;

    background: linear-gradient(
        180deg,
        #36ef70 0%,
        #0dbf4c 52%,
        #047a2d 100%
    );

    color: #fff !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 900;

    box-shadow:
        0 5px 0 #035b21,
        0 10px 24px rgba(0, 0, 0, .25),
        0 0 18px rgba(0, 230, 85, .55);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;
}

.article-link-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);

    box-shadow:
        0 7px 0 #035b21,
        0 14px 30px rgba(0, 0, 0, .3),
        0 0 28px rgba(0, 255, 95, .8);
}
.article-body a {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg,#00e65c,#00b33c);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,255,100,.6);
    transition: .3s;
}

.article-body a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0,255,100,.9);
}
.informasi-hero {
    min-height: 330px;

    background-image:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.55)
        ),
        url('../images/banner-maskot.jpg');

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

}
.promo-banner-glow {
    margin: 30px auto;
    animation: bannerPulse 2s infinite;
}

.promo-banner-glow img {
    width: 100%;
    display: block;
    border-radius: 15px;

    box-shadow:
        0 0 20px rgba(255,215,0,.5);

    transition: .3s;
}

.promo-banner-glow img:hover {
    transform: scale(1.02);

    box-shadow:
        0 0 35px rgba(255,215,0,.9);
}

@keyframes bannerPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }

    100% {
        transform: scale(1);
    }
}
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hero-btn {
    position: relative;
    min-width: 165px;
    padding: 12px 22px;

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

    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;

    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.6px;

    overflow: hidden;
    isolation: isolate;

    box-shadow:
        0 5px 0 rgba(40, 25, 0, 0.85),
        0 9px 18px rgba(0, 0, 0, 0.45),
        0 0 16px rgba(255, 213, 0, 0.55);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;

    animation:
        heroButtonBounce 2.4s ease-in-out infinite,
        heroButtonGlow 1.8s ease-in-out infinite alternate;
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: -35%;
    left: -70%;
    width: 45%;
    height: 180%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.85),
        transparent
    );

    transform: rotate(22deg);
    animation: heroButtonShine 2.7s linear infinite;
    z-index: -1;
}

.hero-btn-register {
    background: linear-gradient(
        180deg,
        #fff36a 0%,
        #ffc400 48%,
        #e28a00 100%
    );
}

.hero-btn-login {
    color: #fff;

    background: linear-gradient(
        180deg,
        #ff5252 0%,
        #df173d 48%,
        #92001f 100%
    );

    box-shadow:
        0 5px 0 rgba(75, 0, 15, 0.9),
        0 9px 18px rgba(0, 0, 0, 0.45),
        0 0 16px rgba(255, 35, 80, 0.65);
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.04);
    filter: brightness(1.12);

    box-shadow:
        0 8px 0 rgba(40, 25, 0, 0.8),
        0 14px 28px rgba(0, 0, 0, 0.55),
        0 0 28px rgba(255, 222, 0, 0.85);
}

.hero-btn-login:hover {
    box-shadow:
        0 8px 0 rgba(75, 0, 15, 0.9),
        0 14px 28px rgba(0, 0, 0, 0.55),
        0 0 30px rgba(255, 35, 80, 0.9);
}

.hero-btn:active {
    transform: translateY(3px) scale(0.98);
    box-shadow:
        0 2px 0 rgba(30, 20, 0, 0.9),
        0 5px 10px rgba(0, 0, 0, 0.4);
}

@keyframes heroButtonBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes heroButtonGlow {
    from {
        filter: brightness(1);
    }

    to {
        filter: brightness(1.15);
    }
}

@keyframes heroButtonShine {
    0% {
        left: -70%;
    }

    55%,
    100% {
        left: 130%;
    }
}

@media (max-width: 650px) {
    .hero-buttons {
        gap: 10px;
    }

    .hero-btn {
        min-width: 135px;
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-btn,
    .hero-btn::before {
        animation: none;
    }
}
.payment-section {
    padding: 28px 0;
    background: #121212;
}

.payment-container {
    width: min(1180px, calc(100% - 30px));
    margin: 0 auto;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 12px;
    align-items: stretch;
}

.payment-card {
    position: relative;
    min-height: 72px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #242424;
    border-left: 5px solid #17f400;
    border-radius: 6px;

    overflow: visible;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.payment-card:hover {
    transform: translateY(-3px);
    background: #2d2d2d;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}

.payment-card img {
    width: 100%;
    max-width: 115px;
    height: 45px;
    display: block;
    object-fit: contain;
}

.payment-status {
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);

    min-width: 42px;
    padding: 2px 7px;

    background: #72d900;
    color: #0c3200;

    border-radius: 12px;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    letter-spacing: .4px;
}

@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 9px;
    }

    .payment-card {
        min-height: 62px;
        padding: 8px;
    }

    .payment-card img {
        max-width: 95px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
* {
    box-sizing: border-box;
}
.hero-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 15px;

    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #fff7c7 40%,
        #ffd700 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 3px 10px rgba(0,0,0,.7);

    letter-spacing: -2px;
}
.hero-desc {
    font-size: 68px;
    font-weight: 900;
    color: #fff;

    text-shadow:
        0 0 10px rgba(255,255,255,.5),
        0 0 20px rgba(255,215,0,.5),
        0 0 40px rgba(255,215,0,.3),
        0 4px 10px rgba(0,0,0,.8);
}
body {
    margin: 0;
    background: #f4f5f7;
    color: #202124;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

.site-header {
    background: #111;
    color: #fff;
}

.header-inner {
    width: min(1180px, calc(100% - 30px));
    min-height: 90px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.logo span {
    color: #f2b705;
}

.search-form {
    width: min(430px, 100%);
    display: flex;
}

.search-form input {
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-radius: 7px 0 0 7px;
    font-size: 15px;
}

.search-form button {
    padding: 12px 18px;
    border: 0;
    border-radius: 0 7px 7px 0;
    background: #d92242;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.navigation {
    background: #fff;
    border-bottom: 1px solid #e2e2e2;
}

.navigation-inner {
    width: min(1180px, calc(100% - 30px));
    margin: auto;
    display: flex;
    gap: 25px;
}

.navigation a {
    padding: 15px 0;
    color: #222;
    text-decoration: none;
    font-weight: bold;
}

.navigation a:hover {
    color: #d92242;
}

.container {
    width: min(1180px, calc(100% - 30px));
    margin: 30px auto 60px;
}

.hero {
    min-height: 400px;
    padding: 50px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    color: #fff;

    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url('../images/banner-maskot.jpg');

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

    box-shadow: 0 15px 45px rgba(0,0,0,.15);
}
.hero > div {
    max-width: 700px;

}

.hero-logo {
    width: 120px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}
.hero-label {
    display: inline-block;
    padding: 6px 11px;
    margin-bottom: 15px;
    border-radius: 30px;
    background: #f2b705;
    color: #111;
    font-size: 13px;
    font-weight: bold;
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.08;
}

.hero p {
    margin: 0;
    color: #ddd;
    font-size: 18px;
}

.section-heading {
    margin: 40px 0 20px;
    border-bottom: 2px solid #ddd;
}

.section-heading h2 {
    display: inline-block;
    margin: 0 0 -2px;
    padding-bottom: 10px;
    border-bottom: 3px solid #d92242;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .13);
}

.image-link {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ddd;
}

.image-link img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-card:hover .image-link img {
    transform: scale(1.04);
}

.news-content {
    padding: 20px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
    color: #777;
    font-size: 13px;
}

.news-meta span {
    color: #d92242;
    font-weight: bold;
}

.news-card h2 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.35;
}

.news-card h2 a {
    color: #222;
    text-decoration: none;
}

.news-card p {
    margin: 0 0 18px;
    color: #666;
}

.read-more {
    display: inline-block;
    padding: 9px 13px;
    border-radius: 6px;
    background: #1669d8;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.empty-state {
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
}

.article-container {
    width: min(900px, calc(100% - 30px));
    margin: 40px auto 70px;
}

.article-detail {
    padding: 35px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.back-link {
    display: inline-block;
    margin-bottom: 25px;
    color: #1669d8;
    text-decoration: none;
}

.article-meta {
    display: flex;
    gap: 15px;
    color: #777;
    font-size: 14px;
}

.article-meta span {
    color: #d92242;
    font-weight: bold;
}

.article-detail h1 {
    margin: 12px 0 25px;
    font-size: clamp(30px, 5vw, 50px);
    line-height: 1.15;
}

.article-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 12px;
}

.article-lead {
    padding: 20px 0;
    color: #555;
    font-size: 19px;
    font-weight: bold;
}

.article-body {
    font-size: 17px;
    line-height: 1.9;
}

.site-footer {
    padding: 25px;
    background: #111;
    color: #aaa;
    text-align: center;
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .header-inner {
        padding: 20px 0;
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        text-align: center;
    }

    .navigation-inner {
        overflow-x: auto;
    }

    .hero {
        min-height: 250px;
        padding: 30px 24px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .article-detail {
        padding: 23px;
    }
}
/* =========================================================
   BLOK POLA HARI INI
========================================================= */

.pola-section {
    margin: 36px 0 48px;
    padding: 24px;

    background:
        linear-gradient(
            135deg,
            #121212 0%,
            #1d1d1d 55%,
            #261900 100%
        );

    border: 1px solid rgba(255, 196, 0, 0.45);
    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.17),
        0 0 22px rgba(255, 196, 0, 0.12);
}

.pola-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;

    margin-bottom: 20px;
    padding-bottom: 17px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.pola-label {
    display: inline-block;

    margin-bottom: 6px;
    padding: 4px 10px;

    background: #ffc400;
    color: #111;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.7px;
}

.pola-heading h2 {
    margin: 0;

    color: #ffc400;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.pola-heading p {
    margin: 5px 0 0;

    color: #c9c9c9;
    font-size: 14px;
}

.pola-all-link {
    color: #ffc400;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.pola-all-link:hover {
    color: #fff2a1;
}

.pola-card {
    display: grid;
    grid-template-columns: minmax(280px, 45%) 1fr;
    gap: 25px;

    overflow: hidden;

    background: #fff;
    border-radius: 13px;
}

.pola-image-link {
    position: relative;
    display: block;
    min-height: 260px;
    overflow: hidden;
    background: #222;
}

.pola-image-link img {
    width: 100%;
    height: 100%;
    min-height: 260px;

    display: block;
    object-fit: cover;

    transition: transform 0.35s ease;
}

.pola-image-link:hover img {
    transform: scale(1.045);
}

.pola-image-badge {
    position: absolute;
    top: 14px;
    left: 14px;

    padding: 7px 12px;

    background: linear-gradient(
        180deg,
        #fff46a,
        #ffc400
    );

    color: #111;
    border-radius: 7px;

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

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.35),
        0 0 16px rgba(255, 196, 0, 0.55);
}

.pola-content {
    padding: 25px 25px 25px 0;
    align-self: center;
}

.pola-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-bottom: 11px;

    color: #777;
    font-size: 13px;
}

.pola-meta span {
    color: #d59600;
    font-weight: 800;
}

.pola-content h3 {
    margin: 0 0 12px;

    font-size: 27px;
    line-height: 1.28;
}

.pola-content h3 a {
    color: #181818;
    text-decoration: none;
}

.pola-content h3 a:hover {
    color: #bd7b00;
}

.pola-content p {
    margin: 0 0 22px;

    color: #666;
    font-size: 15px;
    line-height: 1.75;
}

.pola-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    background: linear-gradient(
        180deg,
        #fff369 0%,
        #ffc400 55%,
        #e28c00 100%
    );

    color: #111;
    text-decoration: none;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 900;

    box-shadow:
        0 4px 0 #8b5700,
        0 8px 18px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 196, 0, 0.35);

    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease;
}

.pola-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);

    box-shadow:
        0 6px 0 #8b5700,
        0 13px 24px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(255, 196, 0, 0.65);
}

/* Pemisah bagian jackpot */

.jackpot-heading {
    position: relative;
    margin-top: 48px;
    padding-top: 28px;
}

.jackpot-heading::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #ffc400,
        #d92242,
        transparent
    );
}

@media (max-width: 750px) {
    .pola-section {
        padding: 16px;
    }

    .pola-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .pola-card {
        grid-template-columns: 1fr;
    }

    .pola-image-link,
    .pola-image-link img {
        min-height: 210px;
    }

    .pola-content {
        padding: 20px;
    }

    .pola-content h3 {
        font-size: 22px;
    }

    .pola-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}
/* =========================================================
   SLIDER POLA HARI INI DI BERANDA
========================================================= */

.home-pola-slider {
    margin: 32px 0 45px;
    padding: 22px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #111111 0%,
            #1b1b1b 65%,
            #2a1c00 100%
        );

    border: 1px solid rgba(255, 196, 0, .6);
    border-radius: 16px;

    box-shadow:
        0 14px 38px rgba(0, 0, 0, .2),
        0 0 20px rgba(255, 196, 0, .13);
}

.home-pola-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 20px;
    padding-bottom: 16px;

    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.home-pola-badge {
    display: inline-block;

    margin-bottom: 6px;
    padding: 4px 10px;

    border-radius: 30px;

    background: #ffc400;
    color: #111;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .6px;
}

.home-pola-header h2 {
    margin: 0;

    color: #ffc400;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
}

.home-pola-header p {
    margin: 5px 0 0;

    color: #ccc;
    font-size: 13px;
}

.home-pola-all {
    color: #ffc400;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.home-pola-slider-area {
    position: relative;
}

.home-pola-track {
    display: flex;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-pola-track::-webkit-scrollbar {
    display: none;
}

.home-pola-slide {
    flex: 0 0 100%;
    min-width: 100%;

    display: grid;
    grid-template-columns: minmax(280px, 43%) 1fr;

    overflow: hidden;

    scroll-snap-align: start;

    background: #fff;
    border-radius: 13px;
}

.home-pola-image {
    position: relative;

    display: block;
    min-height: 300px;

    overflow: hidden;
    background: #222;
}

.home-pola-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;

    display: block;
    object-fit: cover;

    transition: transform .35s ease;
}

.home-pola-image:hover img {
    transform: scale(1.045);
}

.home-pola-image span {
    position: absolute;
    top: 14px;
    left: 14px;

    padding: 7px 11px;

    border-radius: 7px;

    background: linear-gradient(
        180deg,
        #fff36c,
        #ffc400
    );

    color: #111;
    font-size: 11px;
    font-weight: 900;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, .35),
        0 0 15px rgba(255, 196, 0, .5);
}

.home-pola-content {
    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-pola-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-bottom: 11px;

    color: #777;
    font-size: 12px;
}

.home-pola-meta span {
    color: #c48500;
    font-weight: 800;
}

.home-pola-content h3 {
    margin: 0 0 12px;

    font-size: 27px;
    line-height: 1.28;
}

.home-pola-content h3 a {
    color: #171717;
    text-decoration: none;
}

.home-pola-content p {
    margin: 0 0 22px;

    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.home-pola-button {
    align-self: flex-start;

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

    padding: 12px 19px;

    border-radius: 8px;

    background: linear-gradient(
        180deg,
        #fff36a 0%,
        #ffc400 54%,
        #df8900 100%
    );

    color: #111;
    text-decoration: none;

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

    box-shadow:
        0 4px 0 #865100,
        0 8px 18px rgba(0, 0, 0, .22);

    transition:
        transform .2s ease,
        filter .2s ease;
}

.home-pola-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* Tombol panah */

.home-pola-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: 42px;
    height: 42px;

    padding: 0;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;

    background: rgba(0, 0, 0, .78);
    color: #ffc400;

    font-size: 22px;
    font-weight: 900;
    line-height: 40px;

    cursor: pointer;

    transform: translateY(-50%);

    box-shadow:
        0 7px 20px rgba(0, 0, 0, .35),
        0 0 15px rgba(255, 196, 0, .4);

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.home-pola-arrow:hover {
    background: #ffc400;
    color: #111;

    transform:
        translateY(-50%)
        scale(1.08);
}

.home-pola-prev {
    left: 12px;
}

.home-pola-next {
    right: 12px;
}

/* Titik slider */

.home-pola-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 17px;
}

.home-pola-dot {
    width: 9px;
    height: 9px;

    padding: 0;
    border: 0;
    border-radius: 50%;

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

    cursor: pointer;
    transition:
        width .2s ease,
        background .2s ease;
}

.home-pola-dot.active {
    width: 25px;
    border-radius: 20px;
    background: #ffc400;
}

@media (max-width: 750px) {
    .home-pola-slider {
        padding: 15px;
    }

    .home-pola-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

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

    .home-pola-image,
    .home-pola-image img {
        min-height: 220px;
    }

    .home-pola-content {
        padding: 20px;
    }

    .home-pola-content h3 {
        font-size: 22px;
    }

    .home-pola-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .home-pola-arrow {
        width: 36px;
        height: 36px;

        font-size: 18px;
        line-height: 34px;
    }

    .home-pola-prev {
        left: 7px;
    }

    .home-pola-next {
        right: 7px;
    }
}
