.steel-delivery-page {
    display: grid;
    gap: 1rem;
    max-width: 1080px;
    color: #dbe7f2;
}

.steel-delivery-hero,
.steel-delivery-section {
    border: 1px solid rgba(121, 183, 255, 0.16);
    background: rgba(9, 17, 26, 0.74);
    border-radius: 8px;
    padding: clamp(1rem, 2.5vw, 1.65rem);
}

.steel-delivery-hero {
    background:
        linear-gradient(135deg, rgba(9, 17, 26, 0.82), rgba(20, 42, 55, 0.72)),
        url('/images/banner1.jpg') center / cover;
    min-height: 360px;
    display: grid;
    align-content: end;
}

.steel-delivery-hero span {
    display: block;
    color: #95c8ef;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.steel-delivery-hero h1,
.steel-delivery-section h2 {
    margin: 0.35rem 0 0.75rem;
    color: #f5f9fc;
    letter-spacing: 0;
}

.steel-delivery-hero h1 {
    max-width: 760px;
    font-size: clamp(2rem, 5vw, 3.65rem);
    line-height: 1.05;
}

.steel-delivery-section h2 {
    font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.steel-delivery-page p,
.steel-delivery-page li {
    color: #c8d8e7;
    line-height: 1.7;
}

.steel-delivery-page p {
    max-width: 820px;
    margin: 0.65rem 0 0;
}

.steel-delivery-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.steel-delivery-hero__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(185, 116, 52, 0.48);
    border-radius: 12px;
    background: rgba(232, 245, 232, 0.8);
    color: #1b0f04;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
}

.steel-delivery-hero__actions a:hover,
.steel-delivery-hero__actions a:focus-visible {
    background: rgba(244, 252, 244, 0.95);
    color: #20160a;
    outline: none;
}

.steel-delivery-section--intro,
.steel-delivery-section--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.steel-delivery-section--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steel-delivery-suburbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.55rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.steel-delivery-suburbs li {
    border: 1px solid rgba(121, 183, 255, 0.14);
    border-radius: 8px;
    background: rgba(7, 12, 17, 0.48);
    padding: 0.55rem 0.7rem;
}

.steel-delivery-cta {
    background: rgba(20, 42, 55, 0.76);
}

@media (max-width: 800px) {
    .steel-delivery-section--intro,
    .steel-delivery-section--grid {
        grid-template-columns: 1fr;
    }

    .steel-delivery-hero {
        min-height: 320px;
    }
}