.gf-examples {
    margin-top: 1.25rem;
}

.gf-examples__disclosure {
    background: linear-gradient(120deg, #fff7de 0%, #f4fbff 100%);
    border: 1px solid #e8d3a0;
    border-radius: 12px;
    color: #4f3a08;
    font-size: 0.95rem;
    margin: 0 0 1rem;
    padding: 0.8rem 1rem;
}

.gf-examples__grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
}

.gf-examples-card {
    background: linear-gradient(130deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid #dbe4f6;
    box-sizing: border-box;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(24, 39, 75, 0.08);
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    min-width: 0;
    padding: 1rem 1.1rem 1.15rem;
    width: 100% !important;
    transition: transform 130ms ease, box-shadow 130ms ease;
}

.gf-examples-card > * {
    min-width: 0;
}

.gf-examples-card:hover {
    box-shadow: 0 14px 30px rgba(24, 39, 75, 0.12);
    transform: translateY(-1px);
}

.gf-examples-card__header h3 {
    margin: 0;
}

.gf-examples-card__header p {
    color: #4d596f;
    font-size: 0.9rem;
    margin: 0.45rem 0 0.65rem;
}

.gf-examples-legend {
    display: flex;
    gap: 0.9rem;
    margin: 0.1rem 0 0.6rem;
}

.gf-examples-legend__item {
    align-items: center;
    color: #25324a;
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 600;
    gap: 0.35rem;
}

.gf-examples-legend__item::before {
    border-radius: 99px;
    content: "";
    display: inline-block;
    height: 2px;
    width: 22px;
}

.gf-examples-legend__item--forecast::before {
    background: #5b3df5;
}

.gf-examples-legend__item--actual::before {
    background: #0f172a;
}

.gf-examples-chart {
    background: #eef3ff;
    border: 1px solid #d3dcf1;
    box-sizing: border-box;
    border-radius: 10px;
    aspect-ratio: 16 / 6;
    max-width: 100%;
    min-height: 260px;
    min-width: 0;
    overflow: hidden;
    width: 100%;
}

.gf-examples-chart svg {
    display: block;
    width: 100%;
    height: 100%;
}

.gf-examples-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.gf-examples-line--forecast {
    stroke: #6a58ff;
    stroke-opacity: 0.88;
}

.gf-examples-line--actual {
    stroke: #0f172a;
    stroke-opacity: 0.95;
}

.gf-examples-point {
    stroke-width: 1.2;
}

.gf-examples-point--forecast {
    fill: #ffffff;
    stroke: #6a58ff;
}

.gf-examples-point--actual {
    fill: #ffffff;
    stroke: #1f2a3f;
}

.gf-examples-axis {
    stroke: #8ea2c8;
    stroke-width: 1;
}

.gf-examples-gridline {
    stroke: #d6e0f5;
    stroke-width: 1;
}

.gf-examples-gridline--vertical {
    stroke: #dbe5f8;
}

.gf-examples-axis-tick {
    fill: #4a5977;
    font-size: 11px;
}

.gf-examples-axis-label {
    fill: #24324c;
    font-size: 12px;
    font-weight: 700;
}

.gf-examples-summary {
    color: #172234;
    font-size: 0.9rem;
    margin: 0.7rem 0 0;
}

@media (max-width: 760px) {
    .gf-examples-chart {
        aspect-ratio: 4 / 3;
        min-height: 230px;
    }

    .gf-examples-axis-tick {
        font-size: 11px;
    }
}
