.button,
.hero-search button {
    align-items: center;
    background: var(--color-accent);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    text-decoration: none;
}

.button:hover,
.hero-search button:hover {
    background: var(--color-accent-dark);
}

.button--light {
    background: #fff;
    color: var(--color-accent-dark);
}

.section-heading {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 1.55rem;
    line-height: 1.2;
    margin: 0;
}

.home-hero {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0 0;
}

.promo-banner {
    align-items: center;
    background:
        radial-gradient(circle at 92% 52%, rgba(255,255,255,0.2) 0 75px, transparent 76px),
        linear-gradient(135deg, #ffb000 0%, #ff9d00 46%, #ffbd19 100%);
    border-radius: 0;
    color: #0b4aa5;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.9fr);
    min-height: 180px;
    overflow: hidden;
    padding: 28px 80px;
    position: relative;
}

.promo-banner::before,
.promo-banner::after {
    background: rgba(255, 238, 0, 0.38);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    content: "";
    height: 86px;
    position: absolute;
    width: 86px;
}

.promo-banner::before {
    left: 26px;
    top: -18px;
}

.promo-banner::after {
    right: 24px;
    bottom: -18px;
}

.promo-banner__search {
    align-items: center;
    background: #fff;
    border: 5px solid #3684dc;
    border-radius: 28px;
    box-shadow: 0 4px 0 rgba(0, 83, 165, 0.18);
    display: flex;
    justify-content: center;
    min-height: 82px;
    padding: 12px 28px;
    position: relative;
    z-index: 1;
}

.promo-banner__search span {
    color: #18468f;
    font-size: clamp(1.35rem, 3vw, 2.3rem);
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
}

.promo-banner__search::after {
    content: "";
    border: 5px solid #ff9f35;
    border-radius: 50%;
    height: 32px;
    margin-left: 24px;
    width: 32px;
}

.promo-banner__copy {
    position: relative;
    text-align: center;
    z-index: 1;
}

.promo-banner__copy strong {
    background: #0b67d8;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 950;
    line-height: 1;
    margin-bottom: 16px;
    padding: 16px 34px;
    text-transform: uppercase;
}

.promo-banner__copy span {
    color: #0b56b2;
    display: block;
    font-size: clamp(1rem, 2vw, 1.55rem);
    font-weight: 900;
    text-transform: uppercase;
}

.channel-band {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
}

.channel-band__inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.channel-band p {
    color: #374151;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    max-width: 320px;
}

.channel-band p::first-line {
    font-weight: 700;
}

.channel-links {
    display: flex;
    gap: 34px;
}

.channel-links a {
    align-items: center;
    color: var(--color-accent);
    display: grid;
    font-size: 0.78rem;
    gap: 4px;
    justify-items: center;
    text-decoration: none;
}

.channel-links span {
    align-items: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 900;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.category-band {
    background: #fff;
    padding: 28px 0 34px;
}

.category-band__inner {
    display: grid;
    gap: 16px;
}

.category-band h2 {
    font-size: 1.45rem;
    margin: 0;
}

.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-strip a,
.status-badge {
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text);
    font-weight: 700;
    padding: 8px 12px;
    text-decoration: none;
}

.join-cta {
    background: #076b39;
    color: #fff;
    padding: 40px 0;
}

.join-cta__inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.menu-toggle {
    background: transparent;
    border: 0;
    display: none;
    height: 42px;
    width: 42px;
}

.menu-toggle span {
    background: var(--color-text);
    display: block;
    height: 2px;
    margin: 6px auto;
    width: 24px;
}

.post-card,
.coupon-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.post-card__body,
.coupon-card {
    padding: 18px;
}
