.section-world-map {
    position: relative;
}

.section-world-map .section-icon {
    margin: 0 0 0.5rem 0;
    width: unset;
}

.section-world-map .section-icon-top svg {
    height: 4rem;
    width: auto;
}

.section-world-map .map-content-wrapper {
    align-items: center;
    gap: 1.5rem;
}

.section-world-map .map-content-wrapper .country-list {
    width: 100%;
}

.section-world-map .map-content-wrapper .country-list ul {
    margin: 0;
    padding: 0;
}

.section-world-map .map-content-wrapper .country-list ul li {
    list-style-type: none;
    margin-bottom: 1rem;
}

.section-world-map .map-content-wrapper .country-list ul li:last-of-type {
    margin-bottom: 0;
}

.section-world-map .map-content-wrapper .country-list ul li a {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
}

.section-world-map .map-content-wrapper .country-list ul li a span img {
    border-width: 0;
    display: block;
    width: 3rem;
}

.section-world-map .map-area {
    flex-direction: unset;
    margin-top: 1.5rem;
    width: 100%;
}

.section-world-map .world-map svg path {
    cursor: pointer;
    transition: 0.75s fill;
}

.section-world-map .world-map-bubble {
    background-color: var(--color-dark-gray-1);
    border-radius: 0.25rem;
    color: var(--color-dark-foreground);
    display: none;
    font-weight: var(--font-weight-semibold);
    left: 0;
    position: absolute;
    top: 0;
    white-space: nowrap;
    z-index: 20;
}

.section-world-map .world-map-bubble .bubble-content {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    place-content: center;
}

.section-world-map .world-map-bubble .bubble-content img {
    border-radius: 0;
    border-width: 0;
    display: block;
    height: 1rem;
    margin-right: 0.5rem;
}

.section-world-map .world-map-bubble .bubble-content span {
    display: block;
    font-size: var(--font-size-small);
    line-height: 1;
}

.section-world-map .world-map-key .content-container {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.section-world-map .world-map-key .flex-box {
    align-items: center;
    flex: 1;
    gap: 0.5rem;
    max-width: 8rem;
    width: auto;
}

.section-world-map .world-map-key .flex-box:not(:last-of-type) {
    margin-bottom: 0.25rem;
}

.section-world-map .world-map-key .flex-box > div:first-of-type {
    aspect-ratio: 1 / 1;
    border: 2px solid var(--color-border);
    border-radius: 100vw;
    width: 1.5rem;
}

.section-world-map .world-map-key .flex-box > div:last-of-type { 
    flex: 1;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-medium);
}

@media (min-width: 48rem) { /* 768 px */
    .section-world-map .map-wrapper:has(.section-icon-left) {
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .section-world-map .map-wrapper:has(.section-icon-left) .section-icon-left, 
    .section-world-map .map-wrapper:has(.section-icon-left) .section-icon-left svg {
        width: 3rem;
    }
    
    .section-world-map .map-wrapper:has(.section-icon-left) .section-icon-left svg {
        display: block;
        height: unset;
        margin-top: 0.25rem;
    }
    
    .section-world-map .map-wrapper:has(.section-icon-left) .section-icon-left + div {
        flex: 1;
    }

    .section-world-map .map-content-wrapper .country-list {
        max-width: 16rem;
        width: 25%;
    }

    .section-world-map .map-area {
        flex: 1;
    }
}

@media (prefers-color-scheme: dark) {
    .section-world-map .world-map-bubble {
        border: 1px solid var(--color-border);
    }

    .section-world-map .world-map-key .flex-box > div:last-of-type {
        font-weight: var(--font-weight-semibold);
    }
}