    .tc-geo-marker-wrapper {
        position: absolute;

        /* anchor bottom-center */
        transform: translate(-50%, -60%);
        pointer-events: none;
        /* wrapper shouldn't block events */
    }

    .tc-geo-marker {
        display: inline-flex;
        align-items: center;
        gap: 8px;

        padding: 8px 14px 10px 14px;
        border-radius: 999px;

        /* Fill */
        background-color: #0b75d1;

        /* Inside 1px stroke */
        box-shadow:
            inset 0 0 0 1px #005ca8,
            0 6px 16px rgba(0, 0, 0, 0.18);

        color: #ffffff;

        /* Material 3 – labelLarge */
        font-family: "Hanken Grotesk", system-ui, -apple-system,
            BlinkMacSystemFont, "Segoe UI",
            Roboto, Helvetica, Arial, sans-serif;
        font-size: 14px;
        /* labelLarge */
        font-weight: 500;
        /* labelLarge */
        line-height: 20px;
        /* labelLarge */
        letter-spacing: 0.1px;

        white-space: nowrap;
        user-select: none;

        transition:
            transform 0.18s ease,
            box-shadow 0.18s ease,
            opacity 0.18s ease;

        position: relative;
        pointer-events: auto;
        background-clip: padding-box;
        overflow: visible;
    }

    .tc-image-marker {
        transform-origin: 50% 100%;
    }

    /* Optional: slight hierarchy by geo level */
    .tc-geo-marker.level-country {
        font-size: 14px;
        padding: 9px 16px;
    }

    .tc-geo-marker.level-admin1 {
        font-size: 13px;
        padding: 8px 14px;
    }

    .tc-geo-marker.level-city {
        font-size: 12px;
        padding: 7px 12px;
    }

    .tc-geo-marker .label {
        opacity: .98;
    }

    .tc-geo-marker .count {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        min-width: 22px;
        height: 22px;
        padding: 0 8px;

        border-radius: 999px;

        background-color: rgba(255, 255, 255, 0.2);
        color: #ffffff;

        font-family: inherit;
        font-size: 12px;
        font-weight: 600;
        line-height: 16px;
    }

    .tc-location-marker {
        --fill: rgba(0, 0, 0, 1);
        --stroke: rgba(0, 0, 0, 1);
        --text: rgba(255, 255, 255, 1);

        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            opacity 0.2s ease;

        width: 28px;
        height: 28px;
        border-radius: 50%;
        transform: translate(0%, 50%);
        background: var(--fill);
        border: 1px solid var(--stroke);
        color: var(--text);

        display: flex;
        align-items: center;
        justify-content: center;

        font-family: "Hanken Grotesk", system-ui, -apple-system,
            BlinkMacSystemFont, "Segoe UI",
            Roboto, Helvetica, Arial, sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0.1px;

        box-sizing: border-box;
    }

    .tc-location-marker.highlighted {
        box-shadow:
            0 0 0 6px rgba(11, 117, 209, 0.25),
            0 8px 20px rgba(0, 0, 0, 0.18);
    }

    /* ===============================
   PLAN EVENT MARKER
   =============================== */

    .tc-event-marker-wrapper {
        position: absolute;
        transform: translate(-50%, -46px);
        pointer-events: none;
    }

    .tc-event-marker {
        --fill: rgba(0, 0, 0, 1);
        --stroke: rgba(0, 0, 0, 1);
        --text: rgba(255, 255, 255, 1);

        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;

        height: 40px;
        min-width: 40px;
        padding: 0;
        border-radius: 999px;

        background: var(--fill);
        border: 1px solid var(--stroke);
        color: var(--text);

        box-shadow:
            0 6px 16px rgba(0, 0, 0, 0.18);

        pointer-events: auto;
        overflow: visible;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    /* stretched bubble when number exists */
    .tc-event-marker.with-number {
        padding: 0 12px 0 10px;
        gap: 6px;
    }

    /* number inside bubble (left of icon) */
    .tc-event-marker .number-inline {
        font-family: "Hanken Grotesk", system-ui, -apple-system,
            BlinkMacSystemFont, "Segoe UI",
            Roboto, Helvetica, Arial, sans-serif;

        font-size: 16px;
        /* Title Medium size */
        font-weight: 500;
        /* Title Medium weight */
        line-height: 1;
        /* visually centered in 40px bubble */
        letter-spacing: 0.1px;
        /* subtle M3 feel */

        color: var(--text);

        min-width: 16px;
        text-align: center;
    }


    /* arrow */
    .tc-event-marker::after {
        content: "";
        position: absolute;

        bottom: -2px;
        /* ⬅ deeper into bubble */
        left: 50%;
        transform: translateX(-50%) rotate(45deg);

        width: 11px;
        height: 11px;

        background: var(--fill);
        border-right: 1px solid var(--stroke);
        border-bottom: 1px solid var(--stroke);

        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.12);
    }

    /* category icon */
    .tc-event-marker img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .tc-event-marker.highlighted {
        box-shadow:
            0 0 0 6px rgba(11, 117, 209, 0.25),
            0 8px 20px rgba(0, 0, 0, 0.18);
    }