
/*  Page Hero  */
.page-hero {
    background: var(--navy);
    padding: 3.5rem 2rem 3rem;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/practical-hero.jpg') center / cover no-repeat;
    opacity: .30;
}

.page-hero-inner {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.page-hero .eyebrow {
    color: var(--mist);
}

.page-hero .eyebrow::before {
    background: var(--mist);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: .75rem;
}

.page-hero h1 em {
    color: var(--mist);
    font-style: italic;
}

.page-hero p {
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    max-width: 560px;
    line-height: 1.75;
}

.page-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

/*  Info Sections Grid  */
.info-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--light);
}

/*  Info Rows  */
.info-row {
    display: flex;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
    align-items: flex-start;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row-icon {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.info-row-text strong {
    color: var(--navy);
}

/*  Transport Cards  */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.transport-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.transport-img {
    height: 120px;
}

.transport-body {
    padding: 10px 12px 12px;
}

.transport-type {
    font-size: 10px;
    color: var(--sky);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.transport-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.transport-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
}

/*  Responsive Media */
@media (max-width: 900px) {
    .info-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .transport-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .transport-grid {
        grid-template-columns: 1fr;
    }
}