.cm-f15fe645-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.cm-f15fe645-map-col {
    flex: 1 1 50%;
    min-width: 300px;
}

.cm-f15fe645-list-col {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 300px;
}

.cm-f15fe645-map-wrapper {
    position: relative;
    width: 100%;
    display: block;
    background: #f9f6f0;
    border-radius: 20px;
    padding: 1rem;
}

.cm-f15fe645-map-img {
    width: 100%;
    height: auto;
    display: block;
}

.cm-f15fe645-hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.cm-f15fe645-hotspot-inner {
    width: 16px;
    height: 16px;
    background-color: #8b3a3a;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cm-f15fe645-hotspot.is-active .cm-f15fe645-hotspot-inner,
.cm-f15fe645-hotspot:hover .cm-f15fe645-hotspot-inner {
    transform: translate(-50%, -50%) scale(1.3);
}

.cm-f15fe645-hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(139, 58, 58, 0.4);
    opacity: 0;
    pointer-events: none;
}

.cm-f15fe645-hotspot.is-active .cm-f15fe645-hotspot-pulse {
    animation: cm-f15fe645-pulse 1.5s infinite;
}

@keyframes cm-f15fe645-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.cm-f15fe645-card {
    background: #f9f6f0;
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cm-f15fe645-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cm-f15fe645-card.is-active {
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cm-f15fe645-card-title {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-family: serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cm-f15fe645-card-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #8b3a3a;
    display: inline-block;
}

.cm-f15fe645-card-desc {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.cm-f15fe645-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.cm-f15fe645-tag {
    background: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #444;
}

.cm-f15fe645-card-link {
    color: #d36a49;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
}

.cm-f15fe645-card-link:hover {
    text-decoration: underline;
}
