.chart-image-container-mobile {
    display: none;
}

.chart-mobile-content {
    display: none;
}

.chart-mobile-disclaimer {
    font-size: 12px;
    font-style: italic;
    text-align: center;
    margin-top: -30px;
    color: var(--color-nav-gray);
}

@media screen and (max-width: 767px) {
    .chart-image-container-mobile {
        display: block;
    }

    .chart-image-container {
        display: none;
    }

    .chart-mobile-content {
        display: block;
        width: 100%;
        padding: 0;
    }

    .chart-mobile-copy {
        text-align: center;
        margin-bottom: 0;
        height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .chart-mobile-description-container {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
    }

    .chart-mobile-description {
        font-size: 1.6rem;
        line-height: 1.4;
        font-weight: 700;
        color: var(--color-nav-gray);
        margin: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 0 20px 40px;
        width: 100%;
        height: 100%;
        display: none;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Show first description by default but transparent */
    .chart-mobile-description.description-start {
        display: flex;
    }

    .chart-mobile-description.active {
        opacity: 1;
        display: flex;
    }

    .chart-mobile-title {
        font-size: 2.4rem;
        line-height: 1.2;
        font-weight: 700;
        margin: 0;
        transition: opacity 0.3s ease;
        height: 60px;
        display: none;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .chart-mobile-title.title-start {
        color: var(--color-blue);
        display: flex;
    }

    .chart-mobile-title.title-middle {
        color: var(--color-nav-gray);
    }

    .chart-mobile-title.title-end {
        color: var(--color-red);
    }

    /* States for titles */
    .chart-mobile-title.active {
        display: flex;
    }

    .chart-image-container-mobile {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .chart-mobile-background {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
    }

    .chart-touch-points {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .touch-point {
        position: absolute;
        width: 68px;
        height: 68px;
        transform: translate(-50%, -50%);
        pointer-events: auto;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .touch-point svg {
        width: 68px;
        height: 68px;
        max-width: none;
        max-height: none;
    }

    /* Default circle colors */
    .touch-point-blue #Ellipse_263-2 {
        fill: var(--color-blue);
    }

    .touch-point-gray #Ellipse_263-2 {
        fill: var(--color-nav-gray);
    }

    .touch-point-red #Ellipse_263-2 {
        fill: var(--color-red);
    }

    /* Default inner circle is white */
    .touch-point #Ellipse_266-2 {
        fill: var(--color-white);
        transition: fill 0.3s ease;
    }

    /* Active states - inner circle takes outer circle color */
    .touch-point-blue.active #Ellipse_266-2 {
        fill: var(--color-blue);
    }

    .touch-point-gray.active #Ellipse_266-2 {
        fill: var(--color-nav-gray);
    }

    .touch-point-red.active #Ellipse_266-2 {
        fill: var(--color-red);
    }

    /* Circle positions */
    .touch-point-blue {
        left: 7%;
        top: 75%;
    }

    .touch-point-gray {
        left: 28%;
        top: 8%;
    }

    .touch-point-red {
        left: 91%;
        top: 75%;
    }
} 