.country-fab-list {
    display: grid;
    gap: 0.75rem;
}

.country-fab-columns {
    align-items: start;
}

.country-fab-card {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.75rem;
    padding: 0.9rem 1.1rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    color: inherit;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
    text-align: left;
}

.country-fab-card:hover,
.country-fab-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 156, 39, 0.45);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.country-fab-location {
    color: var(--muted);
    font-size: 0.95rem;
    text-align: left;
    white-space: nowrap;
}

.country-fab-name {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .country-fab-card {
        align-items: baseline;
    }
}
