/* ==========================================================================
   GONCA — Modern haber/magazin tasarım sistemi
   ========================================================================== */

:root {
    --accent: #e0142b;
    --accent-dark: #b60f22;
    --accent-soft: #fdecee;

    --ink: #14171c;
    --ink-2: #3d434d;
    --muted: #6b727d;
    --line: #e7e9ee;
    --line-2: #eef0f4;

    --bg: #f6f7f9;
    --surface: #ffffff;
    --surface-2: #fbfcfd;

    --radius: 14px;
    --radius-sm: 9px;
    --shadow: 0 1px 2px rgba(20, 23, 28, .04), 0 6px 20px rgba(20, 23, 28, .06);
    --shadow-lg: 0 10px 40px rgba(20, 23, 28, .12);

    --container: 1180px;
    --gap: 26px;

    --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --serif: "Georgia", "Times New Roman", serif;
}

[data-theme="dark"] {
    --accent: #ff4d5f;
    --accent-dark: #ff6f7e;
    --accent-soft: #2a1417;

    --ink: #eef0f4;
    --ink-2: #c3c8d1;
    --muted: #939aa6;
    --line: #262a31;
    --line-2: #20242b;

    --bg: #0f1216;
    --surface: #171b21;
    --surface-2: #1c2128;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 6px 20px rgba(0, 0, 0, .35);
    --shadow-lg: 0 12px 44px rgba(0, 0, 0, .5);
}

* { box-sizing: border-box; }

/* HTML `hidden` özelliği her zaman gizlemeli (display kuralları onu ezmesin). */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

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

.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--accent);
    color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Header ---- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner {
    display: flex; align-items: center; gap: 22px;
    height: 68px;
}
.brand {
    font-weight: 800; font-size: 26px; letter-spacing: -.03em;
    color: var(--ink); flex-shrink: 0;
}
.brand:hover { color: var(--accent); }

.main-nav {
    display: flex; align-items: center; gap: 4px;
    flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
    position: relative; padding: 8px 12px; font-size: 15px; font-weight: 600;
    color: var(--ink-2); white-space: nowrap; border-radius: 8px; transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--accent); background: var(--accent-soft); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.header-search { position: relative; }
.header-search input {
    width: 210px; max-width: 40vw; height: 40px; padding: 0 14px;
    border: 1px solid var(--line); border-radius: 999px;
    background: var(--surface-2); color: var(--ink); font-size: 14px;
    transition: border-color .15s, box-shadow .15s, width .2s;
}
.header-search input:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft); width: 260px;
}

.icon-btn {
    width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 999px; background: var(--surface-2);
    color: var(--ink-2); cursor: pointer; font-size: 18px; transition: background .15s, color .15s;
}
.icon-btn:hover { color: var(--accent); border-color: var(--accent); }
.nav-toggle { display: none; }

.autocomplete {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 60;
    background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
    box-shadow: var(--shadow-lg); overflow: hidden;
}
.autocomplete a { display: block; padding: 10px 14px; font-size: 14px; color: var(--ink-2); }
.autocomplete a:hover { background: var(--accent-soft); color: var(--accent); }

/* ---- Section heads ---- */
.section { margin: 38px 0; }
.section__head {
    display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
    margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--line);
}
.section__title {
    position: relative; margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.02em;
    padding-left: 14px;
}
.section__title::before {
    content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 5px;
    background: var(--accent); border-radius: 3px;
}

/* ---- Cards ---- */
.card {
    display: flex; flex-direction: column; overflow: hidden;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 30%, var(--line)); }

.card__media {
    position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden;
    background: linear-gradient(135deg, var(--line-2), var(--line));
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__media--ph::after {
    content: "GONCA"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-weight: 800; letter-spacing: .1em; color: color-mix(in srgb, var(--muted) 55%, transparent); font-size: 20px;
}

.card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__title { margin: 0; font-size: 18px; font-weight: 750; line-height: 1.32; letter-spacing: -.01em; }
.card__title a { color: var(--ink); background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0 2px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .25s; }
.card__title a:hover { color: var(--accent); background-size: 100% 2px; }
.card__meta { margin: 0; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.card__excerpt { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

.chip {
    display: inline-flex; align-items: center; align-self: flex-start; gap: 6px;
    padding: 3px 10px; font-size: 12px; font-weight: 700; letter-spacing: .02em;
    color: var(--accent); background: var(--accent-soft); border-radius: 999px; text-transform: uppercase;
}
.chip:hover { color: #fff; background: var(--accent); }

/* ---- Grids ---- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Hero ---- */
.hero { display: grid; grid-template-columns: 1.7fr 1fr; gap: var(--gap); }
.hero__lead { border: none; }
.hero__lead .card__media { aspect-ratio: 16 / 9; }
.hero__lead .card__title { font-size: 30px; line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }
.hero__lead .card__excerpt { font-size: 16px; }
.hero__side { display: flex; flex-direction: column; gap: 14px; }

/* yatay küçük kart (hero yan liste) */
.mini {
    display: grid; grid-template-columns: 104px 1fr; gap: 12px; align-items: stretch;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow); overflow: hidden; transition: transform .16s, box-shadow .16s;
}
.mini:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.mini__media { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--line-2), var(--line)); }
.mini__media img { width: 100%; height: 100%; object-fit: cover; }
.mini__body { padding: 10px 12px 10px 0; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.mini__title { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.3; }
.mini__title a { color: var(--ink); }
.mini__title a:hover { color: var(--accent); }
.mini__meta { margin: 0; font-size: 12px; color: var(--muted); }

/* ---- Badges ---- */
.badge { display: inline-block; padding: 3px 9px; font-size: 11px; font-weight: 800; border-radius: 6px; text-transform: uppercase; letter-spacing: .04em; }
.badge--breaking { background: var(--accent); color: #fff; }

/* ---- Breadcrumb ---- */
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 24px 0 8px; font-size: 13px; color: var(--muted); }
.breadcrumb li + li::before { content: "\203A"; margin-right: 8px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ---- Article ---- */
.article { max-width: 760px; margin: 0 auto; }
.article__title { font-size: 38px; line-height: 1.15; font-weight: 850; letter-spacing: -.025em; margin: 6px 0 14px; }
.article__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13.5px; color: var(--muted); padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.article__lead { font-size: 20px; line-height: 1.55; color: var(--ink-2); font-weight: 500; margin: 0 0 24px; }
.article__body { font-size: 18px; line-height: 1.8; color: var(--ink); }
.article__body p { margin: 0 0 1.3em; }
.article__body h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin: 1.6em 0 .5em; }
.article__body h3 { font-size: 21px; font-weight: 750; margin: 1.4em 0 .4em; }
.article__body img { border-radius: var(--radius); margin: 1.5em 0; }
.article__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article__body blockquote { margin: 1.5em 0; padding: 6px 22px; border-left: 4px solid var(--accent); color: var(--ink-2); font-style: italic; }
.article__body ul, .article__body ol { padding-left: 1.4em; margin: 0 0 1.3em; }

/* ---- Article two-column layout ---- */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; max-width: 1140px; margin: 0 auto; }
.article-main { min-width: 0; }
.article-layout .article { max-width: none; margin: 0; }
.article-sidebar { min-width: 0; }
.widget { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 20px; margin-bottom: 22px; }
.widget--sticky { position: sticky; top: 88px; }
.widget__title { position: relative; margin: 0 0 12px; font-size: 16px; font-weight: 800; letter-spacing: -.01em; padding-left: 12px; }
.widget__title::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 4px; background: var(--accent); border-radius: 3px; }
.most-read { list-style: none; margin: 0; padding: 0; counter-reset: mr; }
.most-read li { counter-increment: mr; border-top: 1px solid var(--line-2); }
.most-read li:first-child { border-top: none; }
.most-read a { display: flex; gap: 12px; align-items: baseline; padding: 11px 0; color: var(--ink-2); }
.most-read a:hover { color: var(--accent); }
.most-read__num { flex-shrink: 0; width: 22px; font-size: 18px; font-weight: 800; color: var(--accent); font-variant-numeric: tabular-nums; }
.most-read__num::before { content: counter(mr); }
.most-read__title { font-size: 14.5px; font-weight: 650; line-height: 1.35; }
@media (max-width: 960px) {
    .article-layout { grid-template-columns: 1fr; gap: 28px; }
    .widget--sticky { position: static; }
}

/* ---- Comments / reactions ---- */
.reactions { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0; }
.reactions button, .reaction-btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
    border: 1px solid var(--line); border-radius: 999px; background: var(--surface);
    cursor: pointer; font-size: 15px; color: var(--ink-2); transition: border-color .15s, background .15s;
}
.reactions button:hover { border-color: var(--accent); background: var(--accent-soft); }
.reactions button.is-active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); font-weight: 700; }

.comment { padding: 16px 0; border-bottom: 1px solid var(--line); }
.comment__head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 14px; }
.comment__replies { list-style: none; margin: 14px 0 0; padding-left: 20px; border-left: 2px solid var(--line); }

.comment-form, .search-form { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.comment-form input, .comment-form textarea, .search-form input {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: var(--surface); color: var(--ink); font: inherit; font-size: 15px;
}
.comment-form input:focus, .comment-form textarea:focus, .search-form input:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.search-form { flex-direction: row; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border: none; border-radius: 999px; cursor: pointer;
    background: var(--accent); color: #fff; font: inherit; font-weight: 700; font-size: 15px;
    transition: background .15s, transform .1s;
}
.btn:hover { background: var(--accent-dark); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { background: var(--surface-2); color: var(--accent); border-color: var(--accent); }

/* ---- Misc ---- */
.text-soft { color: var(--muted); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.ad-container { margin: 26px auto; text-align: center; }
.ad-slot { position: relative; display: block; width: 100%; margin: 0 auto; padding: 8px; background: var(--surface-2); border: 1px dashed var(--line); border-radius: 8px; text-align: center; }
.ad-slot .ad-label { display: block; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ad-slot__inner { display: block; width: 100%; min-width: 250px; }
.ad-slot__inner .adsbygoogle { display: block; width: 100%; }
.ad-slot img { max-width: 100%; height: auto; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }

/* ---- Footer ---- */
.site-footer { margin-top: 60px; background: var(--surface); border-top: 1px solid var(--line); }
.site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 44px 0 28px; }
.site-footer__brand { font-weight: 800; font-size: 22px; letter-spacing: -.03em; }
.site-footer strong { display: block; margin-bottom: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.site-footer nav { display: flex; flex-direction: column; gap: 8px; }
.site-footer nav a { color: var(--ink-2); font-size: 15px; }
.site-footer nav a:hover { color: var(--accent); }
.site-footer__bottom { border-top: 1px solid var(--line); padding: 18px 0; font-size: 13px; color: var(--muted); text-align: center; }

/* ---- Consent banner ---- */
.consent-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
    padding: 16px 20px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-lg); max-width: var(--container); margin: 0 auto;
}
.consent-banner p { margin: 0; font-size: 14px; color: var(--ink-2); flex: 1; min-width: 240px; }
.consent-banner__actions { display: flex; gap: 10px; }
.ad-sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; text-align: center; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .article__title { font-size: 30px; }
    .article__body { font-size: 17px; }
}
@media (max-width: 640px) {
    .site-header__inner { height: 60px; gap: 12px; }
    .brand { font-size: 22px; }
    .main-nav { position: fixed; inset: 60px 0 auto 0; flex-direction: column; align-items: stretch;
        background: var(--surface); border-bottom: 1px solid var(--line); padding: 10px 16px; gap: 2px;
        box-shadow: var(--shadow-lg); display: none; }
    .main-nav.open { display: flex; }
    .nav-toggle { display: inline-flex; }
    .header-search input { width: 150px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section__title { font-size: 19px; }
    .site-footer__inner { grid-template-columns: 1fr; }
    .article__title { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}

/* ---- Kişi bilgi kutusu (kim-kimdir) ---- */
.person-box {
    margin: 0 0 22px; padding: 16px 18px;
    background: var(--surface-2); border: 1px solid var(--line);
    border-left: 4px solid var(--accent); border-radius: var(--radius-sm);
}
.person-box__title { margin: 0 0 12px; font-size: 1.02rem; font-family: var(--sans); }
.person-box__list { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.person-box__row { display: flex; justify-content: space-between; gap: 12px;
    padding-bottom: 6px; border-bottom: 1px dashed var(--line); }
.person-box__row dt { margin: 0; color: var(--muted); font-size: .92rem; }
.person-box__row dd { margin: 0; font-weight: 600; font-size: .95rem; text-align: right; }
@media (max-width: 560px) { .person-box__list { grid-template-columns: 1fr; } }

/* ---- İlgili yazılar ---- */
.related { margin: 30px 0; padding-top: 22px; border-top: 2px solid var(--line); }
.related__title { margin: 0 0 16px; font-size: 1.15rem; }
.related__grid { list-style: none; margin: 0; padding: 0; display: grid;
    grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related__item a { display: flex; flex-direction: column; gap: 8px; color: var(--ink);
    text-decoration: none; }
.related__thumb { display: block; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-sm);
    background: var(--surface-2); }
.related__thumb img { width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .25s; }
.related__item a:hover .related__thumb img { transform: scale(1.04); }
.related__label { font-weight: 600; font-size: .95rem; line-height: 1.35; }
.related__item a:hover .related__label { color: var(--accent); }
@media (max-width: 720px) { .related__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .related__grid { grid-template-columns: 1fr; } }

/* ---- Yazar profili (E-E-A-T): makale kutusu + yazar sayfası ---- */
.article__author a { color: var(--accent); font-weight: 650; }
.author-box {
    display: flex; gap: 16px; align-items: flex-start;
    margin: 28px 0; padding: 20px; border: 1px solid var(--line, #e6e8ec);
    border-radius: 14px; background: var(--card, #fff);
}
.author-box__avatar {
    width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
}
.author-box__avatar--ph {
    display: grid; place-items: center; background: var(--accent, #c8102e);
    color: #fff; font-size: 30px; font-weight: 750; text-transform: uppercase;
}
.author-box__body { display: flex; flex-direction: column; gap: 4px; }
.author-box__eyebrow { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted, #7a8090); }
.author-box__name { font-size: 19px; font-weight: 800; color: var(--ink, #16181d); letter-spacing: -.01em; }
.author-box__name:hover { color: var(--accent, #c8102e); }
.author-box__role { font-size: 13.5px; color: var(--ink-2, #454b57); font-weight: 600; }
.author-box__bio { margin: 6px 0 0; font-size: 14.5px; color: var(--ink-2, #454b57); line-height: 1.55; }
.author-box__foot { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; margin-top: 8px; }
.author-box__more { font-weight: 700; color: var(--accent, #c8102e); font-size: 14px; }
.author-box__social a { color: var(--muted, #7a8090); font-size: 13px; margin-right: 10px; }
.author-box__social a:hover { color: var(--accent, #c8102e); }

.author-hero {
    display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
    margin: 22px 0 30px; padding: 26px; border: 1px solid var(--line, #e6e8ec);
    border-radius: 16px; background: var(--card, #fff);
}
.author-hero__avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.author-hero__avatar--ph {
    display: grid; place-items: center; background: var(--accent, #c8102e);
    color: #fff; font-size: 42px; font-weight: 750; text-transform: uppercase;
}
.author-hero__info { flex: 1; min-width: 240px; }
.author-hero__name { margin: 0; font-size: 28px; font-weight: 850; letter-spacing: -.02em; }
.author-hero__role { margin: 4px 0 0; font-size: 15px; font-weight: 650; color: var(--ink-2, #454b57); }
.author-hero__bio { margin: 12px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-2, #454b57); max-width: 60ch; }
.author-hero__social { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 14px 0 0; padding: 0; }
.author-hero__social a { color: var(--accent, #c8102e); font-weight: 650; font-size: 14px; }
.author-articles { margin-top: 8px; }
.author-articles .section-title { font-size: 20px; font-weight: 800; margin: 0 0 16px; letter-spacing: -.01em; }

/* ---- Ana sayfa tanıtım (hero intro / H1 + GONCA nedir) ---- */
.home-intro {
    margin: 18px 0 26px; padding: 22px 24px;
    border: 1px solid var(--line, #e7e9ee); border-radius: 16px;
    background: linear-gradient(180deg, var(--card, #fff), color-mix(in srgb, var(--accent, #e0142b) 4%, #fff));
}
.home-intro__title { margin: 0; font-size: 27px; font-weight: 850; letter-spacing: -.02em; line-height: 1.2; }
.home-intro__text { margin: 10px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-2, #454b57); max-width: 80ch; }
@media (max-width: 640px) {
    .home-intro { padding: 18px 16px; }
    .home-intro__title { font-size: 22px; }
    .home-intro__text { font-size: 14.5px; }
}
