/* 机场推荐：左侧色条 + 主题色浅底，和 DUX 白卡片区分 */
.article-content .airport-cards,
.article .airport-cards,
.airport-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0 20px;
}

.article-content p:has(> .airport-card),
.article p:has(> .airport-card) {
    margin: 0;
}

.airport-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 14px 18px;
    margin: 0;
    background: linear-gradient(90deg, rgba(11, 178, 122, 0.08) 0%, #fff 55%);
    background: linear-gradient(90deg, color-mix(in srgb, var(--primary-color, #0bb27a) 8%, #fff) 0%, #fff 55%);
    border: 1px solid rgba(11, 178, 122, 0.16);
    border-color: color-mix(in srgb, var(--primary-color, #0bb27a) 16%, #fff);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.airport-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--primary-color, #0bb27a);
}

.airport-card:hover {
    border-color: rgba(11, 178, 122, 0.4);
    border-color: color-mix(in srgb, var(--primary-color, #0bb27a) 40%, #fff);
    box-shadow: 0 6px 18px rgba(11, 178, 122, 0.08);
}

.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: #8d8f96;
}

.airport-jump-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--primary-color, #0bb27a);
    background: #fff;
    color: var(--primary-color, #0bb27a) !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.airport-jump-btn:hover {
    background: var(--primary-color, #0bb27a);
    color: #fff !important;
}

.airport-jump-btn:active {
    transform: scale(0.97);
}

.airport-jump-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .airport-card {
        flex-wrap: nowrap;
        align-items: center;
        padding: 12px 12px 12px 16px;
        gap: 8px;
    }

    .airport-card-name {
        font-size: 14px;
    }

    .airport-card-desc {
        font-size: 12px;
    }

    .airport-jump-btn {
        width: auto;
        margin-left: auto;
        padding: 7px 10px;
        box-shadow: none;
    }
}
