#tdmu-map-slot {
    position: relative;
    border-top: 1px solid var(--tdmu-border-light);
    padding-top: var(--tdmu-slot-spacing);
    padding-bottom: var(--tdmu-slot-spacing);
}

.tdmu-map-section {
    padding: 0 0 3.5rem;
}

.tdmu-map-shell {
    display: grid;
    gap: 1.2rem;
    padding: 1.5rem;
    border: 1px solid rgba(var(--tdmu-primary-rgb), 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92)), linear-gradient( 135deg, rgba(var(--tdmu-accent-rgb), 0.08), rgba(var(--tdmu-primary-rgb), 0.04) );
}

.tdmu-map-copy {
    max-width: 56ch;
}

    .tdmu-map-copy > * {
        margin: 0;
    }

        .tdmu-map-copy > * + * {
            margin-top: 0.55rem;
        }

.tdmu-map-kicker {
    color: var(--tdmu-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tdmu-map-title {
    color: var(--tdmu-text);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.1;
    font-weight: 700;
}

.tdmu-map-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.tdmu-map-card {
    display: grid;
    gap: 0.75rem;
}

.tdmu-map-card-head > * {
    margin: 0;
}

    .tdmu-map-card-head > * + * {
        margin-top: 0.35rem;
    }

.tdmu-map-card-title {
    color: var(--tdmu-text);
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 700;
}

.tdmu-map-frame {
    overflow: hidden;
    border: 1px solid rgba(var(--tdmu-primary-rgb), 0.12);
}

    .tdmu-map-frame iframe {
        display: block;
        width: 100%;
        height: min(42vw, 380px);
        min-height: 300px;
        border: 0;
    }

.tdmu-map-frame--video iframe {
    background: #0c1536;
}

@media (max-width: 767.98px) {
    .tdmu-map-section {
        padding-bottom: 2.5rem;
    }

    .tdmu-map-shell {
        padding: 1rem;
    }

    .tdmu-map-grid {
        grid-template-columns: 1fr;
    }

    .tdmu-map-frame iframe {
        height: 320px;
    }
}