.nhb-newsletter-hero {
   /* padding: 40px 20px; */
    text-align: center;
}

.nhb-newsletter-hero__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;

    /*display: flex;
    flex-direction: column;
    gap: 5px;*/
}

.nhb-newsletter-hero__button-label {
    font-family: "Palmore", sans-serif !important;
    font-size: 24px !important;
    color: #ffffff !important;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.nhb-newsletter-hero__eyebrow {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 3px 0 !important;
    padding: 0;
    color: #0080c8;
}

.nhb-newsletter-hero__title {
    font-family: "PTSerif", serif !important;
    font-size: 40px !important;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 3px 0 !important;
    padding: 0;
}

.nhb-newsletter-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 10px;
    margin: 3px 0 !important;
    background-color: #111;
    color: #fff;
    border-radius: 4px;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s;
}

.nhb-newsletter-hero__button:hover {
    background-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.nhb-newsletter-hero__button:active {
    transform: translateY(0);
    box-shadow: none;
}

.nhb-newsletter-hero__icon {
    width: 18px;
    height: 18px;
}

/* Responsif */
@media (max-width: 600px) {
    .nhb-newsletter-hero {
       /* padding: 60px 16px; */
    }
    .nhb-newsletter-hero__title {
        font-size: 20px;
    }
}

/* -----------------------------------------
   Responsive iPhone 12 → 14 (semua model)
----------------------------------------- */
@media only screen and (max-width: 430px) {
	/* Title: OUR BIGGEST STORIES */
    .nhb-newsletter-hero__title {
        font-size: 26px !important;
        line-height: 22px !important;
    }
    
    /* Eyebrow: NEWSLETTER (15px - 2px = 13px) */
    .nhb-newsletter-hero__eyebrow {
        font-size: 13px !important;
        line-height: 15px !important;
    }

    /* Button text: STRAIGHT TO YOUR INBOX (24px - 2px = 22px) */
    .nhb-newsletter-hero__button-label {
        font-size: 22px !important;
        line-height: 24px !important;
    }
}