/* ==========================================================================
   SerpClix SEO Pages — Shared Styles
   Matches the design of serpclix.com/seo/buy-organic-traffic and sibling pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2a9d8f;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover {
    color: #228176;
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Page Wrapper
   -------------------------------------------------------------------------- */
.seo-page {
    overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */
.container {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --------------------------------------------------------------------------
   Typography — Headings
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #000000;
    line-height: 1.25;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 24px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    text-align: left;
}

/* --------------------------------------------------------------------------
   Typography — Body
   -------------------------------------------------------------------------- */
p {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 18px;
    color: #333333;
    text-align: left;
}

strong {
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Section Bases
   -------------------------------------------------------------------------- */
section {
    padding: 70px 0;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    background: linear-gradient(135deg, #b8e6c8 0%, #d4f0b0 50%, #f0e68c 100%);
    padding: 80px 0 70px;
    text-align: center;
}

.hero-section h1 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .hero-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    text-align: center;
}

.hero-section p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .cta-button {
    margin-top: 28px;
}

/* --------------------------------------------------------------------------
   Content Section (white background, generic)
   -------------------------------------------------------------------------- */
.content-section,
.how-it-works-section,
.traffic-quality-section,
.comparison-section,
.evidence-section,
.who-uses-section,
.pricing-section {
    background-color: #ffffff;
    padding: 70px 0;
}

/* Alternate green-gradient sections */
.how-it-works-section,
.comparison-section,
.evidence-section,
.pricing-section {
    background: linear-gradient(90deg, #e4f5e9 20%, #eface6 100%);
}

/* --------------------------------------------------------------------------
   Green Section (explicit class)
   -------------------------------------------------------------------------- */
.green-section {
    background: linear-gradient(90deg, #e4f5e9 20%, #eface6 100%);
    padding: 70px 0;
}

/* --------------------------------------------------------------------------
   Topic Sections (child topic pages linked from hub)
   -------------------------------------------------------------------------- */
.topic-section {
    padding: 60px 0;
    border-bottom: 1px solid #e8e8e8;
}

.topic-section:nth-child(odd) {
    background-color: #ffffff;
}

.topic-section:nth-child(even) {
    background: linear-gradient(90deg, #e4f5e9 20%, #eface6 100%);
}

.topic-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   CTA Button
   -------------------------------------------------------------------------- */
.cta-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #000000;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.cta-button:hover {
    background-color: #e6b800;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* Center CTA buttons that are direct children of .container */
.container > .cta-button {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   CTA Section (mid-page break)
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, #b8e6c8 0%, #d4f0b0 50%, #f0e68c 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    text-align: center;
    margin-bottom: 14px;
}

.cta-section p {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   Final CTA Section
   -------------------------------------------------------------------------- */
.final-cta-section {
    background: linear-gradient(135deg, #b8e6c8 0%, #d4f0b0 50%, #f0e68c 100%);
    padding: 80px 0;
    text-align: center;
}

.final-cta-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.final-cta-section p {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtext {
    font-size: 0.9375rem;
    color: #555555;
    margin-top: 18px;
}

/* --------------------------------------------------------------------------
   Steps (How It Works — 1, 2, 3)
   -------------------------------------------------------------------------- */
.steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.step {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    border-left: 4px solid #2a9d8f;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #000000;
}

.step h3::before {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.1rem;
}

.step:nth-child(1) h3::before {
    content: "\2776";  /* 1 circled */
}

.step:nth-child(2) h3::before {
    content: "\2777";  /* 2 circled */
}

.step:nth-child(3) h3::before {
    content: "\2778";  /* 3 circled */
}

.step p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Comparison Table
   -------------------------------------------------------------------------- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 0.9375rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table thead th {
    background-color: #1a2b3c;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid #152230;
}

.comparison-table thead th:first-child {
    min-width: 160px;
}

.comparison-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #e8ecef;
    vertical-align: top;
    line-height: 1.55;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f7f9fb;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #eef6f4;
}

/* --------------------------------------------------------------------------
   Check List (green checkmark items)
   -------------------------------------------------------------------------- */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;
    color: #2a9d8f;
    font-weight: 700;
    font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   X List (red X items)
   -------------------------------------------------------------------------- */
.x-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.x-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.x-list li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    top: 1px;
    color: #d9534f;
    font-weight: 700;
    font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   Case Studies
   -------------------------------------------------------------------------- */
.case-studies-section {
    background: linear-gradient(90deg, #e4f5e9 20%, #eface6 100%);
    padding: 70px 0;
}

.case-studies-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.case-studies-section .seo-case-studies-intro {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #444444;
}

/* Free trial CTA under case blocks (hub): center like mockups; do not inherit into card copy */
.seo-case-studies-freetrial-wrap {
    text-align: center;
    margin-top: 28px;
}

.seo-case-study-chart-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 20px 22px;
    margin: 0 auto 28px;
    max-width: 960px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.seo-case-study-chart-card .section-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.case-study {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #2a9d8f;
}

.case-study h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #000000;
}

.case-study p {
    margin-bottom: 14px;
    color: #444444;
}

.case-study p:last-child {
    margin-bottom: 0;
}

/* Case study metric highlights (optional utility class) */
.case-study-metric {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #2a9d8f;
    margin-bottom: 6px;
}

/* Featured block metrics (`_seo_case_study_metrics.html`, local_ctr inline blocks) */
.case-study-metrics {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px 20px;
    margin-bottom: 16px;
}

.case-study-metrics .metric {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

/* Keep typography at inherited/body scale (do not bump rem — matches pre-metrics-css look) */
.case-study-metrics .metric-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #2a9d8f;
}

.case-study-metrics .metric-label {
    font-size: 0.8125rem;
    line-height: 1.35;
    color: #555555;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   FAQ Section (matches `vnext/components/shared/_faq_accordion.html`: button + .open)
   marketing.css also defines .faq-*; this sheet loads after it on SEO pages and
   must not assume native <details>/<summary> markup.
   -------------------------------------------------------------------------- */
.faq-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.faq-section .section-eyebrow {
    display: block;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #2a9d8f;
    margin-bottom: 12px;
}

.faq-section .section-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.faq-section .section-subtitle {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #444444;
}

.faq-grid {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item.open {
    border-color: #c5e8e2;
    box-shadow: 0 2px 12px rgba(42, 157, 143, 0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: #000000;
    padding: 18px 22px;
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.faq-question:hover {
    background-color: #f7f9fb;
    color: #228176;
}

.faq-item.open .faq-question {
    background-color: #f7f9fb;
    border-bottom: 1px solid #e8e8e8;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: #555555;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 2000px;
}

.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 1rem;
    line-height: 1.75;
    color: #444444;
}

.faq-answer-inner p {
    margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-more {
    margin-top: 24px;
    text-align: center;
}

.faq-more a {
    font-weight: 600;
    color: #2a9d8f;
    text-decoration: none;
}

.faq-more a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Internal Links Section (links to other /seo/ pages)
   -------------------------------------------------------------------------- */
.internal-links {
    background-color: #f7f9fb;
    padding: 50px 0;
}

.internal-links h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.internal-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    list-style: none;
    padding: 0;
}

.internal-links li {
    flex: 0 1 auto;
}

.internal-links a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1px solid #d8dfe6;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a2b3c;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.internal-links a:hover {
    border-color: #2a9d8f;
    color: #2a9d8f;
    box-shadow: 0 2px 8px rgba(42, 157, 143, 0.1);
}

/* --------------------------------------------------------------------------
   Case Studies (shared SEO component)
   -------------------------------------------------------------------------- */
.cases-section {
    background-color: #ffffff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cases-grid.cases-grid--seo-more {
    margin-top: 8px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.case-card {
    background-color: #ffffff;
    border: 1px solid #d8dfe6;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.case-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a9d8f, #4a90d9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-card:hover {
    box-shadow: 0 14px 32px rgba(10, 34, 64, 0.12);
    transform: translateY(-4px);
}

.case-card:hover::before {
    opacity: 1;
}

.case-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #e6eef3;
    background-color: #f7f9fb;
}

.case-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-company {
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6f7f8f;
}

.case-title {
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.2px;
    color: #000000;
}

.case-result {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-left: 3px solid #2a9d8f;
    border-radius: 0 8px 8px 0;
    background-color: #eef8f6;
}

.case-result blockquote {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #4b5f75;
    font-style: italic;
}

.case-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.case-metrics {
    display: flex;
    gap: 16px;
}

.case-metric-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6f7f8f;
}

.case-metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f776d;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.08), rgba(42, 157, 143, 0.03));
    padding: 2px 10px;
    border-radius: 6px;
}

.case-link {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    font-size: 13px;
    color: #2a9d8f;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.2s ease;
}

.case-link:hover {
    gap: 8px;
}

/* --------------------------------------------------------------------------
   Standard Lists (within content sections)
   -------------------------------------------------------------------------- */
section ul:not(.check-list):not(.x-list):not(.internal-links ul) {
    padding-left: 0;
    margin: 20px 0;
}

section ul:not(.check-list):not(.x-list):not(.internal-links ul) li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.65;
}

section ul:not(.check-list):not(.x-list):not(.internal-links ul) li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #2a9d8f;
    border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Logo / Header (minimal — no nav on SEO pages)
   -------------------------------------------------------------------------- */
.seo-header {
    text-align: center;
    padding: 24px 0 0;
}

.seo-header img {
    height: 36px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Footer (minimal)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Section Images
   -------------------------------------------------------------------------- */
.section-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf0;
}

a > .section-image {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

a > .section-image:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .section-image {
        margin: 16px auto 24px;
        border-radius: 6px;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.seo-footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.8125rem;
    color: #999999;
    border-top: 1px solid #e8e8e8;
}

/* --------------------------------------------------------------------------
   Responsive — Tablet (768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.125rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    section {
        padding: 50px 0;
    }

    .hero-section {
        padding: 60px 0 50px;
    }

    .final-cta-section {
        padding: 60px 0;
    }

    .step {
        padding: 24px 22px;
    }

    .comparison-table {
        font-size: 0.8125rem;
    }

    .comparison-table thead th {
        padding: 12px 10px;
        font-size: 0.8125rem;
    }

    .comparison-table tbody td {
        padding: 10px;
    }

    .case-study {
        padding: 24px 22px;
    }

    .faq-item summary {
        font-size: 1rem;
        padding: 16px 44px 16px 18px;
    }

    .faq-item p {
        padding: 16px 18px;
    }

    .internal-links ul {
        flex-direction: column;
        align-items: center;
    }

    .internal-links a {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 340px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .case-footer {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* --------------------------------------------------------------------------
   Responsive — Mobile (480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    section {
        padding: 40px 0;
    }

    .hero-section {
        padding: 48px 0 40px;
    }

    .hero-section .hero-intro {
        font-size: 1rem;
    }

    .container {
        padding: 0 16px;
    }

    .cta-button {
        padding: 12px 26px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .container > .cta-button {
        width: 100%;
    }

    .final-cta-section {
        padding: 48px 0;
    }

    .step {
        padding: 20px 18px;
    }

    /* Make comparison table scroll horizontally on small screens */
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .case-study {
        padding: 20px 18px;
    }

    .faq-item summary {
        font-size: 0.9375rem;
        padding: 14px 40px 14px 16px;
    }

    .faq-item p {
        padding: 14px 16px;
        font-size: 0.9375rem;
    }

    .steps {
        gap: 20px;
    }
}
