/*
 * PROJECT: site28
 * DOMAIN: sallydunne.com
 * GAME: checkers-master
 * 
 * DESIGN:
 * - CSS: Atomic CSS
 * - Palette: Chrome and Neon
 * - Effect: Neon Glow
 * - Fonts: Michroma + Rajdhani
 * - Buttons: Neon Border
 * 
 * Created: December 2024
 */

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    overflow-x: hidden !important;
}

/* === CSS VARIABLES === */
:root {
    --chrome-silver: #c0c0c0;
    --electric-cyan: #00e5ff;
    --neon-blue: #0066ff;
    --metal-dark: #2c2c2c;
    --metal-light: #e6e6e6;
    --steel-gray: #606060;
    --cyber-purple: #8000ff;
    --glow-intensity: 0 0 20px;

    --font-heading: 'Michroma', monospace;
    --font-body: 'Rajdhani', sans-serif;

    --container-width: 1200px;
    --header-height: 70px;
    --section-padding: 4rem 0;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* === ATOMIC UTILITIES === */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }
.text-center { text-align: center; }
.relative { position: relative; }
.absolute { position: absolute; }
.hidden { display: none; }
.block { display: block; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }

/* === BASE STYLES === */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--chrome-silver);
    background: linear-gradient(135deg, var(--metal-dark) 0%, #1a1a1a 50%, var(--metal-dark) 100%);
    min-height: 100vh;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: var(--glow-intensity) var(--electric-cyan);
}

h1 { font-size: 3rem; color: var(--electric-cyan); }
h2 { font-size: 2.5rem; color: var(--chrome-silver); }
h3 { font-size: 2rem; color: var(--metal-light); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
}

a {
    color: var(--electric-cyan);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--neon-blue);
    text-shadow: var(--glow-intensity) var(--neon-blue);
}

ul {
    color: var(--chrome-silver);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid var(--electric-cyan);
    background: transparent;
    color: var(--electric-cyan);
    transition: var(--transition);
    border-radius: var(--border-radius);
    text-shadow: var(--glow-intensity) var(--electric-cyan);
    box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.1), var(--glow-intensity) var(--electric-cyan);
}

.btn:hover {
    background: var(--electric-cyan);
    color: var(--metal-dark);
    text-shadow: none;
    box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.3), 0 0 30px var(--electric-cyan);
    transform: translateY(-2px);
}

.btn--primary {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    text-shadow: var(--glow-intensity) var(--neon-blue);
    box-shadow: inset 0 0 20px rgba(0, 102, 255, 0.1), var(--glow-intensity) var(--neon-blue);
}

.btn--primary:hover {
    background: var(--neon-blue);
    color: #fff;
    box-shadow: inset 0 0 20px rgba(0, 102, 255, 0.3), 0 0 30px var(--neon-blue);
}



.btn--small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* === MANDATORY CARD STYLES === */
.article-card__overlay { position: absolute; inset: 0; z-index: 1; }
.article-card, .offer-card, .card { position: relative; }
.stars { color: #ffc107; }

/* === HEADER === */
.header {
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--electric-cyan);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--electric-cyan);
    text-shadow: var(--glow-intensity) var(--electric-cyan);
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo:hover {
    color: var(--electric-cyan);
    text-shadow: 0 0 30px var(--electric-cyan);
}

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

.nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--chrome-silver);
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav__link:hover {
    color: var(--electric-cyan);
    background: rgba(0, 229, 255, 0.1);
    text-shadow: var(--glow-intensity) var(--electric-cyan);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--electric-cyan);
    transition: var(--transition);
    box-shadow: var(--glow-intensity) var(--electric-cyan);
}

/* === MAIN === */
.main {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* === HERO SECTION === */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-bottom: 1px solid var(--electric-cyan);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--electric-cyan);
    text-shadow: 0 0 30px var(--electric-cyan);
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

.hero__subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--chrome-silver);
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes glow-pulse {
    0% { text-shadow: 0 0 30px var(--electric-cyan); }
    100% { text-shadow: 0 0 50px var(--electric-cyan), 0 0 70px var(--neon-blue); }
}

/* === SECTIONS === */
.section {
    padding: var(--section-padding);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: 2.5rem;
    color: var(--electric-cyan);
    margin-bottom: 1rem;
    text-shadow: var(--glow-intensity) var(--electric-cyan);
}

.section__subtitle {
    font-size: 1.2rem;
    color: var(--chrome-silver);
    max-width: 600px;
    margin: 0 auto;
}

/* === GRID LAYOUTS === */
.grid {
    display: grid;
    gap: 2rem;
}

.grid--1 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* === CARDS === */
.card {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(96, 96, 96, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--steel-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--electric-cyan);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3), inset 0 0 20px rgba(0, 229, 255, 0.1);
}

.card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.card__title {
    font-size: 1.5rem;
    color: var(--electric-cyan);
    margin-bottom: 1rem;
    text-shadow: var(--glow-intensity) var(--electric-cyan);
}

.card__text {
    color: var(--chrome-silver);
    font-size: 1rem;
    line-height: 1.6;
}

/* === ARTICLE CARDS === */
.article-card {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(96, 96, 96, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--steel-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--electric-cyan);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.article-card__content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.article-card__badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--metal-dark);
    background: var(--electric-cyan);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.article-card__title {
    font-size: 1.25rem;
    color: var(--electric-cyan);
    margin-bottom: 1rem;
    text-shadow: var(--glow-intensity) var(--electric-cyan);
}

.article-card__excerpt {
    color: var(--chrome-silver);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--steel-gray);
    margin-bottom: 1rem;
}

/* === GAME SHOWCASE === */
.game-showcase {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid var(--electric-cyan);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.game-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 30%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.game-showcase__content {
    position: relative;
    z-index: 2;
}

.game-showcase__title {
    font-size: 2.5rem;
    color: var(--electric-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--electric-cyan);
}

.game-showcase__description {
    font-size: 1.2rem;
    color: var(--chrome-silver);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === FAQ ACCORDION === */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--steel-gray);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--electric-cyan);
}

.faq-item.active {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(192, 192, 192, 0.05);
    border: none;
    color: var(--chrome-silver);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.faq-question:hover {
    background: rgba(0, 229, 255, 0.05);
    color: var(--electric-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--electric-cyan);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--chrome-silver);
    line-height: 1.7;
    font-size: 1rem;
}

/* === COOKIE CONSENT === */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--electric-cyan);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 229, 255, 0.3);
}

.cookie-consent__content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent__content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--chrome-silver);
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, var(--metal-dark) 0%, #1a1a1a 100%);
    border-top: 1px solid var(--electric-cyan);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__section {
    /* Section container */
}

.footer__title {
    font-size: 1.25rem;
    color: var(--electric-cyan);
    margin-bottom: 1rem;
    text-shadow: var(--glow-intensity) var(--electric-cyan);
}

.footer__description {
    color: var(--chrome-silver);
    line-height: 1.6;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: var(--chrome-silver);
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--electric-cyan);
    text-shadow: var(--glow-intensity) var(--electric-cyan);
}

.footer__contact p {
    color: var(--chrome-silver);
    margin-bottom: 0.5rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--steel-gray);
    color: var(--steel-gray);
}

/* === FORMS === */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--chrome-silver);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(192, 192, 192, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid var(--steel-gray);
    border-radius: var(--border-radius);
    color: var(--chrome-silver);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select option {
    background: var(--metal-dark);
    color: var(--chrome-silver);
}

/* === LEGAL CONTENT === */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--electric-cyan);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--steel-gray);
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--metal-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--chrome-silver);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 2;
    color: var(--chrome-silver);
}

.legal-content ul li {
    margin-bottom: 0.3rem;
}

.legal-content a {
    color: var(--electric-cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0, 229, 255, 0.3);
}

.legal-content a:hover {
    text-decoration-color: var(--electric-cyan);
}

/* === ARTICLE PAGE STYLES === */
.article-page {
    padding: var(--section-padding);
}

.article-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-bottom: 1px solid var(--electric-cyan);
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.article-header h1 {
    font-size: 2.8rem;
    color: var(--electric-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--electric-cyan);
    position: relative;
    z-index: 2;
}

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1rem;
    color: var(--chrome-silver);
    position: relative;
    z-index: 2;
}

.article-meta .category {
    padding: 0.3rem 0.8rem;
    background: var(--electric-cyan);
    color: var(--metal-dark);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.article-content section {
    margin-bottom: 3rem;
}

.article-content h2 {
    font-size: 2rem;
    color: var(--electric-cyan);
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    text-shadow: var(--glow-intensity) var(--electric-cyan);
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--metal-light);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.article-content p {
    color: var(--chrome-silver);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-content li {
    color: var(--chrome-silver);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.article-cta {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid var(--electric-cyan);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: var(--electric-cyan);
    margin-bottom: 1rem;
    text-shadow: var(--glow-intensity) var(--electric-cyan);
}

.article-cta p {
    margin-bottom: 1.5rem;
}

.article-footer {
    border-top: 1px solid var(--steel-gray);
    padding-top: 2rem;
    margin-top: 3rem;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-navigation a {
    color: var(--electric-cyan);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.article-navigation a:hover {
    background: rgba(0, 229, 255, 0.1);
    text-shadow: var(--glow-intensity) var(--electric-cyan);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
        position: absolute;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: rgba(44, 44, 44, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--electric-cyan);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__link {
        padding: 1rem;
        border-bottom: 1px solid var(--steel-gray);
    }

    .nav__item:last-child .nav__link {
        border-bottom: none;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .section__title {
        font-size: 2rem;
    }

    .grid--2,
    .grid--3 {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.5rem;
        position: relative;
}

    .game-showcase {
        padding: 2rem;
    }

    .game-showcase__title {
        font-size: 2rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
    }

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

    .article-header h1 {
        font-size: 2.2rem;
    }

    .article-meta {
        justify-content: flex-start;
        gap: 1rem;
    }

    .article-navigation {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.15rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }



    .card {
        padding: 1rem;
        position: relative;
}

    .game-showcase {
        padding: 1.5rem;
    }

    .game-showcase__title {
        font-size: 1.75rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }
}