.mapBlock {
    width: 100%;
    box-sizing: border-box;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
    color: var(--Vit, #fff);
}

.mapBlock__inner {
    margin-inline: auto;
    width: 100%;
    max-width: min(1200px, 100%);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
}

/* Match .interviewBlock_Inner width from 1270px up */
@media (min-width: 1270px) {
    .mapBlock__inner {
        max-width: min(95vw, 1280px);
    }
}

@media (min-width: 1270px) and (max-width: 1399px) {
    .mapBlock__inner {
        max-width: 85%;
    }
}

/* Same inner padding as .interviewBlock_Inner — only at 1400px and up */
@media (min-width: 1400px) {
    .mapBlock__inner {
        padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem);
    }
}

.mapBlock__map {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: clamp(8px, 1.2vw, 16px);
}

.mapBlock__map img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

.mapBlock__productionContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    margin-top: clamp(1rem, 2.5vw, 1.75rem);
    padding-top: clamp(1.25rem, 3vw, 2rem);
    box-sizing: border-box;
}

.mapBlock__production {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.mapBlock__recycling {
    flex: 2 1 0;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: clamp(1rem, 3vw, 2rem);
    box-sizing: border-box;
}

.mapBlock__productionHeading,
.mapBlock__recyclingHeading {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(0.6125rem, 0.7vw + 0.55rem, 0.9rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
}

.mapBlock__productionHeading {
    color: var(--Vit, #fff);
    border-bottom: 1px solid var(--Vit, #fff);
    width: 100%;
    padding-bottom: 1rem;
}

.mapBlock__productionHeading::before {
    content: "";
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--Vit, #fff);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.mapBlock__recyclingHeading {
    color: #a3b199;
    border-bottom: 1px solid #a3b199;
    width: 100%;
    padding-bottom: 1rem;
}

.mapBlock__recyclingHeading::before {
    content: "";
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #a3b199;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.mapBlock__productionCountries {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    width: 100%;
}

.mapBlock__productionCountry {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.1375rem, 0.5vw + 0.8rem, 1.3rem);
    font-weight: 400;
    line-height: 1.45;
    color: var(--Vit, #fff);
    width: 100%;
}

.mapBlock__recyclingCountries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem clamp(1rem, 3vw, 2.5rem);
    width: 100%;
    align-items: start;
}

.mapBlock__recyclingCountry {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(1.1375rem, 0.5vw + 0.8rem, 1.3rem);
    font-weight: 400;
    line-height: 1.45;
    color: #a3b199;
    min-width: 0;
}

@media (max-width: 720px) {
    .mapBlock__productionContainer {
        flex-direction: column;
        gap: clamp(1.5rem, 4vw, 2rem);
    }

    .mapBlock__production {
        flex: 1 1 auto;
        width: 100%;
    }

    .mapBlock__recycling {
        flex: 1 1 auto;
        width: 100%;
        padding-left: 0;
        border-left: none;
        padding-top: clamp(1.25rem, 3vw, 1.75rem);
        border-top: 1px solid rgba(163, 177, 153, 0.25);
    }

    .mapBlock__recyclingCountries {
        grid-template-columns: 1fr;
    }
}
