/* Simple Theme 卡片：iOS 分组列表，区别于 DUX 蓝圆角 / YIA 绿条 / mkBlog 票根 / CorePress 窗口点 / Puock 序号玻璃 */
.prose-content .airport-cards,
.airport-cards {
    display: flex;
    flex-direction: column;
    margin: 1.25em 0 1.6em;
    background: var(--card, #fff);
    border: 1px solid var(--border, #e2e2e2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small, 0 1px 2px rgb(0 0 0 / 0.06)), var(--card-highlight, 0 0 0 0 transparent);
}

.prose-content p:has(> .airport-card),
.prose-content p:has(> .airport-cards) {
    margin: 0;
}

.airport-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    margin: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border, #e2e2e2);
    box-sizing: border-box;
    transition: background-color 0.15s;
}

.airport-card:last-child {
    border-bottom: none;
}

.airport-card:hover {
    background: var(--muted, #f5f5f5);
}

.airport-card-body {
    flex: 1 1 auto;
    min-width: 0;
}

.airport-card-name {
    font-size: 15px;
    font-weight: 650;
    color: var(--foreground, #333);
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.airport-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--secondary, #999);
}

.prose-content .airport-jump-btn,
.airport-jump-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary, #333);
    color: var(--primary-foreground, #fff) !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    opacity: 1 !important;
    transition: opacity 0.15s, transform 0.15s;
}

.prose-content .airport-jump-btn:hover,
.airport-jump-btn:hover {
    color: var(--primary-foreground, #fff) !important;
    opacity: 0.88 !important;
}

.airport-jump-btn:active {
    transform: scale(0.97);
}

.airport-jump-btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .airport-card {
        padding: 14px 14px;
        gap: 10px;
    }

    .airport-card-name {
        font-size: 14px;
    }

    .airport-card-desc {
        font-size: 12px;
    }

    .airport-jump-btn {
        padding: 7px 12px;
    }
}
