.service-drilldown {
    background-color: var(--color-black);
    padding: 4rem 2.25rem;

    @media (min-width: 768px) {
        padding: 5rem 2.25rem;
    }

    /* Bricks' container styles (flex-row, no auto margins) don't suit
       hand-rendered markup: own layout, centered. */
    .brxe-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        max-width: 87.5rem;
        margin-inline: auto;
    }

    .sections {
        display: flex;
        flex-direction: column;
        gap: 5rem;
        min-width: 0;
    }

    .svc-section {
        /* Keep headings clear of the sticky header when deep-linked */
        scroll-margin-top: 6rem;
    }

    .svc-title {
        color: var(--color-white);
        font-size: var(--text-h2);
        line-height: 1.05;
        margin: 0 0 2rem 0;
    }

    .cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;

        @media (min-width: 768px) {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .svc-card {
        min-width: 0;

        .banner {
            position: relative;
            aspect-ratio: 16 / 5;
            overflow: hidden;
            margin-bottom: 1.5rem;

            /* Any banner image always spans the full card width */
            img {
                position: absolute;
                inset: 0;
                width: 100%;
                max-width: none;
                height: 100%;
                object-fit: cover;
            }

            /* Placeholder until real banner images are added */
            .banner-placeholder {
                position: absolute;
                inset: 0;
                background: linear-gradient(115deg, #0b3c4d 0%, var(--color-blue) 45%, var(--color-blue-two) 70%, #0b3c4d 100%);
                opacity: 0.85;
            }
        }

        .card-title {
            color: var(--color-white);
            font-family: var(--font-heading);
            font-size: var(--text-h3);
            line-height: 1.15;
            margin: 0;
        }

        .paragraph {
            color: rgba(255, 255, 255, 0.72);
            font-size: var(--text-body);
            line-height: 1.5;
            margin: 1rem 0 0 0;
        }

        .svc-list {
            list-style: disc;
            margin: 1.25rem 0 0 0;
            padding-left: 1.125rem;
            color: rgba(255, 255, 255, 0.72);
            font-size: var(--text-body-small);
            line-height: 1.6;

            @media (min-width: 768px) {
                columns: 2;
                column-gap: 2rem;
            }

            li {
                break-inside: avoid;
                padding-bottom: 0.25rem;

                &::marker {
                    color: var(--color-blue);
                }
            }
        }
    }
}
