/* 机场推荐跳转 - DUX */
.article-content .airport-cards,
.entry .airport-cards,
.airport-cards {
    margin: 14px 0 18px;
}

.airport-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #edf1fc;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.airport-card:last-child {
    margin-bottom: 0;
}

.airport-card:hover {
    border-color: color-mix(in srgb, var(--tb--main, #007BFF) 35%, transparent);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.airport-card-body {
    flex: 1 1 auto;
    min-width: 0;
}

.airport-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #202935;
    line-height: 1.3;
    margin-bottom: 4px;
}

.airport-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #6b6970;
}

.airport-jump-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--tb--main, #007BFF);
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--tb--main, #007BFF) 25%, transparent);
    transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
}

.airport-jump-btn:hover {
    filter: brightness(0.92);
    color: #fff !important;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--tb--main, #007BFF) 32%, transparent);
}

.airport-jump-btn:active {
    transform: scale(0.97);
}

.airport-jump-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .airport-card {
        flex-wrap: wrap;
        padding: 12px 14px;
        gap: 10px;
    }

    .airport-card-body {
        flex: 1 1 100%;
    }

    .airport-card-name {
        font-size: 14px;
    }

    .airport-card-desc {
        font-size: 12px;
    }

    .airport-jump-btn {
        width: 100%;
        justify-content: center;
        padding: 11px 14px;
    }
}
