/**
 * CSS Variables — Єдині Новини
 * Light Apple-style with Ukrainian blue/yellow
 */

:root {
    --blue: #005BBB;
    --blue-light: #0070E0;
    --blue-pale: #E8F1FC;
    --blue-bg: rgba(0,91,187,0.04);
    --yellow: #FFD500;
    --yellow-soft: #FFF3B0;
    --yellow-bg: rgba(255,213,0,0.08);
    --bg: #fafafa;
    --card: #ffffff;
    --text: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #aeaeb2;
    --green: #30a14e;
    --orange: #e5922e;
    --red: #d1242f;
    --border: rgba(0,91,187,0.08);
    --shadow: 0 2px 12px rgba(0,91,187,0.3);
    --shadow-hover: 0 8px 30px rgba(0,91,187,0.1);
    --radius: 20px;
    --font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="dark"] {
    --bg: #1a1a1a;
    --card: #242424;
    --text: #e5e5e7;
    --text-secondary: #a1a1a6;
    --text-tertiary: #6e6e73;
    --border: rgba(255,255,255,0.08);
    --shadow: 0 2px 12px rgba(0,0,0,0.3);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.4);
    --blue-pale: rgba(0,91,187,0.15);
    --blue-bg: rgba(0,91,187,0.08);
}
/**
 * CSS Reset — Єдині Новини
 */

*, *::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);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    background-color: var(--blue);
    color: #fff;
}
/**
 * Layout CSS — Єдині Новини
 */

/* ─── Nav ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,250,250,0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid var(--border);
}

[data-theme="dark"] nav {
    background: rgba(26,26,26,0.85);
}

[data-theme="dark"] body {
    background: var(--bg);
}

nav .inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.3px;
    color: var(--text);
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.nav-time {
    font-size: 13px;
    color: var(--text-tertiary);
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0.5px solid var(--border);
    background: transparent;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    color: var(--blue);
    background: var(--blue-bg);
}

.theme-icon-dark { display: none; }

[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: block; }

/* ─── Hero ─── */
.hero {
    text-align: center;
    padding: 20px 0 0 0;
    max-width: 980px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: var(--blue);
    white-space: nowrap;
    padding: 0 0 10px 0;
}

.hero h1 span {
    color: var(--text);
}

.hero p {
    font-size: 19px;
    font-weight: 300;
    color: var(--text-secondary);
}
.hero p a {
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
    margin-top: 14px;
    line-height: 1.5;
}

/* ─── Stats ─── */
.stats {
    max-width: 640px;
    margin: 36px auto 0;
    padding: 0 22px;
    animation: fadeUp 0.8s ease-out 0.15s both;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 22px 0;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}

.stat-num {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: center;
    color: var(--blue);
}

.stat-label {
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
}

/* ─── Section Header ─── */
.section-header {
    max-width: 720px;
    margin: 0 auto 12px;
    padding: 0;
    animation: fadeUp 0.6s ease-out 0.3s both;
}

.stats .section-header {
    margin-bottom: 4px;
    text-align: center;
}

.section-header h2 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
}

/* ─── Feed ─── */
.feed {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px 80px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ─── Footer ─── */
footer {
    text-align: center;
    padding: 32px 22px;
    border-top: 0.5px solid var(--border);
}

.footer-flag {
    display: inline-flex;
    gap: 0;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.footer-flag div {
    width: 24px;
    height: 16px;
}

footer p {
    color: var(--text-tertiary);
    font-size: 13px;
}
/**
 * Components CSS — Єдині Новини
 */

/* ─── Card ─── */
.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 0.5px solid var(--border);
    transition: all 0.35s cubic-bezier(0.25,0.1,0.25,1);
    animation: fadeUp 0.6s ease-out both;
}

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

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 980px;
}

.badge-sources {
    color: var(--blue);
    background: var(--blue-pale);
}

.badge-urgent {
    color: var(--red);
    background: rgba(209,36,47,0.06);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-date {
    font-size: 13px;
    color: var(--text-tertiary);
}

.card h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.22;
    margin-bottom: 10px;
}

.card .body {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ─── Facts ─── */
.facts {
    margin-top: 0;
    padding-top: 10px;
    border-top: 0.5px solid var(--border);
}

.facts-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    background: none;
    border: none;
    font-family: var(--font);
    cursor: pointer;
    padding: 0;
}

.facts-btn:hover {
    opacity: 0.7;
}

.facts-btn .arr {
    display: inline-block;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.facts-btn.open .arr {
    transform: rotate(90deg);
}

.facts-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25,0.1,0.25,1);
}

.facts-body.open {
    max-height: 800px;
}

.fl {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-tertiary);
    margin: 16px 0 6px;
}

.fi {
    display: flex;
    gap: 10px;
    padding: 6px 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.fi .ic {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── AI Opinion ─── */
.ai-opinion .facts-btn {
    color: var(--green);
}

.ai-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    padding: 12px 0 4px;
}

/* ─── Sources ─── */
.src-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.stag {
    font-size: 12px;
    font-weight: 500;
    color: var(--blue);
    background: var(--blue-bg);
    padding: 4px 10px;
    border-radius: 980px;
    border: 1px solid rgba(0,91,187,0.08);
    transition: background 0.2s ease;
}

a.stag::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23005BBB' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
    font-size: 10px;
    margin-left: 3px;
    opacity: 0.5;
}

a.stag:hover {
    background: var(--blue-pale);
}

a.stag:hover::after {
    opacity: 1;
}

/* ─── Source Filters ─── */
.source-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.stag-filter {
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s ease;
}

.stag-filter:hover {
    background: var(--blue-pale);
}

.stag-filter.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.stag-reset {
    font-family: var(--font);
    cursor: pointer;
    color: var(--red);
    background: rgba(209,36,47,0.06);
    border-color: rgba(209,36,47,0.12);
    transition: all 0.2s ease;
}

.stag-reset:hover {
    background: rgba(209,36,47,0.12);
}

/* ─── Feed Loader ─── */
.feed-loader {
    text-align: center;
    padding: 24px 0 40px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.3px;
}

/* ─── Article page ─── */
.article-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 22px 80px;
}

.article-page h1 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-content {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 12px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 10px;
}

.article-content p {
    margin-bottom: 16px;
}

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

.article-content li {
    margin-bottom: 8px;
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.article-content img {
    border-radius: 12px;
    margin: 24px 0;
}

.article-content a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    opacity: 0.7;
}

.article-content blockquote {
    border-left: 3px solid var(--blue);
    padding: 12px 20px;
    margin: 20px 0;
    background: var(--blue-bg);
    border-radius: 0 12px 12px 0;
    color: var(--text);
    font-style: italic;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.article-content th,
.article-content td {
    padding: 10px 14px;
    border: 0.5px solid var(--border);
    text-align: left;
}

.article-content th {
    background: var(--blue-pale);
    font-weight: 600;
    color: var(--blue);
}

/* ─── Back link ─── */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 24px;
}

.back-link:hover {
    opacity: 0.7;
}

/* ─── Category page ─── */
.cat-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 22px 80px;
}

.cat-page h1 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 8px;
    color: var(--blue);
}

.cat-page .cat-desc {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.subcat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.subcat-card {
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 0.5px solid var(--border);
    transition: all 0.3s ease;
    display: block;
}

.subcat-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.subcat-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.subcat-card span {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ─── Contact page ─── */
.contact-page {
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 22px 80px;
}

.contact-page h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
    color: var(--blue);
}

.contact-page .contact-desc {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 0.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 16px;
    background: var(--card);
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,91,187,0.1);
}

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

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 980px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.form-submit:hover {
    opacity: 0.85;
}

/* ─── 404 page ─── */
.not-found {
    text-align: center;
    padding: 100px 22px;
    max-width: 500px;
    margin: 0 auto;
}

.not-found h1 {
    font-size: 72px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: -3px;
}

.not-found p {
    font-size: 19px;
    font-weight: 300;
    color: var(--text-secondary);
    margin: 12px 0 24px;
}

.not-found a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
}

.not-found a:hover {
    opacity: 0.7;
}

/* ─── Subcategory articles list ─── */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-card {
    background: var(--card);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--shadow);
    border: 0.5px solid var(--border);
    transition: all 0.3s ease;
    display: block;
}

.article-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.article-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
}

.article-card p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ─── Pagination ─── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    border: 0.5px solid var(--border);
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

.pagination .active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* Nav Telegram link */
.nav-tg {
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.nav-tg:hover { text-decoration: underline; }

/* Telegram channel link */
.tg-channel {
    text-align: center;
    padding: 10px 0 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
}
.tg-channel a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}
.tg-channel a:hover { text-decoration: underline; }

/* Card title link */
.card-link {
    color: inherit;
    text-decoration: none;
}
.card-link:hover { color: var(--blue); }

/* Article page */
.article-back {
    max-width: 980px;
    margin: 0 auto;
    padding: 2%;
}
.article-back a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}
.article-back a:hover { text-decoration: underline; }
.article-title {
    font-size: 1.5rem;
    line-height: 1.35;
    margin: 8px 0 12px;
}
.facts-open {
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 14px;
}
.facts-open .fl:first-child { margin-top: 0; }

/* ─── Article Hero Image ─── */
.article-hero {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
    margin: 12px 0 20px;
}
/* ─── SEO Text Block ─── */
.seo-text {
    max-width: 980px;
    margin: 40px auto;
    padding: 0 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
.seo-text h2 {
    color: var(--text);
    font-size: 1.4rem;
    margin: 0 0 16px;
}
.seo-text h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 24px 0 10px;
}
.seo-text p {
    margin: 0 0 14px;
}

/* ─── Related Articles ─── */
.related {
    margin: 0 auto;
    padding: 50px 0 30px 0;
}
.related-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 16px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.related-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.related-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-hover);
}
.related-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.related-info {
    padding: 10px 12px 14px;
}
.related-date {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}
.related-headline {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 4px 0 0;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 600px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    .related-card {
        flex-direction: row;
    }
    .related-img {
        width: 100px;
        height: 80px;
    }
    .related-info {
        padding: 10px 12px;
    }
}

/**
 * Responsive CSS — Єдині Новини
 */

@media (max-width: 600px) {
    .hero {
        padding: 48px 18px 16px;
    }

    .card {
        padding: 20px;
        border-radius: 16px;
    }

    .card h2 {
        font-size: 20px;
    }

    .stats-row {
        gap: 24px;
    }

    .stat-num {
        font-size: 24px;
    }

    .nav-time {
        display: none;
    }

    .article-page {
        padding: 24px 16px 60px;
    }

    .article-page h1 {
        font-size: 26px;
    }

    .cat-page {
        padding: 24px 16px 60px;
    }

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

@media (max-width: 380px) {
    .hero h1 {
        font-size: 32px;
    }

    .card h2 {
        font-size: 18px;
    }

    .card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

@media print {
    nav, footer, .facts-btn, .src-row {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}

/* ─── Skip to content ─── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 999;
    padding: 8px 16px;
    background: var(--blue);
    color: #fff;
    border-radius: 0 0 8px 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}
