.lake-maps-intro {
    background:
        linear-gradient(
            135deg,
            rgba(13, 110, 253, 0.08),
            rgba(13, 110, 253, 0.02)
        );
    border: 1px solid rgba(13, 110, 253, 0.18);
    border-radius: 1rem;
    padding: 1.5rem;
}

.lake-maps-intro-icon {
    align-items: center;
    background: var(--bs-primary);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.35rem;
    height: 3rem;
    justify-content: center;
    width: 3rem;
}

.lake-map-results {
    min-height: 14rem;
}

.lake-map-card-list {
    display: grid;
    gap: 0.75rem;
}

.lake-map-result-card {
    align-items: center;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.75rem;
    color: var(--bs-body-color);
    display: flex;
    gap: 1rem;
    min-height: 96px;
    padding: 0.75rem;
    text-align: left;
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease;
    width: 100%;
}

.lake-map-result-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.45);
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.lake-map-result-card:focus-visible {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.2);
    outline: 0;
}

.lake-map-result-thumbnail-wrap {
    align-items: center;
    background: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.55rem;
    display: inline-flex;
    flex: 0 0 110px;
    height: 78px;
    justify-content: center;
    overflow: hidden;
    width: 110px;
}

.lake-map-result-thumbnail {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.lake-map-result-text {
    flex: 1 1 auto;
    min-width: 0;
}

.lake-map-result-text strong {
    color: var(--bs-emphasis-color);
    font-size: 1rem;
    line-height: 1.25;
}

.lake-map-result-card:hover .lake-map-result-text strong,
.lake-map-result-card:focus-visible .lake-map-result-text strong {
    color: var(--bs-primary);
}

.lake-map-result-location {
    display: block;
    line-height: 1.35;
    margin-top: 0.15rem;
}

.lake-map-result-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.45rem;
}

.lake-map-result-badge {
    background: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 999px;
    color: var(--bs-secondary-color);
    font-size: 0.72rem;
    line-height: 1;
    padding: 0.3rem 0.5rem;
}

.lake-map-result-chevron {
    color: var(--bs-secondary-color);
    flex: 0 0 auto;
    margin-inline: 0.25rem;
    transition: transform 150ms ease;
}

.lake-map-result-card:hover .lake-map-result-chevron {
    color: var(--bs-primary);
    transform: translateX(2px);
}

.lake-map-loading {
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    inset: 0;
    justify-content: center;
    position: absolute;
    z-index: 2;
}

.lake-map-empty {
    border: 1px dashed var(--bs-border-color);
    border-radius: 0.75rem;
}

.lake-map-disclaimer {
    border-top: 1px solid var(--bs-border-color);
    padding-top: 1rem;
}

.lake-map-modal-list {
    display: grid;
    gap: 1rem;
}

.lake-map-modal-item {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.75rem;
    padding: 1rem;
}

.lake-map-thumbnail {
    background: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.5rem;
    display: block;
    margin-inline: auto;
    max-height: 20rem;
    max-width: 28rem;
    object-fit: contain;
    width: 100%;
}

@media (max-width: 575.98px) {
    .lake-maps-intro {
        padding: 1.15rem;
    }

    .lake-maps-intro-icon {
        height: 2.6rem;
        width: 2.6rem;
    }

    .lake-map-result-card {
        gap: 0.65rem;
        min-height: 78px;
        padding: 0.6rem;
    }

    .lake-map-result-thumbnail-wrap {
        flex-basis: 82px;
        height: 62px;
        width: 82px;
    }

    .lake-map-result-chevron {
        margin-inline: 0.1rem;
    }
}
