/*
Theme Name: FITMAX Enterprise
Theme URI: https://example.com/fitmax-enterprise
Author: Codex
Author URI: https://example.com
Description: A WordPress theme for fitness equipment manufacturers with products, solutions, cases and partner sections.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: fitmax-enterprise
*/

:root {
    --page: #f6f8f9;
    --surface: #fbfcfd;
    --surface-strong: #ffffff;
    --text: #17212b;
    --muted: #66717d;
    --line: #e2e8ee;
    --accent: #f97316;
    --accent-dark: #cf5707;
    --green: #19924c;
    --blue: #246bba;
    --radius: 12px;
    --shadow: 0 18px 50px rgba(22, 32, 44, 0.11);
    --container: min(100% - 40px, 1210px);
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 252, 253, 0.94);
    border-bottom: 1px solid rgba(226, 232, 238, 0.74);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: var(--container);
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-width: 146px;
}

.brand-name {
    color: var(--accent);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.brand-tagline,
.footer-brand p {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.primary-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 34px);
    padding: 0;
    margin: 0;
    list-style: none;
    white-space: nowrap;
}

.nav-list a {
    display: block;
    padding: 25px 0 23px;
    color: #1f2a35;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list .current-menu-item a {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.btn-primary {
    background: var(--accent);
    color: #fff8f2;
}

.header-cta:hover,
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f8fafb;
    color: #1c2832;
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.btn-secondary:hover {
    background: #eaf0f4;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.hero-section {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background: #17212b;
}

.hero-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
}

.hero-panel {
    background-size: cover;
    background-position: center;
    min-height: 480px;
    transform: scale(1.02);
}

.hero-indoor {
    clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
}

.hero-outdoor,
.hero-campus {
    filter: saturate(1.05) contrast(1.04);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 20, 27, 0.56), rgba(9, 20, 27, 0.34) 42%, rgba(9, 20, 27, 0.5)),
        linear-gradient(180deg, rgba(9, 20, 27, 0.16), rgba(9, 20, 27, 0.52));
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: var(--container);
    min-height: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fbfcfd;
}

.hero-kicker {
    margin: 0 0 12px;
    color: #ffd5b5;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-overlay h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1.12;
    letter-spacing: 0;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.hero-overlay p:not(.hero-kicker) {
    max-width: 660px;
    margin: 18px 0 0;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 34px;
}

.service-strip {
    position: relative;
    z-index: 2;
    width: var(--container);
    margin: -34px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-item {
    padding: 28px 30px;
    border-right: 1px solid var(--line);
}

.service-item:last-child {
    border-right: 0;
}

.service-item strong {
    display: block;
    color: #1d2832;
    font-size: 18px;
    line-height: 1.35;
}

.service-item span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

.section-wrap {
    width: var(--container);
    margin: 0 auto;
    padding: 44px 0;
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h2 {
    position: relative;
    margin: 0;
    padding-left: 16px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: 0;
}

.section-heading h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 30px;
    border-radius: 4px;
    background: var(--accent);
}

.section-heading p {
    margin: 8px 0 0 16px;
    color: var(--muted);
    max-width: 680px;
}

.inline-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.inline-heading > a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.business-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1.05fr;
    gap: 22px;
}

.business-card {
    min-height: 220px;
    display: flex;
    align-items: flex-start;
    padding: 28px;
    overflow: hidden;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 34px rgba(22, 32, 44, 0.12);
    position: relative;
    isolation: isolate;
}

.business-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(251, 252, 253, 0.9), rgba(251, 252, 253, 0.56) 48%, rgba(251, 252, 253, 0.04));
}

.business-card-body {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 34px 32px;
    display: block;
}

.business-card-body h3,
.business-card-body h2,
.business-card-body p {
    max-width: 270px;
}

.business-card h3,
.business-card p {
    margin: 0;
}

.business-card h3 {
    font-size: 24px;
}

.business-card p {
    margin-top: 8px;
    color: #263440;
    font-weight: 600;
}

.business-card-body span {
    display: inline-flex;
    margin-top: 18px;
    padding: 9px 16px;
    border-radius: 7px;
    background: var(--green);
    color: #f7fff9;
    font-size: 13px;
    font-weight: 800;
}

.business-card:nth-child(2) .business-card-body span {
    background: var(--accent);
}

.business-card:nth-child(3) .business-card-body span {
    background: var(--blue);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card a {
    display: block;
    min-height: 214px;
    padding: 18px 16px 20px;
    text-align: center;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card a:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.34);
    box-shadow: 0 16px 38px rgba(22, 32, 44, 0.1);
}

.product-card img {
    width: 100%;
    height: 124px;
    object-fit: contain;
}

.product-card h3 {
    margin: 12px 0 4px;
    font-size: 18px;
}

.product-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.scene-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 14px;
}

.scene-card {
    overflow: hidden;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}

.scene-card img {
    width: 100%;
    height: 105px;
    object-fit: cover;
}

.scene-card h3 {
    margin: 12px 12px 2px;
    font-size: 16px;
}

.scene-card p {
    margin: 0 12px 14px;
    color: var(--muted);
    font-size: 12px;
}

.strength-section {
    background: linear-gradient(90deg, #fff4ea, #fff9f4 46%, #fff4ea);
    border-top: 1px solid #f3dfcc;
    border-bottom: 1px solid #f3dfcc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #f1dac4;
    border-radius: var(--radius);
}

.stats-grid div {
    padding: 28px 18px;
    text-align: center;
    border-right: 1px dashed #dec5ae;
}

.stats-grid div:last-child {
    border-right: 0;
}

.stats-grid strong {
    display: block;
    color: var(--accent);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1;
}

.stats-grid span {
    display: block;
    margin-top: 8px;
    color: #5d6670;
    font-size: 13px;
    font-weight: 700;
}

.partner-case-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.45fr;
    gap: 24px;
}

.partners-block,
.cases-block {
    min-width: 0;
}

.compact-heading {
    margin-bottom: 16px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 22px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.partner-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 10px;
    color: #374450;
    font-size: 17px;
    font-weight: 900;
    border: 1px solid #ebeff3;
    border-radius: 8px;
    background: #fbfcfd;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.case-card {
    overflow: hidden;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.case-card img {
    width: 100%;
    height: 118px;
    object-fit: cover;
}

.case-card h3 {
    margin: 12px 12px 2px;
    font-size: 16px;
}

.case-card p {
    margin: 0 12px 14px;
    color: var(--muted);
    font-size: 12px;
}

.about-section {
    background: linear-gradient(135deg, #fff6ed 0%, #f8fbfd 48%, #f7f9fb 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.about-copy h2 {
    position: relative;
    margin: 0 0 16px;
    padding-left: 16px;
    font-size: clamp(26px, 3vw, 36px);
}

.about-copy h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 30px;
    border-radius: 4px;
    background: var(--accent);
}

.about-copy p {
    margin: 0 0 24px;
    color: var(--muted);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-cards article {
    padding: 14px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.about-cards img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.about-cards h3 {
    margin: 14px 2px 2px;
    font-size: 17px;
}

.about-cards p {
    margin: 0 2px 4px;
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    background: var(--surface-strong);
    border-top: 1px solid var(--line);
}

.footer-inner {
    width: var(--container);
    margin: 0 auto;
    padding: 38px 0 30px;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.2fr;
    gap: 34px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h3,
.footer-contact h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.footer-links a,
.footer-contact p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.qr-placeholder {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin-top: 6px;
    color: #7b8791;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(23, 33, 43, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(23, 33, 43, 0.08) 1px, transparent 1px),
        #fbfcfd;
    background-size: 10px 10px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 48px;
    color: #8a949d;
    font-size: 12px;
    border-top: 1px solid var(--line);
}

.single-page {
    width: var(--container);
    margin: 0 auto;
    padding: 60px 0;
}

.content-band {
    padding: 40px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.solution-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #14202a;
}

.solution-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.02) contrast(1.04);
    transform: scale(1.02);
}

.solution-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 20, 29, 0.82), rgba(10, 20, 29, 0.5) 52%, rgba(10, 20, 29, 0.28)),
        linear-gradient(180deg, rgba(10, 20, 29, 0.16), rgba(10, 20, 29, 0.72));
}

.solution-hero-content {
    position: relative;
    z-index: 1;
    width: var(--container);
    min-height: 430px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fbfcfd;
}

.back-link {
    width: fit-content;
    margin-bottom: 20px;
    color: #ffd5b5;
    font-size: 14px;
    font-weight: 800;
}

.solution-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: 0;
}

.solution-hero p {
    max-width: 650px;
    margin: 18px 0 0;
    color: #e5edf4;
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 700;
}

.solution-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.solution-overview {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.solution-panel {
    padding: 30px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 38px rgba(22, 32, 44, 0.06);
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.scenario-grid span {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: #22303b;
    font-weight: 800;
    background: #f6f8f9;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.solution-feature-panel {
    display: grid;
    align-content: space-between;
    gap: 18px;
}

.solution-feature-panel h2 {
    margin: 0;
    font-size: 28px;
}

.solution-feature-panel p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.solution-feature-panel img,
.case-highlight img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.config-grid article {
    min-height: 126px;
    padding: 22px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.config-grid strong,
.process-grid strong {
    display: block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
}

.config-grid h3 {
    margin: 28px 0 0;
    color: #1d2832;
    font-size: 20px;
}

.solution-advantages {
    background: linear-gradient(90deg, #fff4ea, #fff9f4 46%, #fff4ea);
    border-top: 1px solid #f3dfcc;
    border-bottom: 1px solid #f3dfcc;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.advantage-grid article {
    padding: 28px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid #f1dac4;
    border-radius: var(--radius);
}

.advantage-grid h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.advantage-grid p {
    margin: 0;
    color: #5f6670;
}

.delivery-section {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    align-items: stretch;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.process-grid article {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.process-grid span {
    color: #1d2832;
    font-size: 18px;
    font-weight: 900;
}

.case-highlight {
    padding: 16px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.case-highlight h3 {
    margin: 16px 4px 4px;
    font-size: 22px;
}

.case-highlight p {
    margin: 0 4px 6px;
    color: var(--muted);
}

.solution-cta {
    background: #17212b;
    color: #fbfcfd;
}

.solution-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.solution-cta h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
}

.solution-cta p {
    margin: 8px 0 0;
    color: #c9d3dc;
}

.archive-hero {
    background: linear-gradient(135deg, #17212b, #2d3c48);
    color: #fbfcfd;
}

.archive-hero h1 {
    margin: 0;
    font-size: clamp(42px, 5vw, 68px);
}

.archive-hero p {
    max-width: 720px;
    margin: 12px 0 0;
    color: #dbe4ec;
    font-size: 19px;
    font-weight: 700;
}

.archive-solution-grid .business-card {
    min-height: 300px;
}

.archive-solution-grid .business-card h2 {
    margin: 0;
    font-size: 28px;
}

.solution-green .btn-primary,
.solution-green .config-grid strong,
.solution-green .process-grid strong {
    --accent: var(--green);
}

.solution-blue .btn-primary,
.solution-blue .config-grid strong,
.solution-blue .process-grid strong {
    --accent: var(--blue);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1100px) {
    .header-inner {
        gap: 16px;
    }

    .nav-list {
        gap: 14px;
    }

    .header-cta {
        display: none;
    }

    .service-strip,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item:nth-child(2),
    .stats-grid div:nth-child(2n) {
        border-right: 0;
    }

    .product-grid,
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scene-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .partner-case-grid,
    .about-grid,
    .solution-overview,
    .delivery-section {
        grid-template-columns: 1fr;
    }

    .config-grid,
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100% - 28px, 1210px);
    }

    .header-inner {
        min-height: 64px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .primary-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 68px;
        display: none;
        padding: 12px;
        background: var(--surface-strong);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: block;
    }

    .nav-list {
        display: grid;
        gap: 0;
        justify-content: stretch;
    }

    .nav-list a {
        padding: 12px 6px;
        border-bottom: 1px solid var(--line);
    }

    .hero-section,
    .hero-overlay,
    .hero-panel {
        min-height: 530px;
    }

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

    .hero-panel:not(.hero-indoor) {
        display: none;
    }

    .hero-indoor {
        clip-path: none;
    }

    .hero-overlay {
        align-items: flex-start;
        text-align: left;
    }

    .hero-overlay h1 {
        font-size: 40px;
    }

    .hero-overlay p:not(.hero-kicker) {
        font-size: 18px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    .service-strip,
    .business-grid,
    .product-grid,
    .scene-strip,
    .stats-grid,
    .partner-grid,
    .case-grid,
    .about-cards,
    .footer-inner,
    .scenario-grid,
    .config-grid,
    .advantage-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .solution-hero,
    .solution-hero-content {
        min-height: 500px;
    }

    .solution-hero h1 {
        font-size: 42px;
    }

    .solution-hero-actions,
    .solution-cta-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .service-strip {
        margin-top: 18px;
    }

    .service-item,
    .stats-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-item:last-child,
    .stats-grid div:last-child {
        border-bottom: 0;
    }

    .inline-heading {
        display: block;
    }

    .inline-heading > a {
        display: inline-flex;
        margin: 10px 0 0 16px;
    }

    .business-card {
        min-height: 240px;
    }

    .footer-bottom {
        flex-wrap: wrap;
        gap: 10px 18px;
        padding: 14px;
    }
}
