/* =========================================
   Shared Components
   ========================================= */

.seo-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.seo-page-content-wide {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.seo-page-content h1,
.seo-page-content-wide h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.seo-page-content h2,
.seo-page-content-wide h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-page-content h3,
.seo-page-content-wide h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.seo-page-content p,
.seo-page-content-wide p {
    color: #d1fae5;
    margin: 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.seo-page-content a,
.seo-page-content-wide a {
    color: #34d399;
    text-decoration: underline;
}

.seo-page-content a:hover,
.seo-page-content-wide a:hover {
    color: #6ee7b7;
}

.seo-cta {
    display: inline-block;
    background: linear-gradient(to bottom, #2563eb, #1d4ed8);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 1.5rem 0;
    border: none;
    cursor: pointer;
}

.seo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
}

.content-type-badge {
    display: inline-block;
    background: rgba(21, 128, 61, 0.3);
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(52, 211, 153, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   1. Step Cards (Guide pages)
   ========================================= */

.step-indicator {
    color: #a7f3d0;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.steps-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 3rem;
}

.step-progress-line {
    position: absolute;
    left: 1.125rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #15803d, #166534);
    border-radius: 2px;
}

.step-card {
    position: relative;
    background: rgba(21, 128, 61, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    left: -3rem;
    top: 1.5rem;
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, #15803d, #166534);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.step-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.step-card p {
    color: #d1fae5;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 0.75rem;
}

.step-card .step-tip {
    background: rgba(6, 78, 59, 0.4);
    border-left: 3px solid #34d399;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0.75rem 1rem;
    color: #a7f3d0;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 0.75rem;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.step-card .step-tip.open {
    max-height: 200px;
    padding: 0.75rem 1rem;
}

.step-card .step-tip-toggle {
    background: none;
    border: none;
    color: #34d399;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.step-card .step-tip-toggle:hover {
    color: #6ee7b7;
}

@media (max-width: 480px) {
    .steps-container {
        padding-left: 2.5rem;
    }

    .step-number {
        left: -2.5rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }

    .step-progress-line {
        left: 0.9375rem;
    }

    .step-card {
        padding: 1rem;
    }
}

/* =========================================
   2. Tip Cards (Tips pages)
   ========================================= */

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-btn {
    background: rgba(21, 128, 61, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #a7f3d0;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: 'Poppins', system-ui, sans-serif;
}

.filter-btn:hover {
    background: rgba(21, 128, 61, 0.35);
    color: #fff;
}

.filter-btn.active {
    background: rgba(21, 128, 61, 0.5);
    color: #fff;
    border-color: #34d399;
    box-shadow: 0 0 0 1px #34d399;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.tip-card {
    background: rgba(21, 128, 61, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tip-card .tip-number {
    color: #34d399;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.4rem;
}

.tip-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.tip-card p {
    color: #d1fae5;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 0.75rem;
}

.tip-card .tip-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.difficulty-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    text-transform: capitalize;
}

.difficulty-badge.iniciante {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.difficulty-badge.intermediario {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.difficulty-badge.avancado {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.impact-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    text-transform: capitalize;
}

.impact-badge.baixo {
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.impact-badge.medio {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.impact-badge.alto {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

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

/* =========================================
   3. Checklist (Checklist pages)
   ========================================= */

.checklist-section {
    margin-bottom: 2rem;
}

.checklist-section h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar-container {
    width: 100%;
    background: rgba(6, 78, 59, 0.4);
    border-radius: 9999px;
    height: 1.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #15803d, #34d399);
    border-radius: 9999px;
    transition: width 0.4s ease;
    min-width: 0;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(21, 128, 61, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    transition: background 0.2s;
    cursor: pointer;
}

.checklist-item:hover {
    background: rgba(21, 128, 61, 0.25);
}

.checklist-item.checked {
    background: rgba(21, 128, 61, 0.3);
}

.checklist-item.checked .checklist-text {
    text-decoration: line-through;
    opacity: 0.6;
}

.checklist-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    background: rgba(6, 78, 59, 0.4);
    cursor: pointer;
    position: relative;
    margin-top: 0.1rem;
    transition: background 0.2s, border-color 0.2s;
}

.checklist-checkbox:checked {
    background: #15803d;
    border-color: #34d399;
}

.checklist-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checklist-text {
    color: #d1fae5;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.checklist-detail {
    color: #a7f3d0;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 0.35rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.checklist-item.expanded .checklist-detail {
    max-height: 100px;
}

/* =========================================
   4. Comparison Table (Comparison pages)
   ========================================= */

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table th {
    background: rgba(6, 78, 59, 0.6);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.comparison-table td {
    padding: 0.75rem 1rem;
    color: #d1fae5;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table tbody tr:nth-child(odd) {
    background: rgba(21, 128, 61, 0.1);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(21, 128, 61, 0.2);
}

.comparison-table tbody tr:hover {
    background: rgba(21, 128, 61, 0.35);
}

.winner-cell {
    background: rgba(21, 128, 61, 0.4) !important;
    color: #fff;
    font-weight: 600;
    position: relative;
}

.winner-cell::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #34d399;
}

.verdict-section {
    background: rgba(21, 128, 61, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.verdict-section h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.verdict-section p {
    color: #d1fae5;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.verdict-section .verdict-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.verdict-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    background: rgba(21, 128, 61, 0.3);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.verdict-badge.winner {
    background: rgba(52, 211, 153, 0.2);
    color: #fff;
    border-color: #34d399;
}

@media (max-width: 480px) {
    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }

    .verdict-section {
        padding: 1rem;
    }
}

/* =========================================
   5. FAQ Accordion (FAQ pages)
   ========================================= */

.faq-section {
    margin-top: 1.5rem;
}

.faq-section h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1rem;
    border-bottom: none;
}

.faq-item {
    background: rgba(21, 128, 61, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.open {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(21, 128, 61, 0.25);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: 'Poppins', system-ui, sans-serif;
    line-height: 1.5;
    transition: color 0.2s;
    gap: 1rem;
}

.faq-question:hover {
    color: #34d399;
}

.faq-question::after {
    content: '\25BC';
    font-size: 0.7rem;
    color: #a7f3d0;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
    color: #d1fae5;
    font-size: 0.9rem;
    line-height: 1.8;
}

.faq-answer-inner a {
    color: #34d399;
    text-decoration: underline;
}

.faq-answer-inner a:hover {
    color: #6ee7b7;
}

/* =========================================
   6. Glossary (Glossary pages)
   ========================================= */

.glossary-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glossary-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 1rem;
    background: rgba(21, 128, 61, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.glossary-letter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(6, 78, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    color: #a7f3d0;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.glossary-letter-link:hover {
    background: rgba(21, 128, 61, 0.4);
    color: #fff;
}

.glossary-letter-link.active {
    background: #15803d;
    color: #fff;
    border-color: #34d399;
    box-shadow: 0 0 0 1px #34d399;
}

.glossary-letter-link.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.glossary-search {
    width: 100%;
    background: rgba(6, 78, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #d1fae5;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 1.5rem;
}

.glossary-search::placeholder {
    color: rgba(167, 243, 208, 0.5);
}

.glossary-search:focus {
    outline: none;
    border-color: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}

.glossary-letter-group {
    margin-bottom: 2rem;
}

.glossary-letter-group h2 {
    color: #34d399;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(52, 211, 153, 0.3);
}

.glossary-term {
    background: rgba(21, 128, 61, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s;
}

.glossary-term:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.glossary-term-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.glossary-term-header h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.glossary-term-en {
    color: #6ee7b7;
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

.glossary-definition {
    color: #d1fae5;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 0.75rem;
}

.glossary-example {
    background: rgba(6, 78, 59, 0.3);
    border-left: 3px solid rgba(52, 211, 153, 0.4);
    border-radius: 0 0.375rem 0.375rem 0;
    padding: 0.6rem 1rem;
    color: #a7f3d0;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.glossary-related {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.glossary-related a,
.glossary-related span {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    background: rgba(21, 128, 61, 0.25);
    color: #a7f3d0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.glossary-related a:hover {
    background: rgba(21, 128, 61, 0.4);
    color: #fff;
    text-decoration: none;
}

@media (min-width: 768px) {
    .glossary-layout {
        flex-direction: row;
        gap: 2rem;
    }

    .glossary-sidebar {
        flex-direction: column;
        flex-wrap: nowrap;
        position: sticky;
        top: 72px;
        align-self: flex-start;
        width: 3.5rem;
        min-width: 3.5rem;
        padding: 0.75rem 0.5rem;
        gap: 0.25rem;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
    }

    .glossary-letter-link {
        width: 2.25rem;
        height: 2rem;
    }

    .glossary-main {
        flex: 1;
        min-width: 0;
    }
}

/* =========================================
   7. Hub Pages
   ========================================= */

.hub-header {
    text-align: center;
    padding: 2rem 1rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hub-header h1 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.hub-header p {
    color: #a7f3d0;
    font-size: 1rem;
    opacity: 0.9;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}

.hub-card {
    background: rgba(21, 128, 61, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
}

.hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hub-card h2 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.hub-card p {
    color: #a7f3d0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.hub-card .read-more {
    color: #34d399;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.hub-card .read-more:hover {
    color: #6ee7b7;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .hub-header h1 {
        font-size: 1.75rem;
    }

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

/* =========================================
   Responsive: Tablet / Desktop
   ========================================= */

@media (min-width: 768px) {
    .seo-page-content h1,
    .seo-page-content-wide h1 {
        font-size: 2.25rem;
    }

    .step-card {
        padding: 1.75rem;
    }
}

/* =========================================
   Responsive: Small Mobile
   ========================================= */

@media (max-width: 480px) {
    .seo-page-content,
    .seo-page-content-wide {
        padding: 1rem 0.5rem;
    }

    .seo-page-content h1,
    .seo-page-content-wide h1 {
        font-size: 1.5rem;
    }

    .seo-page-content h2,
    .seo-page-content-wide h2 {
        font-size: 1.2rem;
    }

    .filter-buttons {
        gap: 0.35rem;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .tip-card,
    .step-card {
        padding: 1rem;
    }

    .faq-question {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .faq-answer-inner {
        padding: 0 1rem 1rem;
    }

    .glossary-term {
        padding: 1rem;
    }

    .glossary-sidebar {
        padding: 0.75rem;
        gap: 0.25rem;
    }

    .glossary-letter-link {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
}
