/* ====================================
   Decanto Promo Untold — CTA Banner
   ==================================== */

.decanto-promo-untold {
    background-color: #242e50;
    width: 100%;
    padding: 60px 0 80px;
}

.promo-untold-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ---- Logo ---- */

.promo-untold-logo {
    text-align: center;
    padding: 0 0 40px;
}

.promo-untold-logo img {
    width: 260px;
    height: auto;
    display: inline-block;
}

/* ---- Two-column body ---- */

.promo-untold-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ---- Book image ---- */

.promo-untold-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 380px;
    margin: 0 auto;
}

/* ---- Text content ---- */

.promo-untold-content {
    color: #fff;
}

.promo-untold-content p {
    font-family: 'HK Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 18px;
}

.promo-untold-content ul {
    font-family: 'HK Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 22px;
    padding-left: 20px;
}

.promo-untold-content ul li {
    margin-bottom: 8px;
}

.promo-untold-content strong {
    font-weight: 700;
    color: #fff;
}

/* ---- CTA Button ---- */

.promo-untold-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background-color: #D13A38;
    color: #fff;
    font-family: 'Dinish', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    line-height: 1.2;
    transition: background-color 0.2s, color 0.2s;
}

.promo-untold-btn:hover {
    background-color: #fff;
    color: #242e50;
    text-decoration: none !important;
}

/* ====================================
   Responsive
   ==================================== */

@media (max-width: 768px) {
    .promo-untold-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-untold-image img {
        max-width: 220px;
    }

    .promo-untold-logo img {
        width: 190px;
    }

    .promo-untold-logo {
        padding: 0 0 30px;
    }

    .promo-untold-content p,
    .promo-untold-content ul {
        font-size: 15px;
    }

    .promo-untold-btn {
        display: block;
        text-align: center;
    }
}
