/* Tour transport block (public service detail) */
.tour-transport-section {
    margin: 2rem 0 1.5rem;
    padding: 1.25rem 0 0;
    border-top: 1px solid #e5e7eb;
}

.tour-transport-section .section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
}

.tour-transport-section .section-title i {
    color: #0d9488;
}

.tour-transport-type {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.tour-transport-type i {
    color: #0d9488;
}

.tour-transport-description {
    margin: 0 0 1rem;
    color: #374151;
    line-height: 1.65;
    font-size: 0.98rem;
}

.tour-transport-comfort {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.tour-transport-comfort li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.35rem 0.75rem;
    background: #f0fdfa;
    color: #134e4a;
    border-radius: 8px;
    font-size: 0.9rem;
}

.tour-transport-comfort li i {
    color: #0d9488;
}

.tour-transport-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.tour-transport-gallery-item {
    display: block;
    overflow: hidden;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    background: #f3f4f6;
    cursor: pointer;
    width: 100%;
}

.tour-transport-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.tour-transport-gallery-item:hover img,
.tour-transport-gallery-item:focus img {
    transform: scale(1.03);
}

@media (min-width: 768px) {
    .tour-transport-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .tour-transport-section .section-title {
        font-size: 1.5rem;
    }
}
