.mg-ff42691a-wrapper {
    padding: 40px 20px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

/* Optional map texture - soft and subtle */
.mg-ff42691a-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" opacity="0.05" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%23D4AF37" stroke-width="2" fill="none"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.mg-ff42691a-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.mg-ff42691a-stat-item {
    text-align: center;
}

.mg-ff42691a-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.mg-ff42691a-stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.mg-ff42691a-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
    position: relative;
    z-index: 1;
}

.mg-ff42691a-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.mg-ff42691a-item-featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .mg-ff42691a-item-featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.mg-ff42691a-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.mg-ff42691a-item-featured .mg-ff42691a-item-inner {
    min-height: 400px;
}

.mg-ff42691a-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    transition: transform 0.6s ease;
}

.mg-ff42691a-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2); /* Gold glow */
}

.mg-ff42691a-item:hover .mg-ff42691a-img {
    transform: scale(1.05);
}

.mg-ff42691a-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(31,46,74,0.9), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mg-ff42691a-badge {
    background: #F8F5EE;
    color: #1F2E4A;
    border: 1px solid #D4AF37;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.mg-ff42691a-title {
    margin: 0 0 5px;
    font-size: 1.25rem;
    color: #fff !important;
}

.mg-ff42691a-item-featured .mg-ff42691a-title {
    font-size: 1.75rem;
}

.mg-ff42691a-city {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.mg-ff42691a-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.mg-ff42691a-cta-desc {
    max-width: 600px;
    margin: 15px auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mg-ff42691a-btn {
    display: inline-block;
    padding: 12px 30px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.mg-ff42691a-btn:hover {
    opacity: 0.9;
}