/* Header Section */
.yichen_export_countries_header {
    text-align: center;
    background-color: #e9e9e9;
    padding: 50px 0;
}

.yichen_export_countries_title {
    font-size: var(--title-size-h3);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* Map Section */
.yichen_export_countries_content {
    padding: var(--component-gap) 0;
}

.yichen_export_countries_map_container {
    position: relative;
}

.yichen_export_countries_map {
    width: 100%;
    height: auto;
}

.yichen_export_countries_map img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.yichen_export_countries_map_points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.yichen_export_countries_map_point {
    position: absolute;
    transform: translate(-50%, -50%);
    aspect-ratio: 1 / 1;
}

.yichen_export_countries_map_point img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    filter: drop-shadow(2px 6px 10px var(--color-primary));
}

@media screen and (max-width: 992px) {
    .yichen_export_countries_header{
        padding: 30px 0;
    }

    .yichen_export_countries_map_point img{
        filter: drop-shadow(1px 3px 5px var(--color-primary));
    }

}

@media screen and (max-width: 576px) {
    .yichen_export_countries_header{
        padding: 20px 0;
    }
    .yichen_export_countries_map_point img {
        border-width: 1px;
    }
}