.c4y-cm {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 10rem 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(241, 245, 249, 0.2) 100%);
}
.c4y-cm__inner {
    width: 100%;
    max-width: var(--global-content-width, 1152px);
    padding-left: var(--global-content-edge-padding);
    padding-right: var(--global-content-edge-padding);
    margin: 0 auto;
}
.c4y-cm__head {
    text-align: center;
    margin-bottom: 3rem;
}
.c4y-cm__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(41,54,101,.1);
    border-radius: 999px;
    font-size: .875rem;
    color: rgb(41,54,101);
    font-weight: 500;
    margin-bottom: 1rem;
}
.c4y-cm__badge svg {
    width: 16px; height: 16px;
}
.c4y-cm__title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: rgb(20, 31, 56);
    margin: 0 0 1rem !important;
    padding: 0 !important;
}
@media (min-width: 768px) {
    .c4y-cm__title {
        font-size: 36px;
        line-height: 40px;
    }
}
.c4y-cm__subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgb(107, 114, 128);
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.c4y-cm__map-wrap {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(228, 231, 236, .5);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    padding: 4px;
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(4px);
}
.c4y-cm__map-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(104, 200, 81, .15), rgba(59,130,246,.15));
    filter: blur(40px);
    opacity: .4;
    z-index: -1;
    transform: scale(.95);
}
.c4y-cm__map-inner {
    border-radius: 1rem;
    overflow: hidden;
}
.c4y-cm__map {
    width: 100% !important;
    display: block !important;
    z-index: 1;
}
.c4y-cm__map .leaflet-container {
    width: 100% !important;
    height: 100% !important;
}

.c4y-cm__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.c4y-cm__legend {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(228, 231, 236, .8);
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgb(107, 114, 128);
}
.c4y-cm__legend-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgb(41,54,101);
    box-shadow: 0 10px 15px -3px rgba(41,54,101,.3), 0 4px 6px -4px rgba(41,54,101,.3);
    flex-shrink: 0;
}
.c4y-cm__count {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.25rem;
    background: rgba(41,54,101,.1);
    border: 1px solid rgba(41,54,101,.2);
    border-radius: 999px;
}
.c4y-cm__count span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgb(20, 31, 56);
}
.c4y-cm__count strong {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: rgb(41, 54, 101);
}

.c4y-cm-tooltip {
    font-family: inherit;
    font-size: .8rem;
    font-weight: 600;
    color: rgb(20, 31, 56);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    border-radius: .5rem;
    padding: .3rem .6rem;
}

@media (max-width: 767px) {
    .c4y-cm {
        padding: 8rem 0;
    }
}
