/* ─────────────────────────────────────────────
   WatRijmtOp.nl - Rijmwoordenboek
   Based on Voorbeeldzinnen.info design system
   Primary: #d97706 (amber) | Text: #333 | Border: #ced6e0
   Font: Open Sans 16px
   ───────────────────────────────────────────── */

:root {
    --wro-primary: #d97706;
    --wro-primary-dark: #b45309;
    --wro-primary-light: #fef3c7;
    --wro-primary-50: #fffbeb;
    --wro-accent: #7c3aed;
    --wro-accent-light: #ede9fe;
    --wro-green: #059669;
    --wro-green-light: #d1fae5;
    --wro-gray-50: #f8fafc;
    --wro-gray-100: #f1f5f9;
    --wro-gray-200: #e2e8f0;
    --wro-gray-300: #cbd5e1;
    --wro-gray-400: #94a3b8;
    --wro-gray-500: #64748b;
    --wro-gray-600: #475569;
    --wro-gray-700: #334155;
    --wro-gray-800: #1e293b;
    --wro-gray-900: #0f172a;
    --wro-border: #ced6e0;
    --wro-divider: #f1f2f6;
    --wro-radius: 6px;
    --wro-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --wro-shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --wro-transition: 0.2s ease;
}

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

body {
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #333;
    background: #fff;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: var(--wro-primary); }
a:hover { color: var(--wro-primary-dark); }

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Header ── */

header {
    background: #fff;
    border-bottom: 1px solid var(--wro-border);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: box-shadow var(--wro-transition);
}

header.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

.logo span { color: var(--wro-primary); }
.logo:hover { color: #333; }

.header-nav {
    display: flex;
    gap: 24px;
}

.header-nav a {
    color: #666;
    font-size: 15px;
    transition: color var(--wro-transition);
}

.header-nav a:hover { color: var(--wro-primary); }

.header-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
}

.header-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: var(--wro-radius);
    padding: 8px 0;
    min-width: 180px;
}

.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 10px 20px; color: #333; font-size: 15px; }
.mobile-nav a:hover { background: var(--wro-primary-50); color: var(--wro-primary); }

/* ── Search bar (voorbeeldzinnen-style) ── */

.wro-search-bar {
    padding: 10px 0 5px;
    margin-bottom: 5px;
}

.wro-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wro-search-form .inp-wrap {
    display: flex;
    flex: 1;
    min-width: 200px;
}

.wro-search-form input[type="text"],
.wro-search-form input[type="search"] {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 1px solid var(--wro-border);
    border-radius: 2px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #333;
    margin-right: 10px;
    outline: none;
    transition: border-color var(--wro-transition);
}

.wro-search-form input[type="text"]:focus,
.wro-search-form input[type="search"]:focus {
    border-color: var(--wro-primary);
}

.wro-search-form input::placeholder { color: #999; }

.wro-search-form .btn-search {
    height: 50px;
    background: var(--wro-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    border: none;
    text-transform: uppercase;
    min-width: 120px;
    max-width: 120px;
    cursor: pointer;
    transition: background var(--wro-transition);
    border-radius: 2px;
}

.wro-search-form .btn-search:hover {
    background: var(--wro-primary-dark);
}

/* Autocomplete dropdown */
.wro-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--wro-border);
    border-radius: 0 0 var(--wro-radius) var(--wro-radius);
    box-shadow: var(--wro-shadow-lg);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.wro-autocomplete a {
    display: block;
    padding: 10px 20px;
    color: #333;
    border-bottom: 1px solid var(--wro-divider);
    font-size: 15px;
}

.wro-autocomplete a:hover,
.wro-autocomplete a.active {
    background: var(--wro-primary-50);
    color: var(--wro-primary);
}

/* ── Breadcrumbs ── */

.breadcrumbs {
    font-size: 0.85rem;
    color: #8899a6;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.breadcrumbs a { color: var(--wro-primary); }
.breadcrumbs a:hover { text-decoration: underline; }
.bc-sep { margin: 0 0.4rem; color: #aab; }
.bc-current { color: #555; font-weight: 600; }

/* ── Page intro ── */

.page-intro {
    font-size: 16px;
    color: #666;
    margin: 8px 0 16px;
    line-height: 1.5;
}

.page-intro strong { color: #333; }

/* ── Info card (voorbeeldzinnen-style) ── */

.word-info-card {
    background: #fff;
    border: 1px solid var(--wro-border);
    border-radius: var(--wro-radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

/* ── Section labels ── */

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 16px 0 6px;
}

/* ── Word title ── */

.word-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px;
    font-family: "Open Sans", sans-serif;
}

.word-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    margin-left: 8px;
}

.word-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

/* ── Meta badges ── */

.word-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 0;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
}

.meta-badge-syllables {
    background: var(--wro-primary-light);
    color: var(--wro-primary-dark);
}

.meta-badge-count {
    background: var(--wro-green-light);
    color: var(--wro-green);
}

.meta-badge-phonetic {
    background: var(--wro-accent-light);
    color: var(--wro-accent);
    font-family: monospace;
    letter-spacing: 0.5px;
}

/* ── Rhyme sections (similar to meaning/synonyms sections) ── */

.rhyme-section {
    margin: 10px 0;
    padding: 18px 0;
    border-top: 1px solid var(--wro-primary);
}

.rhyme-section-half {
    border-top-color: var(--wro-accent);
}

.rhyme-section-assonance {
    border-top-color: var(--wro-green);
}

.rhyme-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.rhyme-count {
    font-size: 15px;
    font-weight: 400;
    color: #999;
    margin-left: 6px;
}

.rhyme-section-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.5;
}

/* ── Syllable group headers ── */

.syllable-group {
    margin-bottom: 16px;
}

.syllable-group h3 {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* ── Rhyme word links (similar to synonym-link) ── */

.rhyme-words {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.rhyme-link {
    display: inline-block;
    padding: 4px 12px;
    color: var(--wro-primary);
    font-size: 15px;
    transition: color var(--wro-transition);
    border-radius: 2px;
}

.rhyme-link:hover {
    color: var(--wro-primary-dark);
    background: var(--wro-primary-50);
}

.rhyme-link-half {
    color: var(--wro-accent);
}

.rhyme-link-half:hover {
    color: #6d28d9;
    background: var(--wro-accent-light);
}

.rhyme-link-assonance {
    color: var(--wro-green);
}

.rhyme-link-assonance:hover {
    color: #047857;
    background: var(--wro-green-light);
}

/* ── Cross-link section ── */

.cross-link-section {
    margin: 10px 0;
    padding: 18px 0;
    border-top: 1px solid var(--wro-divider);
}

.cross-link-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.cross-link-section p {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

.cross-link-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--wro-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    transition: background var(--wro-transition);
}

.cross-link-btn:hover {
    background: var(--wro-primary-dark);
    color: #fff;
}

/* ── Tips grid ── */

.tips-section {
    margin: 10px 0;
    padding: 18px 0;
    border-top: 1px solid var(--wro-divider);
}

.tips-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

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

.tip-card {
    padding: 16px;
    border: 1px solid var(--wro-border);
    border-radius: var(--wro-radius);
}

.tip-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.tip-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ── Letter navigation ── */

.letter-nav {
    margin-top: 30px;
    padding: 18px 0;
    border-top: 1px solid var(--wro-divider);
}

.letter-nav h3 {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.letters {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.letter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--wro-border);
    border-radius: 2px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--wro-transition);
}

.letter-link:hover {
    background: var(--wro-primary);
    color: #fff;
    border-color: var(--wro-primary);
}

.letter-link.active {
    background: var(--wro-primary);
    color: #fff;
    border-color: var(--wro-primary);
}

/* ── Browse: letter grid ── */

.letter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.letter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--wro-border);
    border-radius: var(--wro-radius);
    transition: all var(--wro-transition);
    color: #333;
}

.letter-card:hover {
    border-color: var(--wro-primary);
    box-shadow: var(--wro-shadow);
    color: #333;
}

.letter-card .letter-big {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wro-primary);
    line-height: 1;
}

.letter-card .letter-count {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

/* ── Browse: word list ── */

.word-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 6px;
    margin-bottom: 24px;
}

.word-list-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    color: var(--wro-primary);
    font-size: 15px;
    border-radius: 2px;
    transition: background var(--wro-transition);
}

.word-list-link:hover {
    background: var(--wro-primary-50);
}

.word-list-link .syl-badge {
    font-size: 12px;
    color: #999;
}

/* ── Syllable cards ── */

.syllable-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.syl-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 14px;
    border: 1px solid var(--wro-border);
    border-radius: var(--wro-radius);
    transition: all var(--wro-transition);
    color: #333;
}

.syl-card:hover {
    border-color: var(--wro-accent);
    box-shadow: var(--wro-shadow);
    color: #333;
}

.syl-card .syl-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--wro-accent);
    line-height: 1;
}

.syl-card .syl-label {
    font-size: 14px;
    margin-top: 4px;
}

.syl-card .syl-count {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* ── Search hero ── */

.search-hero {
    text-align: center;
    padding: 48px 0 24px;
}

.search-hero h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.search-hero p {
    color: #666;
    font-size: 16px;
    margin-bottom: 24px;
}

.search-hero .wro-search-form {
    max-width: 600px;
    margin: 0 auto;
}

/* ── Popular words ── */

.popular-section {
    text-align: center;
    margin: 32px 0;
}

.popular-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.popular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.popular-link {
    padding: 6px 14px;
    border: 1px solid var(--wro-border);
    border-radius: 2px;
    color: var(--wro-primary);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--wro-transition);
}

.popular-link:hover {
    background: var(--wro-primary);
    color: #fff;
    border-color: var(--wro-primary);
}

/* ── Features row ── */

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.feature-card {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--wro-border);
    border-radius: var(--wro-radius);
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

/* ── Pagination ── */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
}

.pagination a {
    padding: 8px 16px;
    background: var(--wro-primary);
    color: #fff;
    border-radius: 2px;
    font-weight: 600;
    font-size: 14px;
}

.pagination a:hover { background: var(--wro-primary-dark); color: #fff; }
.page-info { color: #999; font-size: 14px; }

/* ── 404 ── */

.not-found {
    text-align: center;
    padding: 60px 20px;
}

.not-found h1 { font-size: 24px; margin-bottom: 12px; }
.not-found p { color: #666; margin-bottom: 20px; }

/* ── Social share ── */

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    transition: opacity var(--wro-transition);
}

.share-btn:hover { opacity: 0.8; color: #fff; }
.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }
.share-wa { background: #25D366; }

/* ── Footer ── */

footer {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--wro-border);
    font-size: 14px;
    color: #999;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-inner a {
    color: #999;
    margin-left: 16px;
    transition: color var(--wro-transition);
}

.footer-inner a:hover { color: var(--wro-primary); }

/* ── Responsive ── */

@media (max-width: 767px) {
    .word-title { font-size: 20px; }
    .word-subtitle { display: block; margin-left: 0; margin-top: 2px; font-size: 14px; }
    .word-header { flex-direction: column; }
    .tips-grid { grid-template-columns: 1fr; }
    .features-row { grid-template-columns: 1fr; }
    .word-list { grid-template-columns: repeat(2, 1fr); }
    .letter-grid { grid-template-columns: repeat(4, 1fr); }
    .search-hero h1 { font-size: 22px; }
    .header-nav { display: none; }
    .header-menu-toggle { display: flex; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-inner a { margin-left: 0; margin: 0 8px; }
}

@media (max-width: 480px) {
    .wro-search-form .btn-search {
        min-width: 80px;
        max-width: 80px;
        font-size: 14px;
    }
    .word-list { grid-template-columns: 1fr; }
    .letter-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Logo image ── */
.logo img {
    height: 36px;
    width: auto;
    display: block;
}

.logo:hover { opacity: 0.85; }

/* ── Logo redesign (speech bubble + text) ── */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: -0.3px;
}

.logo:hover { opacity: 0.85; color: #333; }

.logo-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
}

.logo-text {
    font-family: "Open Sans", sans-serif;
    color: #334155;
    font-weight: 400;
    font-size: 21px;
}

.logo-text b {
    font-weight: 700;
    color: #d97706;
}

.logo-text em {
    font-style: normal;
    font-weight: 400;
    color: #94a3b8;
    font-size: 16px;
}

/* ── Legal pages (privacy, cookie) ── */

.legal-page {
    margin-bottom: 32px;
}

.legal-page h1 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 24px;
}

.legal-page h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 24px 0 8px;
    padding-top: 16px;
    border-top: 1px solid var(--wro-divider);
}

.legal-page h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-page p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page ul {
    margin: 8px 0 12px 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-page li {
    margin-bottom: 4px;
}

.legal-page a {
    color: var(--wro-primary);
}

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

/* Cookie table */
.cookie-table-wrap {
    overflow-x: auto;
    margin: 12px 0 16px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cookie-table th {
    background: var(--wro-gray-50);
    text-align: left;
    padding: 10px 14px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid var(--wro-border);
}

.cookie-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--wro-divider);
    color: #555;
}

.cookie-table code {
    background: var(--wro-gray-100);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 13px;
}

/* ── Sinterklaas page ── */

.sint-hero {
    text-align: center;
    padding: 40px 0 32px;
}

.sint-hero-icon {
    margin-bottom: 16px;
}

.sint-hero h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.sint-hero p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.sint-section {
    margin: 8px 0;
    padding: 24px 0;
    border-top: 1px solid var(--wro-divider);
}

.sint-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.sint-section-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
}

/* Tips grid (numbered) */
.sint-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sint-tip-card {
    padding: 20px;
    border: 1px solid var(--wro-border);
    border-radius: var(--wro-radius);
    position: relative;
}

.sint-tip-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--wro-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sint-tip-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.sint-tip-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Sinterklaas words grid */
.sint-words-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}

.sint-word-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid var(--wro-border);
    border-radius: var(--wro-radius);
    color: #333;
    transition: all var(--wro-transition);
}

.sint-word-card:hover {
    border-color: var(--wro-primary);
    box-shadow: var(--wro-shadow);
    color: #333;
}

.sint-word-name {
    font-weight: 600;
    font-size: 15px;
}

.sint-word-meta {
    font-size: 12px;
    color: #999;
}

/* Poem card */
.sint-poem-card {
    background: var(--wro-primary-50);
    border: 1px solid var(--wro-primary-light);
    border-radius: var(--wro-radius);
    padding: 24px 28px;
    margin-bottom: 12px;
}

.sint-poem-line {
    font-size: 16px;
    color: #333;
    line-height: 2;
    font-style: italic;
}

.sint-poem-line a {
    color: var(--wro-primary);
    font-weight: 600;
    font-style: normal;
    border-bottom: 1px dashed var(--wro-primary);
}

.sint-poem-line a:hover {
    color: var(--wro-primary-dark);
}

.sint-poem-author {
    text-align: right;
    font-size: 14px;
    color: #999;
    margin-top: 8px;
    font-style: italic;
}

.sint-poem-note {
    font-size: 14px;
    color: #666;
}

.highlight-amber {
    color: var(--wro-primary);
    font-weight: 600;
}

/* SEO text section */
.sint-seo p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .sint-tips-grid {
        grid-template-columns: 1fr;
    }
    .sint-words-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sint-hero h1 {
        font-size: 22px;
    }
    .sint-poem-card {
        padding: 16px 18px;
    }
}
