.web-specials {
    --specials-shell-width: min(1280px, calc(100% - 24px));
    display: grid;
    gap: 1.25rem;
    width: var(--specials-shell-width);
    margin: 0 auto;
    padding: 0.85rem 0 1.75rem;
}

.web-specials__hero {
    min-height: 260px;
    display: grid;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(121, 183, 255, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(20, 32, 42, 0.98), rgba(31, 52, 45, 0.94)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 16px);
    box-shadow: 0 22px 48px rgba(3, 7, 12, 0.28);
}

.web-specials__hero-copy {
    max-width: 820px;
    display: grid;
    gap: 0.75rem;
    padding: clamp(1.25rem, 4vw, 3rem);
}

.web-specials__hero-copy span,
.web-specials__section-heading span,
.web-specials__band span,
.web-specials-promo__body span {
    color: #f3b36e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.web-specials h1,
.web-specials h2,
.web-specials h3,
.web-specials p {
    margin: 0;
}

.web-specials h1 {
    max-width: 10.5ch;
    color: #eef6ff;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1.02;
}

.web-specials__hero-copy p,
.web-specials__section-heading p,
.web-specials__band p,
.web-specials-promo__body p {
    color: #d7e7ef;
    font-size: 15px;
    line-height: 1.6;
}

.web-specials__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.web-specials__button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid rgba(121, 183, 255, 0.2);
    border-radius: 12px;
    background: rgba(7, 12, 17, 0.58);
    color: #eef6ff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.web-specials__button--primary {
    border-color: rgba(185, 116, 52, 0.48);
    background: linear-gradient(180deg, #e1a262, #c77e39);
    color: #1b0f04;
}

.web-specials__section,
.web-specials__section-heading,
.web-specials__band {
    display: grid;
    gap: 1rem;
}

.web-specials__section-heading h2,
.web-specials__band h2 {
    color: #eef6ff;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.12;
}

.web-specials__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.web-specials-promo {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(121, 183, 255, 0.16);
    border-radius: 16px;
    background: #14202a;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(3, 7, 12, 0.2);
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.web-specials-promo:hover,
.web-specials-promo:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(225, 162, 98, 0.62);
    box-shadow: 0 20px 36px rgba(3, 7, 12, 0.3);
    outline: none;
}

.web-specials-promo__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: #0b121a;
}

.web-specials-promo__body {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    padding: 1.1rem 1.15rem 1.2rem;
    border-top: 1px solid rgba(121, 183, 255, 0.12);
}

.web-specials-promo__body h3 {
    color: #eef6ff;
    font-size: 1.3rem;
    line-height: 1.2;
}

.web-specials-promo__body strong {
    color: #f3b36e;
    font-size: 14px;
}

.web-specials-promo--featured {
    border-color: rgba(47, 214, 118, 0.46);
}

.web-specials__band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 1.2rem;
    border: 1px solid rgba(121, 183, 255, 0.16);
    border-radius: 16px;
    background: linear-gradient(135deg, #172530, #213227);
}

@media (max-width: 900px) {
    .web-specials__grid,
    .web-specials__band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .web-specials {
        width: min(100% - 16px, 1280px);
        padding-top: 0.5rem;
    }

    .web-specials__hero-copy {
        padding: 1rem;
    }

    .web-specials h1 {
        font-size: 2.45rem;
    }

    .web-specials__button,
    .web-specials__band .web-specials__button {
        width: 100%;
    }
}