/* ================================================================
   LegalJackpot.co.uk — Main Stylesheet
   Romanian educational lottery analytics portal
   ================================================================ */

:root {
    --blue-deep: #1a3a6b;
    --blue-mid: #2c5aa0;
    --blue-light: #e8eef6;
    --blue-pale: #f4f7fb;
    --yellow: #f0c230;
    --yellow-light: #fdf6e0;
    --red: #c0392b;
    --red-soft: #e8a49c;
    --red-bg: #fdf0ee;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --font-main: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;
    --max-width: 1140px;
    --header-height: 64px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --transition: 0.2s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue-mid);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--blue-deep);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--blue-deep);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 8px;
}

/* ================================================================
   Header
   ================================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    height: var(--header-height);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-900);
    font-size: 1.125rem;
    text-decoration: none;
}

.site-logo:hover {
    color: var(--gray-900);
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text strong {
    font-weight: 700;
}

.logo-suffix {
    color: var(--gray-400);
    font-weight: 400;
}

/* Nav Toggle */

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation */

.main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.main-nav.is-open {
    display: block;
}

.nav-list {
    list-style: none;
    padding: 0 20px;
}

.nav-list li {
    border-bottom: 1px solid var(--gray-100);
}

.nav-list li:last-child {
    border-bottom: none;
}

.nav-list a {
    display: block;
    padding: 12px 0;
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--blue-mid);
}

/* ================================================================
   Hero
   ================================================================ */

.hero {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    color: var(--white);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(240, 194, 48, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero h1 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero h1 .accent {
    color: var(--yellow);
}

.hero p {
    font-size: 1.0625rem;
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.hero-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.hero-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 4px;
}

/* ================================================================
   Page Hero (internal pages)
   ================================================================ */

.page-hero {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    color: var(--white);
    padding: 40px 0 36px;
    position: relative;
}

.page-hero h1 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
}

.page-hero p {
    font-size: 0.9375rem;
    opacity: 0.88;
    max-width: 600px;
}

/* Breadcrumbs */

.breadcrumbs {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.breadcrumb-list a {
    color: var(--gray-500);
}

.breadcrumb-list a:hover {
    color: var(--blue-mid);
}

.breadcrumb-list li::after {
    content: "›";
    margin-left: 6px;
    color: var(--gray-300);
}

.breadcrumb-list li:last-child::after {
    content: none;
}

.breadcrumb-list li:last-child {
    color: var(--gray-700);
}

/* ================================================================
   Sections
   ================================================================ */

.section {
    padding: 48px 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-blue {
    background: var(--blue-pale);
}

.section-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    max-width: 600px;
}

.section-header {
    margin-bottom: 32px;
}

.section-line {
    width: 40px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    margin-top: 12px;
}

/* ================================================================
   Cards
   ================================================================ */

.card-grid {
    display: grid;
    gap: 20px;
}

.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    border-color: var(--blue-mid);
    box-shadow: var(--shadow-md);
}

.card-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--blue-mid);
    background: var(--blue-light);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.35;
}

.card h3 a {
    color: inherit;
}

.card h3 a:hover {
    color: var(--blue-mid);
}

.card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Data Cards (small stat cards) */

.data-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    border-top: 3px solid var(--yellow);
}

.data-card-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue-deep);
    line-height: 1.2;
}

.data-card-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 4px;
}

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

/* ================================================================
   Article Content
   ================================================================ */

.article-layout {
    display: grid;
    gap: 40px;
    padding: 40px 0;
}

.article-content {
    max-width: 720px;
}

.article-header {
    margin-bottom: 32px;
}

.article-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--gray-500);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.article-meta a {
    color: var(--blue-mid);
    font-weight: 500;
}

.article-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 32px;
    margin-bottom: 12px;
    line-height: 1.35;
}

.article-body h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 24px;
    margin-bottom: 8px;
}

.article-body p {
    margin-bottom: 16px;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--gray-700);
}

.article-body strong {
    color: var(--gray-800);
}

.article-body ul,
.article-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 6px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.article-body a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-sidebar {
    display: none;
}

/* Author Box */

.author-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--blue-pale);
    border-radius: var(--radius-md);
    margin-top: 32px;
    border-left: 3px solid var(--blue-mid);
}

.author-box-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--yellow);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-box-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-box-info p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ================================================================
   Info Boxes
   ================================================================ */

.info-box {
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin: 24px 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.info-box-warning {
    background: var(--red-bg);
    border-left: 4px solid var(--red);
    color: var(--gray-800);
}

.info-box-info {
    background: var(--blue-light);
    border-left: 4px solid var(--blue-mid);
    color: var(--gray-800);
}

.info-box-yellow {
    background: var(--yellow-light);
    border-left: 4px solid var(--yellow);
    color: var(--gray-800);
}

.info-box strong {
    display: block;
    margin-bottom: 4px;
}

/* ================================================================
   FAQ
   ================================================================ */

.faq-list {
    max-width: 720px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    font-family: var(--font-main);
    line-height: 1.4;
    gap: 12px;
}

.faq-question:hover {
    color: var(--blue-mid);
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--gray-400);
    border-radius: 1px;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 9px;
    left: 4px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 4px;
    left: 9px;
    transition: transform var(--transition);
}

.faq-item.is-open .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 0 16px;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.faq-item.is-open .faq-answer {
    display: block;
}

/* ================================================================
   Responsible Play Banner
   ================================================================ */

.responsible-banner {
    background: var(--gray-900);
    color: var(--white);
    padding: 32px 0;
}

.responsible-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.responsible-inner svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.responsible-inner p {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
}

.responsible-inner a {
    color: var(--yellow);
    text-decoration: underline;
}

/* ================================================================
   Glossary
   ================================================================ */

.glossary-list {
    max-width: 720px;
}

.glossary-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.glossary-item:first-child {
    padding-top: 0;
}

.glossary-term {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.glossary-def {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================================================
   Page Content (trust pages)
   ================================================================ */

.page-content {
    padding: 40px 0;
    max-width: 720px;
}

.page-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 32px;
    margin-bottom: 12px;
}

.page-content h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 24px;
    margin-bottom: 8px;
}

.page-content p {
    margin-bottom: 16px;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--gray-700);
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 6px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.page-content a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Authors Grid */

.authors-grid {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.author-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    align-items: flex-start;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--yellow);
    font-weight: 700;
    font-size: 1.5rem;
}

.author-info h2 {
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 2px;
}

.author-info .author-role {
    font-size: 0.8125rem;
    color: var(--blue-mid);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.author-info p {
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.author-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.author-expertise span {
    font-size: 0.6875rem;
    background: var(--blue-light);
    color: var(--blue-deep);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

/* Contact Form */

.contact-form {
    max-width: 480px;
    margin-top: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9375rem;
    font-family: var(--font-main);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-800);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-main);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--blue-mid);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-deep);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--blue-mid);
    border: 1px solid var(--blue-mid);
}

.btn-outline:hover {
    background: var(--blue-light);
    color: var(--blue-deep);
}

/* ================================================================
   Category Page
   ================================================================ */

.category-intro {
    max-width: 720px;
    margin-bottom: 24px;
}

.category-intro p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================================================
   404
   ================================================================ */

.error-page {
    text-align: center;
    padding: 80px 0;
}

.error-page h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--blue-deep);
    line-height: 1;
    margin-bottom: 8px;
}

.error-page h2 {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.error-page p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

/* ================================================================
   Footer
   ================================================================ */

.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 48px 0 24px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    gap: 32px;
}

.footer-col h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-col p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--gray-400);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 0.8125rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

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

.footer-bottom {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-disclaimer svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ================================================================
   SVG Illustration Patterns
   ================================================================ */

.pattern-dots {
    position: absolute;
    opacity: 0.06;
    pointer-events: none;
}

/* ================================================================
   Responsive — Tablet (600px+)
   ================================================================ */

@media (min-width: 600px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .data-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ================================================================
   Responsive — Desktop (900px+)
   ================================================================ */

@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        display: block;
        position: static;
        border-bottom: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    .nav-list {
        display: flex;
        gap: 4px;
        padding: 0;
    }

    .nav-list li {
        border-bottom: none;
    }

    .nav-list a {
        padding: 8px 12px;
        font-size: 0.8125rem;
        border-radius: var(--radius-sm);
    }

    .nav-list a:hover {
        background: var(--gray-100);
    }

    .nav-list a.active {
        background: var(--blue-light);
        color: var(--blue-mid);
    }

    .hero {
        padding: 80px 0 70px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .page-hero {
        padding: 52px 0 44px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 64px 0;
    }

    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .article-layout {
        grid-template-columns: 1fr 280px;
    }

    .article-sidebar {
        display: block;
    }

    .author-card {
        flex-direction: row;
    }
}

/* ================================================================
   Responsive — Large (1100px+)
   ================================================================ */

@media (min-width: 1100px) {
    .container {
        padding: 0 32px;
    }

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

/* ================================================================
   Print
   ================================================================ */

@media print {
    .site-header,
    .site-footer,
    .nav-toggle,
    .main-nav,
    .article-sidebar,
    .responsible-banner {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
