/* =========================================================================
   REUSABLE TRANSFER ROUTE GRID BLOCK COMPONENT
   ========================================================================= */
.transfer-section-block {
    margin-bottom: 95px;
    padding-top: 15px;
}

.section-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0 0 35px 0;
    letter-spacing: -0.75px;
}

.transfer-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.route-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.route-card-media-link {
    display: block;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.route-card-title-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.route-card-title-link:hover .route-title {
    color: var(--fogya-red);
    transition: color 0.15s ease;
}

.route-image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f1f5f9;
}

.route-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.route-card:hover .route-img {
    transform: scale(1.04);
}

.route-no-img-placeholder {
    background: #e2e8f0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.route-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.route-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.route-excerpt {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.route-footer-action {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.route-price-box {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.price-amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--fogya-red);
}

.price-suffix {
    font-size: 9px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-route-book {
    background-color: var(--premium-slate);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.15s;
    text-decoration: none;
    text-align: center;
}

.btn-route-book:hover {
    background-color: var(--fogya-red);
}

@media (max-width: 1024px) {
    .transfer-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .transfer-section-block { margin-bottom: 75px; }
    .section-main-title { font-size: 28px; }
}

@media (max-width: 768px) {
    .transfer-section-block { margin-bottom: 65px; padding-top: 10px; }
    .section-main-title { font-size: 25px; margin: 0 0 20px 0; letter-spacing: -0.5px; }
    .transfer-cards-grid { grid-template-columns: 1fr; row-gap: 24px; }
    .route-image-wrapper { aspect-ratio: 16 / 9; }
}