*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-dark: #2B3848;
    --bg-darker: #232F3E;
    --bg-card: #2F3D4F;
    --bg-light: #F7F7F5;
    --lime: #C8E050;
    --lime-hover: #D4E96A;
    --lime-dark: #A8BF3A;
    --text-dark: #1A2332;
    --text-muted-dark: #4A5568;
    --white: #FFFFFF;
    --white-muted: rgba(255, 255, 255, 0.6);
    --dot-color: rgba(255, 255, 255, 0.04);
    --border-subtle: rgba(255, 255, 255, 0.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background-color: var(--bg-darker);
    color: var(--white);
    overflow-x: hidden;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    background: var(--lime);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================
   FOCUS VISIBLE (global)
   ============================================ */
:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 4rem;
    transition: all 0.3s;
}

.nav.scrolled {
    background: rgba(35, 47, 62, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--white);
}

.nav-brand span { color: var(--lime); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-links .nav-cta {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-links .nav-cta:hover {
    border-color: var(--lime);
    color: var(--lime);
}

/* ============================================
   HAMBURGER
   ============================================ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 38% 1fr;
    align-items: center;
    background-color: var(--bg-dark);
    background-image: radial-gradient(var(--dot-color) 1px, transparent 1px);
    background-size: 24px 24px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-darker), transparent);
    pointer-events: none;
}

.hero-image {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-image img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 88%;
    width: auto;
    object-fit: contain;
    object-position: bottom left;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, var(--bg-dark), transparent);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    padding: 0 4rem 0 2rem;
    z-index: 10;
    max-width: 720px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.75rem;
}

.hero-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lime);
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title .accent {
    color: var(--lime);
    font-style: italic;
}

.hero-title .bold-white {
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--lime);
    color: var(--bg-darker);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--lime-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(200, 224, 80, 0.2);
}

.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
}

.btn-secondary:hover { color: var(--lime); }
.btn-secondary svg { width: 20px; height: 20px; }

.hero-platforms {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hero-platforms span {
    font-size: 0.8rem;
    color: var(--white-muted);
    font-weight: 500;
}

.platform-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.platform-badge svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.platform-badge:hover {
    transform: translateY(-2px);
}

.platform-badge--spotify {
    background: #1DB954;
    color: #000;
}

.platform-badge--spotify svg { fill: #000; }
.platform-badge--spotify span { color: #000; }

.platform-badge--spotify:hover {
    background: #1ed760;
}

.platform-badge--apple {
    background: #fff;
    color: #000;
}

.platform-badge--apple svg { fill: #000; }
.platform-badge--apple span { color: #000; }

.platform-badge--apple:hover {
    background: #f0f0f0;
}

.platform-badge--rss {
    background: rgba(255, 255, 255, 0.12);
}

.platform-badge--rss svg { fill: #f90; }
.platform-badge--rss span { color: var(--white); }

.platform-badge--rss:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    border-top: 1px solid var(--border-subtle);
    background: rgba(35, 47, 62, 0.6);
    backdrop-filter: blur(12px);
}

.stat { text-align: center; }

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-value span { color: var(--lime); }

.stat-label {
    font-size: 0.8rem;
    color: var(--white-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section { padding: 6rem 4rem; }

.section-dark {
    background-color: var(--bg-darker);
    background-image: radial-gradient(var(--dot-color) 1px, transparent 1px);
    background-size: 24px 24px;
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-accent {
    background-color: var(--lime);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-light .section-label { color: var(--lime-dark); }

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-title .accent {
    color: var(--lime);
    font-style: italic;
}

.section-light .section-title .accent { color: var(--lime-dark); }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   EPISODEN
   ============================================ */
.episodes-grid { display: grid; gap: 1.5rem; }

.episode-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: all 0.2s;
}

.episode-card:hover {
    border-color: rgba(200, 224, 80, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.episode-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lime);
    opacity: 0.5;
    min-width: 3rem;
    text-align: center;
    letter-spacing: -0.05em;
}

.episode-card:hover .episode-number { opacity: 1; }

.episode-info { min-width: 0; }

.episode-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.episode-desc {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.episode-duration {
    font-size: 0.8rem;
    color: var(--white-muted);
    font-weight: 500;
    white-space: nowrap;
}

.episode-links {
    display: flex;
    gap: 0.5rem;
}

.episode-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.episode-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.episode-btn:hover {
    transform: translateY(-1px);
}

.episode-btn--spotify {
    background: #1DB954;
}

.episode-btn--spotify svg { fill: #000; }
.episode-btn--spotify span { color: #000; }

.episode-btn--spotify:hover { background: #1ed760; }

.episode-btn--apple {
    background: #fff;
}

.episode-btn--apple svg { fill: #000; }
.episode-btn--apple span { color: #000; }

.episode-btn--apple:hover { background: #f0f0f0; }

.episode-btn--detail {
    background: rgba(200, 224, 80, 0.12);
    border: 1px solid rgba(200, 224, 80, 0.3);
    color: var(--lime);
}
.episode-btn--detail svg { stroke: var(--lime); fill: none; }
.episode-btn--detail span { color: var(--lime); }
.episode-btn--detail:hover { background: rgba(200, 224, 80, 0.22); border-color: var(--lime); }

.episode-card--linked { cursor: pointer; }
.episode-title-link { text-decoration: none; color: inherit; }
.episode-title-link:hover .episode-title { color: var(--lime); }

.episodes-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--white-muted);
    font-size: 1.05rem;
}

/* ============================================
   ÜBER DEN PODCAST
   ============================================ */
.about-podcast {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-podcast-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-podcast-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted-dark);
    margin-bottom: 1rem;
}

.about-podcast-text p strong { color: var(--text-dark); }

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.pillar {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #E8E8E4;
}

.pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.pillar-icon svg { width: 20px; height: 20px; }

.pillar h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.pillar p {
    font-size: 0.8rem;
    color: var(--text-muted-dark);
    line-height: 1.5;
}

/* ============================================
   ÜBER MICH
   ============================================ */
.about-me {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-me-image { position: relative; }

.about-me-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
}

.about-me-image::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    border: 2px solid var(--lime);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.about-me-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-me-content h3 .accent { color: var(--lime); }

.about-me-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--white-muted);
    margin-bottom: 1rem;
}

.about-me-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    background: rgba(200, 224, 80, 0.1);
    color: var(--lime);
    border: 1px solid rgba(200, 224, 80, 0.15);
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    text-align: center;
    padding: 5rem 4rem;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto 2rem;
    opacity: 0.8;
}

.cta-section .btn-primary {
    background: var(--bg-darker);
    color: var(--lime);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.cta-section .btn-primary:hover {
    background: var(--text-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 3rem 4rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-brand span { color: var(--lime); }

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
    font-size: 0.8rem;
    color: var(--white-muted);
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================ */
.nav-back {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-back:hover { color: var(--white); }

.legal-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
}

.legal-content h1 .accent {
    color: var(--lime);
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--lime);
}

.legal-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--white-muted);
    margin-bottom: 0.75rem;
}

.legal-content strong { color: var(--white); font-weight: 600; }

.legal-content a {
    color: var(--lime);
    text-decoration: none;
}

.legal-content a:hover { text-decoration: underline; }

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--white-muted);
    margin-bottom: 0.35rem;
}

.legal-content .uppercase-block {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--white-muted);
    margin-bottom: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--lime);
    border-radius: 0 8px 8px 0;
}

/* Impressum-spezifisch: kleinere h2 */
.legal-content.impressum h2 {
    font-size: 1.25rem;
    color: var(--lime);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .hero-image {
        height: 50vh;
        order: -1;
    }

    .hero-image img {
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
    }

    .hero-image::after {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top, var(--bg-dark), transparent);
    }

    .hero-content {
        padding: 2rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-label { justify-content: center; }
    .hero-subtitle { max-width: 100%; }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-platforms { justify-content: center; }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .section { padding: 4rem 2rem; }

    .about-podcast {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-me {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .about-me-image {
        display: flex;
        justify-content: center;
    }

    .about-me-image img { max-width: 300px; }
    .about-me-tags { justify-content: center; }

    .episode-card {
        grid-template-columns: auto 1fr;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .episode-meta {
        grid-column: 1 / -1;
        justify-content: space-between;
    }

    .nav { padding: 1rem 1.5rem; position: relative; flex-wrap: wrap; }
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0.5rem 0 1rem;
        border-top: 1px solid var(--border-subtle);
        margin-top: 0.75rem;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-subtle);
    }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-links .nav-cta {
        display: inline-flex;
        margin-top: 0.5rem;
        width: auto;
    }

    .footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .legal-content { padding: 2.5rem 1.5rem 4rem; }
    .legal-content h1 { font-size: 2rem; }
    .legal-content h2 { font-size: 1.3rem; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }

    .hero-stats {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    /* Hero-Platforms auf kleinen Screens umbrechen */
    .hero-platforms {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .about-pillars { grid-template-columns: 1fr; }

    .episode-number { display: none; }
    .episode-card { grid-template-columns: 1fr; }

    /* Episode-Meta und Links auf schmalen Screens umbrechen */
    .episode-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .episode-links {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    /* Footer-Links auf kleinen Screens umbrechen */
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.5rem;
    }
}

/* ============================================
   SEHR KLEINE PHONES (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
    /* Etwas weniger horizontaler Abstand */
    .section { padding: 3rem 1.25rem; }
    .cta-section { padding: 4rem 1.25rem; }

    .hero-content { padding: 1.5rem 1.25rem 2rem; }

    .nav { padding: 1rem; }

    .footer { padding: 2rem 1.25rem; }

    /* Episode-Buttons: nur Icons (kein Text) — spart viel Platz */
    .episode-btn {
        padding: 0.5rem 0.6rem;
    }

    .episode-btn span { display: none; }

    /* Episode-Card etwas weniger Innen-Padding */
    .episode-card { padding: 1.1rem 1.1rem; }

    /* Platform-Badges etwas kompakter */
    .platform-badge {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }
}