/* ========================================================================
   Transport Blocks
   ======================================================================== */

.transport-blocks {
    display: flex;
    flex-direction: column;
    padding-block: 2.5rem;
    max-width: 1600px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 32px;
    padding-right: 32px;
    gap: 1.5rem;
}

.transport-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Left coloured panel */
.transport-block__left {
    border-radius: 40px;
    padding: 3.375rem 2rem 5.375rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 260px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    gap: 2rem;
}

.transport-block__left h2 {
    font-family: 'Attila Sans', serif;
    font-size: 2.1875rem;
    font-weight: 500;
    line-height: 1.1;
    color: #0F4945;
    text-align: center;
    margin: 0;
    width: 100%;
}

.transport-block__icon {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.transport-block__icon-spacer {
    width: 86px;
    height: 86px;
}

/* Right cream panel */
.transport-block__right {
    border-radius: 40px;
    background: #EEE8D8; /* quicksand-100 */
    padding: 2.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    flex: 1;
    margin-top: -2rem;
}

.transport-block__body {
    font-family: 'Roobert', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.4;
    color: #0F4945;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.transport-block__body * {
    font-family: 'Roobert', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.4;
    color: #0F4945;
    text-align: center;
}

.transport-block__body p {
    margin: 0 0 2rem;
}

.transport-block__body a {
    text-decoration: underline;
    color: inherit;
}

.transport-block__body ul {
    list-style: disc;
    padding-left: 1.5rem;
    text-align: left;
}

.transport-block__body li {
    margin-bottom: 0.25rem;
}

/* ─── Desktop (991px+) ─── */
@media (min-width: 991px) {
    .transport-blocks {
        padding-block: 3.5rem;
    }

    .transport-block {
        flex-direction: row;
        gap: 0;
        align-items: stretch;
    }

    .transport-block__left {
        width: 29%;
        min-width: 29%;
        min-height: 373px;
        border-radius: 40px;
    }

    .transport-block__right {
        min-height: 373px;
        padding: 3rem 4rem;
        margin-top: 0;
    }
}
