.example-page {
    background: var(--surface);
}

.example-hero {
    background:
        linear-gradient(135deg, rgba(222, 235, 255, .55), transparent 42%),
        linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.example-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 60px;
    align-items: center;
}

.example-hero h1 {
    font-size: clamp(2.4rem, 4.4vw, 4.2rem);
}

.example-lead-media,
.example-figure {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.example-lead-media {
    box-shadow: var(--shadow);
}

.example-lead-media img,
.example-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.example-content {
    max-width: 900px;
    padding: 86px 0 110px;
}

.example-content section + section {
    margin-top: 58px;
}

.example-content h2 {
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.example-content h3 {
    margin: 30px 0 16px;
    font-size: 1.22rem;
    color: var(--ink);
}

.example-content p {
    font-size: 1.02rem;
}

.example-concepts-grid,
.example-refinement-grid,
.example-stl-grid {
    display: grid;
    gap: 16px;
}

.example-concepts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.example-refinement-grid {
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.example-stl-grid {
    margin-bottom: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.example-stl-grid figcaption {
    text-align: center;
}

.example-concept-option {
    min-height: 180px;
}

.example-concept-option img,
.example-refinement-grid img,
.example-stl-grid img {
    height: 100%;
    object-fit: contain;
}

.example-selected-figure {
    margin-bottom: 30px;
}

.example-concept-title,
.example-label {
    margin-bottom: 8px;
}

.example-concept-list {
    margin: 0 0 18px 22px;
    padding: 0;
    color: var(--muted);
    font-size: 1.02rem;
    font-weight: 400;
}

.example-refinement-text + .example-refinement-grid,
.example-refinement-grid + .example-refinement-text {
    margin-top: 24px;
}

.example-figure figcaption {
    padding: 10px 12px 0;
    font-size: .82rem;
    color: var(--muted);
}

.example-openscad-placeholder,
.example-image-placeholder {
    min-height: 220px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: var(--surface-alt);
    color: var(--muted);
    text-align: center;
}

.example-openscad-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 28px;
}

.example-image-placeholder {
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 22px;
}

.example-openscad-placeholder strong,
.example-image-placeholder span {
    color: var(--ink);
}

.example-openscad-placeholder span,
.example-image-placeholder small {
    font-size: .9rem;
}

.example-cta {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-alt);
}

.example-cta .button {
    width: auto;
    margin-right: 18px;
}

@media (max-width: 1023px) {
    .example-hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .example-concepts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .example-stl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .example-content {
        padding: 64px 0 78px;
    }

    .example-concepts-grid,
    .example-refinement-grid,
    .example-stl-grid {
        grid-template-columns: 1fr;
    }

    .example-cta {
        padding: 26px 22px;
    }

    .example-cta .button {
        width: 100%;
        margin: 0 0 16px;
    }
}
