.guide__switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
    width: 100%;
}

@media (min-width: 768px) {
    .guide__switcher {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.guide__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    padding: var(--space-2);
    border-bottom: 1px solid var(--color-border, #ddd6cc);
    background: transparent;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.guide__item--body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: var(--space-1);
    min-width: 0;
}

.guide__item h5 {
    font-style: italic;
    color: #8f5b4f;
}

.guide__item--arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    color: #8f5b4f;
    font-size: 1.125rem;
    transform: translateX(0);
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        opacity 0.25s ease;
    opacity: 0.9;
}

.guide__map {
    order: 2;
}

.guide__map--canvas {
    width: 100%;
    min-height: 320px;
}

.guide__panel[hidden] {
    display: none !important;
}

.guide__item.is-highlighted {
    background: rgba(143, 91, 79, 0.06);
}

@media (min-width: 768px) {
    .guide__map--canvas {
        min-height: 420px;
    }
}

@media (min-width: 992px) {
    .guide__map {
        order: 2;
        position: sticky;
        top: 1.5rem;
    }

    .guide__map--canvas {
        border-radius: var(--radius-lg);
        min-height: 640px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .guide__item:hover .guide__item--arrow,
    .guide__item:focus-within .guide__item--arrow {
        transform: translateX(10px);
        color: #a36657;
    }

    .guide__item:hover {
        background: rgba(143, 91, 79, 0.04);
    }
}
