/* mkBlog 机场推荐：顶栏票根风 */
.single-content .airport-cards,
.airport-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 18px;
    max-width: 100%;
}

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

.airport-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 12px;
    margin: 0;
    background: #fffaf9;
    border: 1px solid #f3d0d2;
    border-top: 3px solid var(--theme-color, #eb5055);
    border-radius: 0 0 6px 6px;
    transition: box-shadow 0.2s, border-color 0.2s;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
}

.airport-card:hover {
    border-color: color-mix(in srgb, var(--theme-color, #eb5055) 55%, #f3d0d2);
    box-shadow: 0 6px 16px rgba(235, 80, 85, 0.08);
}

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

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

.airport-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #888;
}

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

.airport-jump-btn:hover {
    filter: brightness(0.92);
    color: #fff !important;
}

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

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

.mk-dark .airport-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(235, 80, 85, 0.35);
    box-shadow: none;
}

.mk-dark .airport-card-name {
    color: #f0f0f0;
}

.mk-dark .airport-card-desc {
    color: #aaa;
}

@media (max-width: 768px) {
    .airport-card {
        flex-wrap: nowrap;
        align-items: center;
        padding: 12px;
        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;
    }
}
