/* ── Cards Section ── */
.transport-cards {
    padding: 30px 20px 80px;
    background: linear-gradient(180deg, #fff, #f8f5ef);
}

.transport-card {
    display: flex;
    flex-direction: column;
    height: 100%;

    overflow: hidden;
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.transport-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
}

.transport-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.transport-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.transport-card:hover .transport-image {
    transform: scale(1.06);
}

.transport-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.05),
        transparent
    );
}

.transport-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.transport-card-title {
    display: -webkit-box;
    overflow: hidden;

    min-height: 60px;
    margin-bottom: 20px;

    color: #111;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;

    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.transport-info {
    margin-top: auto;
}

.transport-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.transport-label {
    color: #666;
    font-size: 1rem;
}

.transport-value {
    color: rgb(179, 134, 69);
    font-size: 1.1rem;
    font-weight: 700;
}

.transport-duration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    margin-top: 12px;

    color: #444;
    font-weight: 500;
}

.transport-duration svg {
    color: rgb(179, 134, 69);
}