/* Once 机场推荐：贴合文章白底、4px 圆角、主题蓝 */
.wznrys .airport-cards,
.airport-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 20px;
    text-align: left;
}

.wznrys p:has(> .airport-card),
.wznrys p:has(> .airport-cards) {
    padding-bottom: 0;
    line-height: inherit;
}

.airport-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px 16px 32px;
    margin: 0;
    background: #f7f7f7;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
}

.airport-card:before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-radius: 5px;
    background: #0a59f8;
    background: linear-gradient(to top, #6598ff, #0a59f8);
}

.airport-card-body {
    flex: 1 1 auto;
    min-width: 0;
}

.airport-card-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 4px;
}

.airport-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #8c8989;
    font-weight: 300;
}

.wznrys .airport-jump-btn,
.airport-jump-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 4px;
    background: #4270f5;
    color: #fff !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none !important;
    border-bottom: none !important;
    margin: 0 !important;
    white-space: nowrap;
    transition: background .2s;
}

.wznrys .airport-jump-btn:hover,
.airport-jump-btn:hover {
    background: #0a59f8;
    color: #fff !important;
}

.airport-jump-btn i {
    font-size: 12px;
}

@media (max-width: 640px) {
    .airport-card {
        padding: 14px 12px 14px 30px;
        gap: 10px;
    }
    .airport-card-name {
        font-size: 14px;
    }
    .airport-card-desc {
        font-size: 12px;
    }
    .airport-jump-btn {
        padding: 7px 12px;
    }
}

html.dark .airport-card {
    background: #343435;
}
html.dark .airport-card-name {
    color: #fff;
}
html.dark .airport-card-desc {
    color: #999;
}
html.dark .airport-jump-btn {
    background: #4270f5;
}
