/* Commercial waste — Container Options (layout only; text size/colour + image unchanged) */
.lwc-container-options {
    --lwc-blue: #0772ba;
    --lwc-line: rgba(20, 32, 29, 0.1);
    background: transparent;
}

.lwc-container-options__list {
    display: flex;
    flex-direction: column;
}

.lwc-container-options__item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--lwc-line);
    transition: transform 0.25s ease;
}

.lwc-container-options__item:first-child {
    padding-top: 0;
}

.lwc-container-options__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.lwc-container-options__item:hover {
    transform: translateX(4px);
}

.lwc-container-options__index {
    flex: 0 0 auto;
    display: inline-block;
    min-width: 1.6rem;
    margin-top: 0.15rem;
    color: var(--lwc-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.35;
}

/* Match original ul-check text size; colour inherits */
.lwc-container-options__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
}

/* Line break that only appears on mobile (desktop stays one line) */
.lwc-br-mobile {
    display: none;
}

@media only screen and (max-width: 991px) {
    .lwc-br-mobile {
        display: inline;
    }
}

/* Line breaks visible only on small mobile (≤576px); hidden on tablet/desktop */
.lwc-br-mobile-sm {
    display: none;
}

@media (max-width: 575.98px) {
    .lwc-br-mobile-sm {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lwc-container-options__item,
    .lwc-container-options__item:hover {
        transition: none;
        transform: none;
    }
}

/* Commercial waste — SEO / related services (no bg) */
.lwc-commercial-seo {
    --lwc-blue: #0772ba;
    --lwc-blue-deep: #055a94;
    --lwc-line: rgba(20, 32, 29, 0.1);
    background: transparent;
}

.lwc-commercial-seo__copy p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.lwc-commercial-seo__copy a {
    color: var(--lwc-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(7, 114, 186, 0.35);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.lwc-commercial-seo__copy a:hover {
    color: var(--lwc-blue-deep);
    border-bottom-color: var(--lwc-blue-deep);
}

.lwc-commercial-seo__services {
    padding: 1.35rem 0 0.25rem;
    border-top: 3px solid var(--lwc-blue);
}

.lwc-commercial-seo__services-title {
    margin: 0 0 1rem;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.lwc-commercial-seo__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lwc-commercial-seo__list li {
    margin: 0;
    border-bottom: 1px solid var(--lwc-line);
}

.lwc-commercial-seo__list li:last-child {
    border-bottom: 0;
}

.lwc-commercial-seo__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 0;
    color: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.lwc-commercial-seo__list a::after {
    content: "";
    flex: 0 0 auto;
    width: 0.45rem;
    height: 0.45rem;
    border-top: 1.5px solid var(--lwc-blue);
    border-right: 1.5px solid var(--lwc-blue);
    transform: rotate(45deg);
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lwc-commercial-seo__list a:hover {
    color: var(--lwc-blue);
    transform: translateX(4px);
}

.lwc-commercial-seo__list a:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(1px, -1px);
}

@media (max-width: 991.98px) {
    .lwc-commercial-seo__services {
        padding-top: 1.1rem;
    }
}

/* Commercial — Collection Types intro (mobile only) */
@media only screen and (max-width: 991px) {
    .lwc-collection-types__intro {
        --bs-gutter-y: 0.55rem;
        margin-bottom: 0.35rem;
    }

    .lwc-collection-types__title {
        margin-bottom: 0.35rem !important;
        line-height: 1.25;
    }

    .lwc-collection-types__lead {
        margin-bottom: 0.15rem !important;
        line-height: 1.5;
        font-size: 1.05rem;
    }

    /* Slightly smaller check icons in the type boxes */
    .lwc-collection-types .p-40 > i.fs-48 {
        font-size: 34px !important;
        padding: 0.35rem !important;
    }

    .lwc-collection-types .p-40 > .ps-80 {
        padding-left: 62px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lwc-commercial-seo__copy a,
    .lwc-commercial-seo__list a,
    .lwc-commercial-seo__list a::after {
        transition: none;
    }

    .lwc-commercial-seo__list a:hover {
        transform: none;
    }
}
