/* SyClaw product page — layout & sections */

.syclaw-page main.syclaw-main {
    overflow-x: hidden;
}

/* ─── Hero ─── */
.syclaw-page .syclaw-hero {
    position: relative;
    text-align: left;
    padding: 132px 0 88px;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(165deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 45%, rgba(236, 248, 255, 0.5) 100%);
}

/* Hero background layers (SyClaw-only) */
.syclaw-hero-bg-glow {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.55;
    animation: syclawHeroGlowPulse 14s ease-in-out infinite;
}

.syclaw-hero-bg-glow--a {
    width: min(520px, 55vw);
    height: min(520px, 55vw);
    right: -8%;
    top: 8%;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.35) 0%, transparent 68%);
}

.syclaw-hero-bg-glow--b {
    width: min(420px, 48vw);
    height: min(420px, 48vw);
    right: 12%;
    bottom: -5%;
    background: radial-gradient(circle, rgba(139, 186, 25, 0.28) 0%, transparent 70%);
    animation-delay: -5s;
}

.syclaw-hero-bg-shimmer {
    position: absolute;
    inset: -20% -30% 0 40%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        115deg,
        transparent 40%,
        rgba(255, 255, 255, 0.5) 48%,
        rgba(0, 136, 204, 0.08) 52%,
        transparent 60%
    );
    background-size: 200% 200%;
    opacity: 0.35;
    animation: syclawHeroShimmer 22s ease-in-out infinite;
}

.syclaw-hero-orbit-c {
    position: absolute;
    width: min(640px, 70vw);
    height: min(640px, 70vw);
    right: -180px;
    bottom: -240px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    border: 1px dashed rgba(0, 136, 204, 0.22);
    box-shadow: inset 0 0 80px rgba(0, 136, 204, 0.06);
    animation: orbitLayerSpinReverse 42s linear infinite;
}

@keyframes syclawHeroGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.62;
    }
}

@keyframes syclawHeroShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.syclaw-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 960px) {
    .syclaw-hero-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(300px, min(480px, 42vw));
        gap: 56px;
        align-items: stretch;
    }
}

.syclaw-hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
    position: relative;
}

@media (min-width: 960px) {
    .syclaw-hero-right {
        min-height: 380px;
    }
}

.syclaw-hero-visual {
    position: relative;
    flex: 1;
    min-height: 180px;
    border-radius: 16px;
    overflow: hidden;
}

.syclaw-hero-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1px dashed rgba(139, 186, 25, 0.35);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.syclaw-hero-ring--1 {
    width: min(280px, 72%);
    height: min(280px, 72%);
    animation: syclawHeroRingSpin 28s linear infinite;
}

.syclaw-hero-ring--2 {
    width: min(200px, 52%);
    height: min(200px, 52%);
    border-color: rgba(0, 136, 204, 0.3);
    animation: syclawHeroRingSpinReverse 22s linear infinite;
}

@keyframes syclawHeroRingSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes syclawHeroRingSpinReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.syclaw-hero-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(72px, 18vw);
    height: min(72px, 18vw);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #fff 0%, rgba(0, 136, 204, 0.35) 45%, rgba(139, 186, 25, 0.45) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8),
        0 12px 40px rgba(0, 136, 204, 0.25),
        0 0 60px rgba(139, 186, 25, 0.2);
    animation: syclawHeroCorePulse 4s ease-in-out infinite;
}

@keyframes syclawHeroCorePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.8),
            0 12px 40px rgba(0, 136, 204, 0.22),
            0 0 50px rgba(139, 186, 25, 0.18);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.06);
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.9),
            0 16px 48px rgba(0, 136, 204, 0.32),
            0 0 72px rgba(139, 186, 25, 0.28);
    }
}

.syclaw-hero-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 136, 204, 0.55);
    box-shadow: 0 0 12px rgba(0, 136, 204, 0.5);
    left: 18%;
    top: 28%;
    animation: syclawHeroFloatA 7s ease-in-out infinite;
}

.syclaw-hero-particle--2 {
    left: auto;
    right: 22%;
    top: 42%;
    background: rgba(139, 186, 25, 0.65);
    box-shadow: 0 0 12px rgba(139, 186, 25, 0.45);
    animation: syclawHeroFloatB 9s ease-in-out infinite;
}

.syclaw-hero-particle--3 {
    left: 52%;
    top: auto;
    bottom: 18%;
    width: 6px;
    height: 6px;
    background: rgba(0, 136, 204, 0.45);
    animation: syclawHeroFloatC 8s ease-in-out infinite;
}

@keyframes syclawHeroFloatA {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.7;
    }
    50% {
        transform: translate(16px, -12px);
        opacity: 1;
    }
}

@keyframes syclawHeroFloatB {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.65;
    }
    50% {
        transform: translate(-14px, 14px);
        opacity: 1;
    }
}

@keyframes syclawHeroFloatC {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10px, -18px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .syclaw-hero-bg-glow,
    .syclaw-hero-bg-shimmer,
    .syclaw-hero-orbit-c,
    .syclaw-hero-ring--1,
    .syclaw-hero-ring--2,
    .syclaw-hero-core,
    .syclaw-hero-particle,
    .syclaw-hero-particle--2,
    .syclaw-hero-particle--3,
    .syclaw-page .syclaw-hero .hero-orbit {
        animation: none !important;
    }
    .syclaw-hero-bg-glow {
        opacity: 0.35;
    }
    .syclaw-hero-bg-shimmer {
        opacity: 0.15;
    }
}

.syclaw-hero-main .page-subtitle {
    margin-bottom: 12px;
}

.syclaw-hero-main .page-title {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
    margin-bottom: 16px;
    text-align: left;
}

.syclaw-hero-main .page-desc {
    margin: 0 0 28px;
    max-width: 540px;
    text-align: left;
    font-size: 17px;
    line-height: 1.65;
}

.syclaw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.syclaw-hero-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 14px;
}

.syclaw-hero-jump a {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.syclaw-hero-jump a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.syclaw-hero-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.syclaw-stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.syclaw-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.syclaw-stat-label {
    color: var(--text-muted);
}

.syclaw-stat-value {
    font-weight: 600;
    color: var(--text-main);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 959px) {
    .syclaw-page .syclaw-hero {
        text-align: center;
    }
    .syclaw-hero-visual {
        min-height: 160px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .syclaw-hero-main .page-title,
    .syclaw-hero-main .page-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .syclaw-hero-actions {
        justify-content: center;
    }
    .syclaw-hero-jump {
        justify-content: center;
    }
}

/* ─── Section surfaces (alternating) ─── */
.syclaw-section {
    position: relative;
}

.syclaw-section--surface {
    background: var(--bg-dark);
}

.syclaw-section--muted {
    background: var(--bg-darker);
}

.syclaw-section--brand {
    background: linear-gradient(180deg, rgba(236, 248, 255, 0.35) 0%, rgba(255, 255, 255, 1) 100%);
}

.syclaw-section--download {
    background: linear-gradient(180deg, #1a2332 0%, #243044 48%, #1e2838 100%);
    color: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.syclaw-section--download .section-title,
.syclaw-section--download h3 {
    color: #fff;
}

.syclaw-section--download .section-desc {
    color: rgba(255, 255, 255, 0.72);
}

.syclaw-section--download .syclaw-download-platform {
    color: rgba(255, 255, 255, 0.95);
}

.syclaw-section--download .syclaw-download-platform svg {
    color: #7dd3fc;
}

.syclaw-section--download .dl-card {
    background: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.syclaw-section--download .sys-req-table {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.syclaw-section--download .sys-req-table th {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.syclaw-section--download .sys-req-table td {
    color: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.syclaw-section--download .sys-req-table td:first-child {
    color: #7dd3fc;
}

.syclaw-section--download .sys-req-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.syclaw-section--download .syclaw-req-intro {
    color: rgba(255, 255, 255, 0.65);
}

.syclaw-section--download .syclaw-req-head svg {
    color: #7dd3fc;
}

/* Feature grid (3 cols) */
.syclaw-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .syclaw-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.syclaw-feature-card {
    height: 100%;
    padding: var(--spacing-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.syclaw-feature-card:hover {
    border-color: rgba(0, 136, 204, 0.25);
    box-shadow: 0 12px 32px rgba(0, 136, 204, 0.08);
}

.syclaw-feature-card h3 {
    font-size: 17px;
    margin: 0 0 10px;
    color: var(--text-main);
}

.syclaw-feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-regular);
}

/* Workflow: horizontal steps */
.syclaw-workflow {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 900px) {
    .syclaw-workflow {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.syclaw-workflow-step {
    position: relative;
    padding: var(--spacing-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    min-height: 100%;
}

.syclaw-workflow-step h3 {
    font-size: 16px;
    margin: 0 0 8px;
    color: var(--text-main);
}

.syclaw-workflow-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-regular);
}

.syclaw-openakita-note {
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 14px;
    color: var(--text-muted);
}

.syclaw-openakita-note a {
    color: var(--primary-color);
}

/* Download + requirements：2×2 网格，第二行下载卡与表格区同高 */
.syclaw-download-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 8px;
    animation: dlFadeIn 0.35s ease;
}

.syclaw-dl-cell-platform {
    grid-column: 1;
    grid-row: 1;
}

.syclaw-dl-cell-card {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.syclaw-dl-cell-req-top {
    grid-column: 1;
    grid-row: 3;
    min-width: 0;
}

.syclaw-download-aside.syclaw-dl-cell-req-table {
    grid-column: 1;
    grid-row: 4;
    min-width: 0;
}

.syclaw-dl-cell-platform .syclaw-download-platform {
    margin-bottom: 0;
}

.syclaw-dl-cell-req-top .syclaw-req-intro {
    margin-bottom: 0;
}

.syclaw-download-aside .sys-req-table {
    margin-top: 0;
}

@media (min-width: 900px) {
    .syclaw-download-layout {
        grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 48px;
        row-gap: 20px;
        align-items: stretch;
    }

    .syclaw-dl-cell-platform {
        grid-column: 1;
        grid-row: 1;
    }

    .syclaw-dl-cell-req-top {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
    }

    .syclaw-dl-cell-card {
        grid-column: 1;
        grid-row: 2;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .syclaw-dl-cell-card .dl-card.syclaw-download-card {
        flex: 1;
        min-height: 0;
    }

    .syclaw-download-aside.syclaw-dl-cell-req-table {
        grid-column: 2;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .syclaw-dl-cell-req-table .syclaw-req-body {
        flex: 1;
        min-height: 0;
    }

    .syclaw-dl-cell-req-table .sys-req-table {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }
}

.syclaw-req-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.syclaw-req-head h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.syclaw-req-intro {
    font-size: 14px;
    margin: 0 0 20px;
    padding-left: 36px;
    line-height: 1.6;
}

@media (max-width: 599px) {
    .syclaw-req-intro {
        padding-left: 0;
    }
}

/* Tutorial timeline */
.syclaw-tutorial-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.syclaw-tutorial-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: syclaw-tut;
}

.syclaw-tutorial-item {
    position: relative;
    padding: 0 0 28px 48px;
    border-left: 2px solid rgba(0, 136, 204, 0.2);
    margin-left: 14px;
}

.syclaw-tutorial-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.syclaw-tutorial-item::before {
    counter-increment: syclaw-tut;
    content: counter(syclaw-tut);
    position: absolute;
    left: -15px;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syclaw-tutorial-item h4 {
    margin: 0 0 8px;
    font-size: 17px;
    color: var(--text-main);
}

.syclaw-tutorial-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-regular);
}

/* FAQ */
.syclaw-faq-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.syclaw-faq details {
    border: 1px solid var(--border-light);
    padding: 16px 20px;
    margin-bottom: 12px;
    background: var(--bg-card);
    transition: border-color var(--transition-fast);
}

.syclaw-faq details[open] {
    border-color: rgba(0, 136, 204, 0.3);
}

.syclaw-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    list-style: none;
}

.syclaw-faq summary::-webkit-details-marker {
    display: none;
}

.syclaw-faq details[open] summary {
    margin-bottom: 12px;
    color: var(--primary-color);
}

.syclaw-faq details p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-regular);
}

.syclaw-faq details p a {
    color: var(--primary-color);
}

/* CTA band */
.syclaw-cta {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(139, 186, 25, 0.12) 0%, rgba(0, 136, 204, 0.1) 100%);
    border-top: 1px solid var(--border-light);
}

.syclaw-cta .section-title {
    margin-bottom: 8px;
}

.syclaw-cta-desc {
    color: var(--text-regular);
    font-size: 15px;
    margin: 0 auto 28px;
    max-width: 520px;
}

.syclaw-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── Inherited from previous inline (download card, table, buttons) ─── */
@keyframes dlFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.syclaw-download-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 20px;
}

.syclaw-download-platform svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.syclaw-section--download .syclaw-dl-cell-platform .syclaw-download-platform {
    justify-content: flex-start;
}

@media (max-width: 899px) {
    .syclaw-section--download .syclaw-dl-cell-platform .syclaw-download-platform {
        justify-content: center;
    }
}

.syclaw-download-card {
    border: 1px solid rgba(0, 136, 204, 0.35);
    box-shadow: 0 12px 40px rgba(0, 136, 204, 0.1);
}

.dl-card {
    background: var(--bg-card);
    border-radius: 0;
    padding: 32px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.dl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.dl-card.highlight {
    border: 1px solid var(--primary-color);
}

.dl-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.dl-badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 0;
    font-weight: 500;
}

.dl-badge.blue { background: #E6F3FA; color: #0088CC; }
.dl-badge.orange { background: #FEF3E6; color: #E67E22; }
.dl-badge.purple { background: #F4E8F8; color: #8E44AD; }
.dl-badge.outline { border: 1px solid #0088CC; background: transparent; color: #0088CC; }

.dl-version {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

.dl-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.dl-desc {
    font-size: 13px;
    color: var(--text-regular);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 32px;
}

.btn-download {
    width: 100%;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    justify-content: space-between;
    padding: 0 20px;
    background: #0D5EB5;
    color: white;
    display: flex;
    align-items: center;
    height: 48px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-download:hover {
    background: #0B4E98;
}

.btn-download span.size {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.sys-req-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--spacing-md);
    background: #ffffff;
    overflow: hidden;
    border: 1px solid rgba(77, 123, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.sys-req-table th,
.sys-req-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(77, 123, 255, 0.1);
    font-size: 14px;
}

.sys-req-table th {
    background: rgba(77, 123, 255, 0.05);
    font-weight: 600;
    color: #111;
}

.sys-req-table tbody tr {
    transition: background-color 0.2s;
}

.sys-req-table tbody tr:hover {
    background-color: rgba(77, 123, 255, 0.02);
}

.sys-req-table td:first-child {
    font-weight: 500;
    color: var(--primary-color);
}

.syclaw-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* 移动端：第一列标签不换行；配置列正常断行（避免 CPU/中文被逐字拆开） */
@media (max-width: 768px) {
    .syclaw-page .syclaw-download-aside .syclaw-req-body {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .syclaw-download-aside .sys-req-table {
        display: table;
        width: 100%;
        min-width: 280px;
        table-layout: auto;
        white-space: normal;
    }

    .syclaw-download-aside .sys-req-table th:first-child,
    .syclaw-download-aside .sys-req-table td:first-child {
        white-space: nowrap;
        width: 1%;
        max-width: none;
        word-break: normal;
        padding-left: 12px;
        padding-right: 10px;
    }

    .syclaw-download-aside .sys-req-table th:nth-child(n + 2),
    .syclaw-download-aside .sys-req-table td:nth-child(n + 2) {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: keep-all;
        padding-left: 10px;
        padding-right: 12px;
    }
}
