.trg-map-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.trg-map-main {
    width: 100%;
    display: flex;
    justify-content: center;
}

.trg-map-wrapper {
    position: relative;
    width: 100%; /* Take full width on mobile */
    max-width: fit-content;
    margin: 0 auto;
}

.trg-map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.trg-map-sidebar {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    min-height: 100px;
    width: 100%;
}

@media (min-width: 1024px) {
    .trg-map-container {
        flex-direction: row;
        align-items: flex-start;
    }
    .trg-map-sidebar {
        width: 300px;
        flex-shrink: 0;
    }
    .trg-map-wrapper img {
        max-height: 80vh; /* Only restrict height on larger screens */
        width: auto;
    }
}

.trg-map-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #DA1259;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.trg-map-dot.is-active {
    background: #2A2E83;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 11;
}

.trg-map-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 3px solid #DA1259;
    animation: trg-pulse 2s infinite;
    opacity: 0;
}

@keyframes trg-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.trg-map-details h3 {
    margin: 0 0 15px 0;
    font-size: 2rem;
    border-bottom: 2px solid #DA1259;
    padding-bottom: 10px;
}

.trg-map-brand {
    margin-bottom: 0;
}

.trg-map-sidebar-placeholder {
    color: #999;
    text-align: center;
    margin-top: 50px;
    font-style: italic;
}
