/* ==========================================================================
   360Blog, Editorial magazine redesign
   ========================================================================== */

:root {
    --font-display: "Roboto Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Roboto Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "Roboto Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --bg: #fafafa;
    --paper: #ffffff;
    --surface: #ffffff;
    --ink: #141414;
    --ink-2: #2a2a2a;
    --muted: #6b6b6b;
    --soft: #a6a6a6;
    --rule: #e5e5e5;
    --accent: #0f1a2e;
    --accent-ink: #ffffff;
    --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 18px 40px -24px rgba(0, 0, 0, 0.2);
    --radius: 4px;
    --tx: 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-theme="dark"] {
    --bg: #0b0a08;
    --paper: #111110;
    --surface: #15130f;
    --ink: #f1ede2;
    --ink-2: #d9d3c3;
    --muted: #948d7e;
    --soft: #655e51;
    --rule: #2a2620;
    --accent: #ff7a4d;
    --accent-ink: #120b07;
    --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 24px 60px -30px rgba(0, 0, 0, 0.8);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    transition: background-color var(--tx), color var(--tx);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
    margin: 0;
}

.container { max-width: 1360px; margin-inline: auto; padding-inline: clamp(1.25rem, 3vw, 2.5rem); }
.eyebrow { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }
.divider-bold { height: 2px; background: var(--ink); border: 0; margin: 0; }

/* ========== Header ========== */
.site-header {
    position: sticky; top: 0; z-index: 40;
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid var(--rule);
}

/* ========== Scroll progress bar ========== */
.scroll-progress {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 3px;
    background: transparent;
    pointer-events: none;
    overflow: hidden;
}
.scroll-progress-fill {
    height: 100%;
    width: 0;
    background: #2563eb;
    transition: width 80ms linear;
}
[data-theme="dark"] .scroll-progress-fill {
    background: #ff7a4d;
}
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding-block: 1.1rem;
}
.brand {
    font-family: var(--font-display);
    font-weight: 600; font-size: 1.55rem; letter-spacing: -0.02em;
    display: inline-flex; align-items: center; gap: .4rem;
}
.brand-logo { height: 30px; width: auto; display: block; border-radius: 6px; }
.brand em { font-style: italic; color: var(--accent); font-weight: 500; }
.nav-main { display: flex; gap: 2rem; justify-content: center; }
.nav-main a {
    font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); font-weight: 500; position: relative; padding: .25rem 0;
    transition: color var(--tx);
}
.nav-main a:hover, .nav-main a.active { color: var(--ink); }
.nav-main a.active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent);
}
.tools { display: flex; gap: .4rem; align-items: center; justify-content: flex-end; }
.lang-toggle {
    display: inline-flex;
    border: 1px solid var(--rule); border-radius: 999px;
    padding: 2px; font-family: var(--font-mono);
}
.lang-toggle a {
    padding: .35rem .75rem; font-size: .72rem; letter-spacing: .1em; font-weight: 600;
    border-radius: 999px; color: var(--muted);
}
.lang-toggle a.active { background: var(--ink); color: var(--bg); }
.icon-btn {
    width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px; color: var(--muted); transition: background var(--tx), color var(--tx);
}
.icon-btn:hover { background: var(--rule); color: var(--ink); }
.menu-toggle { display: none; }

@media (max-width: 900px) {
    .header-inner { grid-template-columns: 1fr auto; }
    .nav-main { display: none; }
    .nav-main.open {
        display: flex; flex-direction: column; gap: 0;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--paper); padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--rule); box-shadow: var(--shadow-md);
    }
    .nav-main.open a { padding: .9rem 0; border-bottom: 1px solid var(--rule); }
    .nav-main.open a:last-child { border-bottom: none; }
    .menu-toggle { display: inline-flex; }
}

/* ========== Masthead strip ========== */
.masthead {
    padding-block: 1.1rem;
    border-bottom: 1px solid var(--rule);
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted);
}
.masthead strong { color: var(--ink); font-weight: 600; }

/* ========== Hero (editorial split) ========== */
.hero-split {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    padding-block: clamp(3rem, 6vw, 5.5rem);
    border-bottom: 1px solid var(--rule);
    align-items: center;
}
.hero-split .text { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-split .lead-chip {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); font-weight: 500;
    opacity: 0; transform: translateY(12px);
    animation: fadeUp 700ms 80ms ease-out forwards;
}
.hero-split .lead-chip .tag-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }
.hero-split h1 {
    font-size: clamp(2.6rem, 5vw + .5rem, 5rem);
    font-weight: 600;
    max-width: 680px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 900ms 140ms ease-out forwards;
}
.hero-split .dek {
    font-size: 1.15rem; color: var(--ink-2); line-height: 1.55; max-width: 560px;
    opacity: 0; transform: translateY(12px);
    animation: fadeUp 900ms 260ms ease-out forwards;
}
.hero-split .byline {
    display: flex; align-items: center; gap: 1rem;
    font-family: var(--font-mono); font-size: .78rem; color: var(--muted); letter-spacing: .06em;
    opacity: 0; transform: translateY(12px);
    animation: fadeUp 900ms 380ms ease-out forwards;
}
.hero-split .byline .avatar { width: 36px; height: 36px; border-radius: 999px; background: var(--rule); object-fit: cover; }
.hero-split .byline strong { color: var(--ink); font-weight: 600; text-transform: uppercase; }

.hero-split .cover-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--rule);
    border-radius: 2px;
    opacity: 0; transform: scale(1.02);
    animation: fadeIn 1100ms 120ms ease-out forwards;
}
.hero-split .cover-wrap::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.25) 100%);
    pointer-events: none;
}
.hero-split .cover-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms ease; }
.hero-split .cover-wrap:hover img { transform: scale(1.03); }
.hero-split .issue-tag {
    position: absolute; top: 1.25rem; left: 1.25rem;
    font-family: var(--font-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
    background: var(--paper); color: var(--ink); padding: .4rem .75rem; border-radius: 999px;
}
.read-link {
    display: inline-flex; align-items: center; gap: .6rem; align-self: flex-start;
    padding: .9rem 1.3rem; border: 1px solid var(--ink); color: var(--ink); border-radius: 999px;
    font-family: var(--font-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
    transition: background var(--tx), color var(--tx), transform var(--tx);
    opacity: 0; transform: translateY(12px);
    animation: fadeUp 900ms 500ms ease-out forwards;
}
.read-link:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.read-link .arrow { transition: transform var(--tx); }
.read-link:hover .arrow { transform: translateX(4px); }

@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; gap: 2rem; }
    .hero-split .cover-wrap { aspect-ratio: 3 / 4; }
}

/* ========== Section header ========== */
.section-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
    padding-block: clamp(3rem, 5vw, 4.5rem) 1.5rem;
}
.section-head h2 {
    font-size: clamp(2.5rem, 5vw + .5rem, 4.5rem);
    font-weight: 500;
}
.section-head h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.section-head .meta { display: flex; flex-direction: column; align-items: flex-end; gap: .3rem; text-align: right; }
.section-head .count { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .1em; color: var(--muted); }

/* ========== Index (numbered article list) ========== */
.index-list { display: flex; flex-direction: column; border-top: 2px solid var(--ink); }
.index-row {
    display: grid;
    grid-template-columns: 80px 160px 1fr 220px 140px;
    gap: 1.75rem;
    padding-block: 1.75rem;
    border-bottom: 1px solid var(--rule);
    align-items: center;
    position: relative;
    transition: padding-left var(--tx), background var(--tx);
}
.index-row:hover { padding-left: 1.25rem; background: color-mix(in srgb, var(--accent) 5%, transparent); }
.index-row .num {
    font-family: var(--font-mono); font-size: .85rem; letter-spacing: .12em;
    color: var(--soft);
    transition: color var(--tx);
}
.index-row:hover .num { color: var(--accent); }
.index-row .cat {
    font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); font-weight: 500;
    display: inline-flex; align-items: center; gap: .5rem;
}
.index-row .cat::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--chip, var(--accent)); }
.index-row h3 {
    font-family: var(--font-display); font-size: clamp(1.3rem, 1.2vw + 1rem, 1.75rem);
    font-weight: 500; line-height: 1.15;
    transition: transform var(--tx), color var(--tx);
}
.index-row:hover h3 { color: var(--accent); }
.index-row .byline-mini {
    font-family: var(--font-mono); font-size: .78rem; color: var(--muted); letter-spacing: .04em;
    display: flex; flex-direction: column; gap: .25rem;
}
.index-row .byline-mini strong { color: var(--ink); font-weight: 600; }
.index-row .thumb {
    aspect-ratio: 1 / 1; background: var(--rule); overflow: hidden; border-radius: 2px;
}
.index-row .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.index-row:hover .thumb img { transform: scale(1.06); }

@media (max-width: 1100px) {
    .index-row { grid-template-columns: 50px 1fr 100px; gap: 1.25rem; }
    .index-row .cat, .index-row .byline-mini { display: none; }
}
@media (max-width: 600px) {
    .index-row { grid-template-columns: 40px 1fr; padding-block: 1.25rem; }
    .index-row .thumb { display: none; }
}

/* ========== Featured Spread (2-up magazine) ========== */
.spread {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-block: clamp(2rem, 4vw, 3.5rem);
    border-top: 1px solid var(--rule);
}
.spread-item { display: flex; flex-direction: column; gap: 1.25rem; }
.spread-item .cover {
    aspect-ratio: 3 / 2; background: var(--rule); overflow: hidden; border-radius: 2px; position: relative;
}
.spread-item .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease; }
.spread-item:hover .cover img { transform: scale(1.04); }
.spread-item .cover .tag {
    position: absolute; top: 1rem; left: 1rem;
    font-family: var(--font-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
    background: var(--paper); color: var(--ink); padding: .35rem .7rem; border-radius: 999px;
}
.spread-item h3 {
    font-family: var(--font-display); font-size: clamp(1.6rem, 2vw + .5rem, 2.2rem);
    font-weight: 500; line-height: 1.12;
    font-style: italic;
}
.spread-item p { color: var(--muted); font-size: 1rem; line-height: 1.55; margin: 0; }
.spread-item .meta { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; color: var(--muted); }

@media (max-width: 800px) { .spread { grid-template-columns: 1fr; } }

/* ========== Trending strip ========== */
.trending-strip {
    padding-block: 3rem 4rem;
    border-top: 2px solid var(--ink);
    margin-top: 4rem;
}
.trending-strip .head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1.5rem; }
.trending-strip h2 { font-size: 2.2rem; }
.trending-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.trending-grid article {
    padding-top: 1rem; border-top: 1px solid var(--rule);
    display: flex; flex-direction: column; gap: .75rem;
    transition: transform var(--tx);
}
.trending-grid article:hover { transform: translateY(-3px); }
.trending-grid .rank { font-family: var(--font-mono); font-size: .78rem; color: var(--accent); letter-spacing: .1em; font-weight: 600; }
.trending-grid h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; line-height: 1.25; }
.trending-grid .byline { font-family: var(--font-mono); font-size: .75rem; color: var(--muted); letter-spacing: .05em; }

/* ========== Reveal / animations ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2,0.7,0.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(n+6) { opacity: 1; transform: translateY(0); transition-delay: 400ms; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }

/* ========== Article detail page ========== */
.article-detail { max-width: 780px; margin-inline: auto; padding-block: 3rem 4rem; }
.article-detail .breadcrumbs {
    display: flex; gap: .5rem; font-family: var(--font-mono); font-size: .75rem;
    letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 2rem;
}
.article-detail .breadcrumbs a:hover { color: var(--accent); }
.article-detail h1 {
    font-size: clamp(2.2rem, 4vw + .5rem, 3.8rem);
    font-weight: 600;
    margin-bottom: 1.25rem; line-height: 1.08;
}
.article-detail .excerpt { font-size: 1.25rem; color: var(--ink-2); line-height: 1.55; margin-bottom: 2rem; }
.article-detail .meta-row {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; color: var(--muted);
    padding-bottom: 2rem; border-bottom: 1px solid var(--rule); margin-bottom: 2.5rem;
}
.article-detail .meta-row .avatar { width: 40px; height: 40px; border-radius: 999px; object-fit: cover; background: var(--rule); }
.article-detail .meta-row strong { color: var(--ink); font-weight: 600; text-transform: uppercase; }
.article-cover { max-width: 1120px; margin: 0 auto 3rem; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 2px; background: var(--rule); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-body { font-size: 1.12rem; line-height: 1.75; color: var(--ink); }
.article-body h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; font-weight: 600; }
.article-body h3 { font-size: 1.35rem; margin: 2rem 0 .75rem; font-family: var(--font-display); font-weight: 500; }
.article-body p { margin-bottom: 1.2em; }
.article-body .lead { font-size: 1.25rem; color: var(--ink); font-weight: 500; border-left: 3px solid var(--accent); padding-left: 1.2rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.5em; }
.article-body li { margin-bottom: .5em; }
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body em { color: var(--muted); font-style: italic; }
.article-body table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: .95rem; font-family: var(--font-mono); }
.article-body th, .article-body td { padding: .75rem .5rem; border-bottom: 1px solid var(--rule); text-align: left; }
.article-body th { font-family: var(--font-body); font-weight: 600; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.article-body a { color: var(--accent); border-bottom: 1px solid currentColor; }

.author-card {
    max-width: 780px; margin: 3rem auto 0;
    padding: 1.75rem; background: var(--paper); border: 1px solid var(--rule); border-radius: 2px;
    display: flex; gap: 1.25rem; align-items: center;
}
.author-card img { width: 64px; height: 64px; flex-shrink: 0; border-radius: 999px; object-fit: cover; background: var(--rule); }
.author-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: .35rem; }
.author-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ========== Simple / utility pages ========== */
.simple-page { max-width: 720px; margin-inline: auto; padding-block: 4rem 5rem; }
.simple-page h1 { font-size: clamp(2.5rem, 5vw + .5rem, 4.2rem); font-weight: 600; margin-bottom: 1.25rem;
 }
.simple-page .lead { font-size: 1.2rem; color: var(--muted); line-height: 1.55; margin-bottom: 2rem; }
.simple-page p { color: var(--ink-2); line-height: 1.7; }

.form-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.form-grid label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .4rem; }
.form-grid input, .form-grid textarea, .form-grid input[type="search"] {
    width: 100%; padding: .9rem 1.1rem; font: inherit;
    background: var(--surface); border: 1px solid var(--rule); border-radius: 2px;
    color: var(--ink); transition: border-color var(--tx), box-shadow var(--tx);
}
.form-grid input:focus, .form-grid textarea:focus {
    outline: none; border-color: var(--ink);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 1.5rem; border-radius: 999px; font-family: var(--font-mono);
    font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
    background: var(--ink); color: var(--bg); border: 1px solid var(--ink);
    transition: transform var(--tx);
}
.btn:hover { transform: translateY(-2px); }

/* ========== Search / category hero ========== */
.page-hero {
    padding-block: clamp(3rem, 5vw, 5rem);
    border-bottom: 1px solid var(--rule);
    display: flex; flex-direction: column; gap: 1rem;
    max-width: 1000px;
}
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { font-size: clamp(3rem, 5vw + 1rem, 5rem); font-weight: 600;
 }
.page-hero .dek { font-size: 1.1rem; color: var(--muted); max-width: 620px; }

.empty-state { padding: 4rem 1rem; text-align: center; color: var(--muted); font-family: var(--font-mono); letter-spacing: .08em; }

/* ========== Footer ========== */
.site-footer {
    margin-top: 5rem; background: #141414; color: #ffffff;
    padding-block: 3.5rem 2.5rem;
}
.site-footer a { color: #ffffff; }
.site-footer .foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer .brand-big { font-family: var(--font-display); font-size: 3rem; font-weight: 500; letter-spacing: -0.02em; line-height: 1; display: inline-flex; align-items: center; gap: .6rem; }
.site-footer .brand-logo-big { height: 64px; width: auto; display: block; border-radius: 10px; }
.site-footer .brand-big em { font-style: italic; color: rgba(255,255,255,.55); }
.site-footer p { color: rgba(255,255,255,.65); font-size: .95rem; margin-top: 1rem; max-width: 320px; }
.site-footer .col h5 { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem; font-weight: 500; }
.site-footer .col a { display: block; padding-block: .3rem; font-size: .95rem; transition: color var(--tx); }
.site-footer .col a:hover { color: rgba(255,255,255,.65); }
.site-footer .foot-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: rgba(255,255,255,.5);
    text-transform: uppercase;
}
.socials { display: flex; gap: .5rem; }
.site-footer .socials a,
.socials a {
    width: 36px; height: 36px;
    display: inline-flex !important;
    align-items: center; justify-content: center;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.15); border-radius: 999px;
    color: #ffffff;
    transition: border-color var(--tx), color var(--tx);
    line-height: 0;
}
.socials a svg { display: block; margin: 0 auto; }
.site-footer .socials a:hover,
.socials a:hover { border-color: rgba(255,255,255,.5); color: rgba(255,255,255,.7); }

@media (max-width: 900px) {
    .site-footer .foot-top { grid-template-columns: 1fr 1fr; }
    .site-footer .brand-big { font-size: 2rem; }
}
@media (max-width: 560px) {
    .site-footer .foot-top { grid-template-columns: 1fr; }
    .site-footer .foot-bottom { flex-direction: column; gap: 1rem; }
}
