.resort-links {
    margin: 1rem auto 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.resort-links--camera {
    margin: 0 auto 1.5rem;
}

.resort-links__list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 10px 12px;
    overflow-x: auto;
    padding: 2px 2px 4px;
}

.resort-links__item {
    display: inline-flex;
    min-width: 120px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #d7e3f7;
    border-radius: 12px;
    background: rgba(15, 44, 82, 0.04);
    color: #0f2c52;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.resort-links__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.resort-links__badge {
    display: inline-flex;
    min-width: 36px;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(9, 19, 39, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.18);
    color: #e8f0ff;
    font-weight: 700;
    letter-spacing: 0.015em;
    backdrop-filter: blur(6px);
}

.resort-links__item:hover,
.resort-links__item:focus-visible {
    border-color: #c5d8f6;
    outline: none;
    background: linear-gradient(145deg, rgba(15, 44, 82, 0.08), rgba(15, 44, 82, 0.05));
    box-shadow: 0 10px 26px rgba(15, 44, 82, 0.12);
    transform: translateY(-1px);
}

.resort-links__icon {
    color: #2f62c2;
}

.dark .resort-links__item {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #e8efff;
}

.dark .resort-links__item:hover,
.dark .resort-links__item:focus-visible {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.dark .resort-links__icon {
    color: #9dbcf5;
}

@media (min-width: 641px) and (max-width: 1440px) {
    .resort-links {
        margin-left: -6px;
        margin-right: -6px;
    }

    .resort-links__list {
        justify-content: flex-start;
        justify-content: safe center;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 6px;
        padding: 6px 6px 10px;
        scroll-snap-type: x proximity;
        overscroll-behavior-x: contain;
    }

    .resort-links__item {
        flex: 0 0 auto;
        min-width: 0;
        padding: 9px 10px;
        white-space: nowrap;
        font-size: 0.95rem;
        scroll-snap-align: start;
    }

    .resort-links__badge {
        min-width: 30px;
        padding: 4px 8px;
    }
}

@media (max-width: 640px) {
    .resort-links__item {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
        white-space: nowrap;
    }
}
