/* Import shared CSS variables from styles.css */
/* Note: These are inherited but explicitly documented for clarity */

/* LEVEL TOGGLE */
.level-toggle {
    background-color: var(--primary-light);
    padding: 0.625rem 0;
    position: sticky;
    top: 60px;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.level-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.level-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
padding: 0.75rem 1.5rem;
    min-height: 44px;
    min-width: 140px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.level-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

.level-btn:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}

.level-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
}

.level-btn.active:focus {
    outline: 3px solid var(--text-light);
    outline-offset: 2px;
}

/* CASE HEADER */
.case-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.case-header .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.case-header h1 {
    font-size: 1.35rem;
    margin: 0;
    font-weight: 700;
}

.case-header .case-year {
    font-weight: 400;
    opacity: 0.85;
    font-size: 1rem;
}

.case-header .case-subtitle {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
    flex-basis: 100%;
}

/* Case controls row */
.case-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Case Section Navigation */
.case-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.case-nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    opacity: 0.85;
}

.case-nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    opacity: 1;
}

/* Inline Reading Toggle */
.reading-toggle-inline {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.reading-toggle-inline .toggle-label {
    font-size: 0.8rem;
    opacity: 0.85;
}

.reading-toggle-inline .level-btn {
    padding: 0.25rem 0.75rem;
    min-height: 32px;
    min-width: auto;
    font-size: 0.85rem;
    border-radius: 20px;
}

/* CASE SECTIONS */
.case-section {
    padding: 1.5rem 0;
    background-color: var(--bg-white);
}

.case-section:nth-child(even) {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.section-header h2 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.section-subtitle {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* GUIDING QUESTION CONNECTION */
.guiding-question-connection {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.08) 0%, rgba(22, 33, 62, 0.05) 100%);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.guiding-question-connection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
    border-radius: 8px 8px 0 0;
}

.guiding-question-connection h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.guiding-question-connection > p:first-of-type {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    border-left: 3px solid var(--accent);
    line-height: 1.5;
}

.guiding-question-connection .content-block {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem;
    border-radius: 6px;
    box-shadow: none;
    margin-top: 0.5rem;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.guiding-question-connection .content-block p {
    margin-bottom: 0;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* CONTENT BLOCKS */
.content-block {
    background-color: var(--bg-white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
    text-align: left;  /* Ensure readable left-aligned content */
}

.content-block h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.content-block h3:first-child {
    margin-top: 0;
}

.content-block p {
    margin-bottom: 0.75rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul {
    margin-bottom: 0.75rem;
}

.content-block ul:last-child {
    margin-bottom: 0;
}

.content-block.hidden,
.two-sides-summary.hidden {
    display: none;
}

.content-block h3 {
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
    margin-top: 1rem;
}

.content-block h3:first-child {
    margin-top: 0;
}

.content-block p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.content-block ul {
    margin-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.content-block li {
    margin-bottom: 0.35rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ARGUMENTS GRID */
.arguments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.argument-side {
    background-color: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 10px;
}

.side-title {
    color: var(--text-light);
    padding: var(--spacing-md);
    border-radius: 5px;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.side-petitioner {
    background-color: var(--primary-dark);
}

.side-respondent {
    background-color: var(--accent);
}

.argument-list {
    list-style: none;
    padding: 0;
}

.argument-list li {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    background-color: var(--bg-white);
    border-radius: 5px;
    border-left: 4px solid var(--primary-light);
}

/* VOCABULARY */
.vocab-list {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
}

.vocab-item {
    padding: 0.625rem 1rem;
    margin-bottom: 0.5rem;
    background-color: var(--bg-white);
    border-radius: 6px;
    border-left: 3px solid var(--accent);
    font-size: 0.95rem;
    transition: border-left-width 0.15s ease;
}

.vocab-item:hover {
    border-left-width: 5px;
}

.vocab-item:last-child {
    margin-bottom: 0;
}

.vocab-item strong {
    color: var(--accent);
}

/* COURT IMAGE */
.court-image {
    margin: 1.5rem 0;
    text-align: center;
}

.court-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.court-image figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.court-image figcaption a {
    color: var(--accent);
}

.court-image figcaption a:hover {
    text-decoration: underline;
}

/* ACTIVITY INSTRUCTIONS */
.activity-instructions {
    background-color: var(--primary-light);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.activity-instructions p {
    margin-bottom: 0.35rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.activity-instructions p:last-child {
    margin-bottom: 0;
}

.activity-instructions ul {
    margin-left: 1.25rem;
}

/* TWO SIDES SUMMARY */
.two-sides-summary {
    margin-top: 1rem;
}

.two-sides-summary h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: center;
    opacity: 0.9;
}

.two-sides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 600px) {
    .two-sides-grid {
        grid-template-columns: 1fr;
    }
}

.side-box {
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.side-box.petitioner {
    border-left: 4px solid var(--text-light);
}

.side-box.respondent {
    border-left: 4px solid var(--accent);
}

.side-box h5 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.side-box p {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 0;
    opacity: 0.95;
}

/* ARGUMENT SORTING TABLE */
.argument-sorting-table {
    overflow-x: auto;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.argument-sorting-table table {
    width: 100%;
    border-collapse: collapse;
}

.argument-sorting-table th,
.argument-sorting-table td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.argument-sorting-table th {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
}

.argument-sorting-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.argument-sorting-table td:first-child {
    width: 75%;
}

.argument-sorting-table td:last-child {
    width: 25%;
    text-align: center;
    position: relative;
}

.argument-sorting-table td:last-child select {
    margin-bottom: var(--spacing-sm);
}

/* Activity Buttons */
.activity-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: 1.5rem;  /* Space between table and buttons */
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.check-answers-btn,
.show-answers-btn,
.reset-answers-btn {
    background-color: var(--accent);
    color: var(--text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
min-width: 120px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.check-answers-btn:focus,
.show-answers-btn:focus,
.reset-answers-btn:focus {
    outline: 3px solid var(--text-light);
    outline-offset: 2px;
}

.check-answers-btn:hover,
.show-answers-btn:hover,
.reset-answers-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(233, 69, 96, 0.3);
}

.reset-answers-btn {
    background-color: var(--primary-light);
}

.reset-answers-btn:hover {
    background-color: var(--primary-dark);
}

/* Dropdown Select */
.argument-sorting-table select {
    width: 100%;
padding: 0.75rem 1rem;
    min-height: 44px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    background-color: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.argument-sorting-table select:hover {
    border-color: var(--accent);
}

.argument-sorting-table select:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(214, 56, 80, 0.1);
}

/* Answer Cell - Hidden by default, shown after checking */
.answer-cell {
    font-weight: bold;
    text-align: center;
    display: none;
    padding: var(--spacing-sm) var(--spacing-md);
    margin-top: var(--spacing-sm);
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
}

.answer-cell.correct {
    color: var(--success);
    background-color: rgba(40, 167, 69, 0.1);
}

.answer-cell.incorrect {
    color: var(--accent);
    background-color: rgba(233, 69, 96, 0.1);
}

.answer-cell.unanswered {
    color: var(--warning);
    background-color: rgba(255, 193, 7, 0.1);
}

/* Score Display */
.score-display {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-dark);
}

.score-display.perfect-score {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

/* Answer Key Section */
.answer-key-section {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.answer-key-section > h3 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    font-size: 2rem;
    font-family: var(--font-heading);
}

/* Column-based Answer Key Layout - matches arguments-grid */
.answer-key-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.answer-key-column {
    /* Inherits argument-side styling */
}

.answer-key-column .side-title {
    margin-bottom: var(--spacing-lg);
}

.answer-key-arguments {
    /* Inherits argument-list styling */
    list-style: none;
    padding: 0;
}

.answer-key-item {
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-light);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.answer-key-item:hover {
    transform: translateX(2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent);
}

.answer-key-argument {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-size: 1rem;
    padding-right: var(--spacing-md);
    position: relative;
}

.answer-key-argument::before {
    content: '"';
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: -15px;
    top: -5px;
    opacity: 0.3;
}

.answer-key-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent), var(--border), transparent);
    margin: var(--spacing-md) 0;
    border-radius: 1px;
}

.answer-key-explanation {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 5px;
    border-left: 3px solid var(--accent);
}

.answer-key-explanation strong {
    color: var(--accent);
    font-weight: 600;
    margin-right: var(--spacing-sm);
    display: inline-block;
}

/* CONNECTING TO TODAY / CURRENT EVENTS */
.current-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.event-item {
    background-color: var(--bg-white);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;  /* Ensure readable left-aligned content */
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.event-item:focus-within {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.event-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--text-light);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-item h3 {
    margin-bottom: 0.35rem;
    color: var(--primary-dark);
    font-size: 1rem;
}

.event-item p {
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.event-item p:last-of-type:not(.event-note) {
    margin-bottom: var(--spacing-md);
}

.event-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: var(--bg-light);
    border-radius: 5px;
    border-left: 3px solid var(--accent);
}

.event-item .resource-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: var(--spacing-sm) 0;
}

.event-item .resource-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.event-item .resource-link:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 3px;
}

/* RESOURCES PREVIEW */
.resources-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.resource-item {
    background-color: var(--bg-light);
    padding: 1.25rem;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.resource-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.resource-item:focus-within {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.resource-tag {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-light);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.resource-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-size: 1rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 0;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.resource-link:hover {
    color: var(--accent-hover);
}

/* IMPROVE READABILITY AND SPACING */
.section-header h2 {
    line-height: 1.2;
}

/* Improve link readability */
a {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

a:hover {
    text-decoration-thickness: 2px;
}

.resource-link,
.case-link,
.cta-button {
    text-decoration: none;
}

/* Improve table readability on mobile */
@media (max-width: 768px) {
    .argument-sorting-table {
        font-size: 0.9rem;
    }
    
    .argument-sorting-table th,
    .argument-sorting-table td {
        padding: var(--spacing-sm);
    }
}

/* RESPONSIVE FOR CASE PAGES */
@media (max-width: 768px) {
    .level-buttons {
        flex-direction: column;
    }

    .arguments-grid {
        grid-template-columns: 1fr;
    }

    .argument-sorting-table {
        font-size: 0.9rem;
    }

    .answer-key-columns {
        grid-template-columns: 1fr;
    }

    .answer-key-section > h3 {
        font-size: 1.5rem;
    }

    .answer-key-item {
        padding: var(--spacing-md);
    }

    .answer-key-argument::before {
        display: none;
    }
}

/* Arguments Section Collapsible Control */
.arguments-toggle {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 2px dashed #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arguments-toggle:hover {
    background: linear-gradient(135deg, #e2e6ea 0%, #dee2e6 100%);
    border-color: #495057;
}

.arguments-toggle-text {
    font-weight: 600;
    color: #495057;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.arguments-toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.arguments-toggle.open .arguments-toggle-icon {
    transform: rotate(180deg);
}

/* Hide arguments content by default */
#arguments .arguments-grid {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#arguments .arguments-grid.visible {
    display: grid;
    opacity: 1;
}

/* Add styling for the warning text */
.arguments-warning {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 16px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #856404;
}

.arguments-warning strong {
    display: block;
    margin-bottom: 5px;
}

/* CONSTITUTIONAL TEXT BLOCKQUOTE */
.constitutional-text {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.05) 0%, rgba(47, 72, 88, 0.08) 100%);
    border-left: 3px solid var(--primary-dark);
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    border-radius: 0 6px 6px 0;
}

/* KEY TERMS FOR ARGUMENTS */
.key-terms-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.key-term-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary-light);
    padding: 0.875rem 1.25rem;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: border-left-color 0.2s ease, box-shadow 0.2s ease;
}

.key-term-item:hover {
    border-left-color: var(--accent);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.key-term-item strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.key-term-item p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 0.9rem;
}