/*
 * Sketsa Taktis Theme — Custom CSS
 * Military parchment / topographic portal for Laravel Sintesis
 * Prefix: st- (scoped, no conflict)
 */

/* ── VARIABLES ── */
:root {
  --st-bg:         #e8e4dc;
  --st-bg2:        #dedad0;
  --st-dark:       #2e3320;
  --st-dark2:      #3a4028;
  --st-dark3:      #4a5030;
  --st-olive:      #5a6035;
  --st-olive2:     #6a7040;
  --st-tan:        #b8a878;
  --st-tan2:       #a89860;
  --st-rust:       #8a4a20;
  --st-text:       #2a2a1a;
  --st-text-dim:   #6a6a50;
  --st-text-nav:   #e8e4dc;
  --st-border:     #c8c0a0;
  --st-white:      #ffffff;
  --st-sidebar-h:  #4a5030;
}

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

body.st-portal {
  background: var(--st-bg);
  color: var(--st-text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  position: relative;
}

/* Topographic map texture */
body.st-portal::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    repeating-radial-gradient(ellipse 800px 400px at 80% 30%, transparent 0px, transparent 38px, rgba(160,148,100,.08) 39px, transparent 40px),
    repeating-radial-gradient(ellipse 600px 300px at 80% 30%, transparent 0px, transparent 58px, rgba(160,148,100,.06) 59px, transparent 60px),
    repeating-radial-gradient(ellipse 900px 500px at 15% 70%, transparent 0px, transparent 45px, rgba(160,148,100,.05) 46px, transparent 47px);
  pointer-events: none;
  z-index: 0;
}
/* Blueprint grid top-right corner */
body.st-portal::after {
  content: '';
  position: fixed;
  top: 0; right: 0;
  width: 280px; height: 200px;
  background-image:
    linear-gradient(rgba(90,96,53,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,96,53,.12) 1px, transparent 1px);
  background-size: 20px 20px;
  clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── HEADER ── */
.st-header {
  background: var(--st-bg);
  padding: 18px 0 14px;
  position: relative;
  z-index: 10;
  border-bottom: 2px solid var(--st-border);
}
.st-logo-wrap {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
}
.st-logo-svg-wrap { width: 72px; height: 72px; flex-shrink: 0; }
.st-logo-svg-wrap svg { width: 72px; height: 72px; }
.st-logo-img { width: 72px; height: 72px; object-fit: contain; flex-shrink: 0; }
.st-logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--st-dark);
  line-height: .9;
  letter-spacing: 2px;
}
.st-logo-name span { display: block; }
.st-logo-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  color: var(--st-text-dim);
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ── NAVBAR ── */
.st-main-nav {
  background: var(--st-dark2);
  position: relative;
  z-index: 10;
}

/* Nav scroll wrapper (mobile-friendly) */
.st-nav-scroll-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.st-nav-menu {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.st-nav-menu::-webkit-scrollbar { display: none; }

.st-nav-arrow {
  position: absolute;
  top: 0; bottom: 0; width: 36px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; pointer-events: none;
  opacity: 0; transition: opacity .2s;
  font-size: 13px; color: rgba(255,255,255,.5);
}
.st-nav-arrow.visible { opacity: 1; pointer-events: auto; cursor: pointer; }
.st-nav-arrow-left  { left: 0;  background: linear-gradient(to right, #3a4028 40%, transparent); }
.st-nav-arrow-right { right: 0; background: linear-gradient(to left,  #3a4028 40%, transparent); }

.st-nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--st-text-nav);
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .2s, color .2s;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  display: block;
}
.st-nav-link:hover { background: var(--st-dark3); color: var(--st-text-nav); }
.st-nav-link.active { background: var(--st-olive); color: #fff; }

.st-nav-icons { display: flex; align-items: center; }
.st-nav-icons a {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  margin-left: 18px;
  transition: color .2s;
  text-decoration: none;
}
.st-nav-icons a:hover { color: #fff; }

/* ── TAGLINE BAR ── */
.st-tagline-bar {
  background: var(--st-dark3);
  color: rgba(255,255,255,.85);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  text-align: center;
  padding: 11px 0;
  position: relative;
  z-index: 5;
}

/* ── MAIN SECTION ── */
.st-main-section {
  position: relative; z-index: 5;
  padding: 24px 0 40px;
}

/* ── HERO CARD ── */
.st-hero-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: border-color .2s;
}
.st-hero-card:hover { border-color: var(--st-olive); }

.st-hero-thumb {
  width: 100%; height: 230px;
  background: linear-gradient(135deg, #1a2a1a, #2a3a20);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(255,255,255,.1);
  overflow: hidden; flex-shrink: 0;
  position: relative;
}
.st-hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-hero-thumb-cat {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--st-olive);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  padding: 4px 10px;
}
.st-hero-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.st-hero-title {
  font-family: 'Merriweather', serif;
  font-size: 20px; font-weight: 700;
  color: var(--st-dark); line-height: 1.3;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-hero-card:hover .st-hero-title { color: var(--st-olive); }
.st-hero-excerpt {
  font-size: 13px; color: var(--st-text-dim);
  line-height: 1.6; margin-bottom: 12px; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-hero-meta {
  font-size: 12px; color: var(--st-text-dim);
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.st-hero-meta i { color: var(--st-olive); margin-right: 3px; }
.st-btn-detail {
  background: none;
  border: 2px solid var(--st-dark);
  color: var(--st-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px;
  padding: 9px 22px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
}
.st-btn-detail:hover {
  background: var(--st-dark);
  border-color: var(--st-dark);
  color: #fff;
}

/* ── MID CARDS ── */
.st-mid-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: border-color .2s;
}
.st-mid-card:hover { border-color: var(--st-olive); }
.st-mid-thumb {
  width: 100%; height: 190px;
  background: linear-gradient(135deg, #1a2a2a, #2a3a30);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; color: rgba(255,255,255,.1);
  overflow: hidden; flex-shrink: 0;
}
.st-mid-thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-mid-body { padding: 14px 16px; flex: 1; }
.st-mid-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; color: var(--st-olive);
  margin-bottom: 5px;
}
.st-mid-title {
  font-family: 'Merriweather', serif;
  font-size: 13px; font-weight: 700;
  color: var(--st-dark); line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-mid-card:hover .st-mid-title { color: var(--st-olive); }
.st-mid-meta {
  font-size: 11px; color: var(--st-text-dim);
  margin-top: 6px;
}

/* ── SIDEBAR ── */
.st-sidebar-block {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  overflow: hidden;
  margin-bottom: 18px;
}
.st-sidebar-title {
  background: var(--st-sidebar-h);
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  padding: 11px 16px;
  border-left: 4px solid var(--st-tan);
}
.st-op-list { list-style: none; padding: 0; margin: 0; }
.st-op-list li {
  padding: 9px 16px;
  border-bottom: 1px solid var(--st-bg2);
  font-size: 13px;
  color: var(--st-text-dim);
  transition: background .15s, color .15s;
  cursor: pointer;
  display: flex; gap: 8px; align-items: baseline;
  text-decoration: none;
}
.st-op-list li:last-child { border-bottom: none; }
.st-op-list li:hover { background: var(--st-bg2); color: var(--st-dark); }
.st-op-list li .st-num {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--st-olive); flex-shrink: 0;
}
.st-sim-item {
  display: flex; gap: 12px; align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--st-bg2);
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}
.st-sim-item:last-child { border-bottom: none; }
.st-sim-item:hover { background: var(--st-bg2); }
.st-sim-thumb {
  width: 60px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, #1a2a1a, #2a3a20);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: rgba(255,255,255,.2);
  overflow: hidden;
}
.st-sim-thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-sim-title {
  font-size: 13px; font-weight: 600;
  color: var(--st-dark); line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-sim-item:hover .st-sim-title { color: var(--st-olive); }
.st-sim-date { font-size: 11px; color: var(--st-text-dim); margin-top: 2px; }

/* ── SECTION DIVIDER ── */
.st-section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px;
  color: var(--st-olive);
  border-bottom: 2px solid var(--st-border);
  padding-bottom: 8px;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.st-section-label::before {
  content: '';
  width: 4px; height: 18px;
  background: var(--st-olive);
  flex-shrink: 0;
}

/* ── ARTICLE DETAIL ── */
.st-article-wrap { position: relative; z-index: 5; padding: 28px 0 52px; }

.st-breadcrumb {
  background: var(--st-bg2);
  border-bottom: 1px solid var(--st-border);
  padding: 9px 0;
  position: relative; z-index: 5;
}
.st-breadcrumb ol { margin: 0; padding: 0; font-size: 13px; }
.st-breadcrumb .breadcrumb-item a { color: var(--st-text-dim); text-decoration: none; }
.st-breadcrumb .breadcrumb-item a:hover { color: var(--st-olive); }
.st-breadcrumb .breadcrumb-item.active { color: var(--st-olive); }
.st-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--st-border); }

.st-article-main {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  padding: 28px;
}
.st-article-cat-badge {
  display: inline-block;
  background: var(--st-olive);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 12px;
  margin-bottom: 14px;
  text-decoration: none;
}
.st-article-cat-badge:hover { background: var(--st-dark3); color: #fff; }
.st-article-title {
  font-family: 'Merriweather', serif;
  font-size: 28px; font-weight: 700;
  color: var(--st-dark); line-height: 1.25;
  margin-bottom: 14px;
}
.st-article-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: var(--st-text-dim);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--st-border);
  margin-bottom: 20px;
  align-items: center;
}
.st-article-meta i { color: var(--st-olive); margin-right: 4px; }

.st-sentiment {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; font-family: 'Oswald', sans-serif;
  letter-spacing: .5px;
}
.st-sentiment-positive { background: rgba(90,96,53,.12); color: var(--st-olive); border: 1px solid rgba(90,96,53,.3); }
.st-sentiment-negative { background: rgba(138,74,32,.12); color: var(--st-rust); border: 1px solid rgba(138,74,32,.3); }
.st-sentiment-neutral  { background: rgba(106,106,80,.1); color: var(--st-text-dim); border: 1px solid var(--st-border); }

.st-hero-img {
  width: 100%; max-height: 420px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid var(--st-border);
}
.st-hero-placeholder {
  width: 100%; height: 300px;
  background: linear-gradient(135deg, #1a2a1a, #2a3a20);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(255,255,255,.08);
  margin-bottom: 20px;
  border: 1px solid var(--st-border);
}
.st-img-credit { font-size: 11px; color: var(--st-text-dim); text-align: right; font-style: italic; margin-top: -14px; margin-bottom: 16px; }

.st-ringkasan {
  border-left: 4px solid var(--st-olive);
  padding: 12px 18px;
  background: rgba(90,96,53,.06);
  margin-bottom: 20px;
  font-style: italic;
  color: var(--st-text-dim);
  font-size: 14px; line-height: 1.7;
}

.st-article-body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px; line-height: 1.85;
  color: var(--st-text);
}
.st-article-body h1, .st-article-body h2, .st-article-body h3,
.st-article-body h4, .st-article-body h5, .st-article-body h6 {
  font-family: 'Merriweather', serif;
  color: var(--st-dark); margin: 1.4em 0 .6em;
}
.st-article-body p { margin-bottom: 1em; }
.st-article-body img { max-width: 100%; border: 1px solid var(--st-border); }
.st-article-body a { color: var(--st-olive); }
.st-article-body blockquote {
  border-left: 4px solid var(--st-tan);
  padding: 10px 20px;
  margin: 1.2em 0;
  background: rgba(184,168,120,.08);
  font-style: italic;
  color: var(--st-text-dim);
}

.st-tag-pill {
  font-size: 12px; color: var(--st-text-dim);
  border: 1px solid var(--st-border);
  padding: 3px 12px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.st-tag-pill:hover { border-color: var(--st-olive); color: var(--st-olive); }

.st-entities-block {
  background: rgba(90,96,53,.05);
  border: 1px solid var(--st-border);
  border-left: 4px solid var(--st-tan);
  padding: 14px 18px;
  margin-top: 18px; font-size: 13px;
  color: var(--st-text-dim);
}
.st-entities-title {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; color: var(--st-olive);
  margin-bottom: 8px;
}
.st-entities-block div { margin-bottom: 4px; }
.st-entities-block strong { color: var(--st-dark); }

.st-share-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center; margin-top: 20px;
  font-size: 13px; color: var(--st-text-dim);
}

/* Related */
.st-related-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column;
  height: 100%;
  transition: border-color .2s;
}
.st-related-card:hover { border-color: var(--st-olive); }
.st-related-thumb {
  height: 100px;
  background: linear-gradient(135deg, #1a2a1a, #2a3a20);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: rgba(255,255,255,.08);
  overflow: hidden;
}
.st-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-related-body { padding: 10px 12px; flex: 1; }
.st-related-title {
  font-family: 'Merriweather', serif;
  font-size: 12px; font-weight: 700;
  color: var(--st-dark); line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-related-card:hover .st-related-title { color: var(--st-olive); }
.st-related-date { font-size: 11px; color: var(--st-text-dim); margin-top: 5px; }

/* Sidebar for article/category/search */
.st-aside-block { margin-bottom: 20px; }

/* ── CATEGORY / SEARCH ── */
.st-page-header {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-left: 4px solid var(--st-olive);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.st-page-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: 1.5px; color: var(--st-dark);
  display: flex; align-items: center; gap: 10px;
}
.st-page-title i { color: var(--st-olive); }
.st-page-count { font-size: 13px; color: var(--st-text-dim); margin-top: 3px; }

/* Article row list */
.st-art-row {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  display: flex; gap: 0;
  text-decoration: none;
  transition: border-color .2s;
  margin-bottom: 12px;
  overflow: hidden;
}
.st-art-row:hover { border-color: var(--st-olive); }
.st-art-row-thumb {
  width: 150px; flex-shrink: 0;
  background: linear-gradient(135deg, #1a2a1a, #2a3a20);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: rgba(255,255,255,.08);
  overflow: hidden;
}
.st-art-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-art-row-body { padding: 14px 18px; flex: 1; }
.st-art-row-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; color: var(--st-olive); margin-bottom: 5px;
}
.st-art-row-title {
  font-family: 'Merriweather', serif;
  font-size: 15px; font-weight: 700;
  color: var(--st-dark); line-height: 1.3;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-art-row:hover .st-art-row-title { color: var(--st-olive); }
.st-art-row-excerpt {
  font-size: 13px; color: var(--st-text-dim);
  line-height: 1.5; margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-art-row-meta { font-size: 12px; color: var(--st-text-dim); display: flex; gap: 14px; flex-wrap: wrap; }
.st-art-row-meta i { color: var(--st-olive); margin-right: 3px; }

/* ── PAGINATION ── */
.st-pagination .page-item .page-link {
  background: var(--st-white); border-color: var(--st-border);
  color: var(--st-text-dim); border-radius: 0;
}
.st-pagination .page-item.active .page-link {
  background: var(--st-olive); border-color: var(--st-olive); color: #fff;
}
.st-pagination .page-item .page-link:hover {
  background: var(--st-bg2); border-color: var(--st-olive); color: var(--st-olive);
}
.st-pagination .page-item.disabled .page-link {
  background: var(--st-bg2); border-color: var(--st-border); color: rgba(106,106,80,.4);
}

/* ── EMPTY STATE ── */
.st-empty {
  text-align: center; padding: 60px 20px;
  background: var(--st-white); border: 1px solid var(--st-border);
  color: var(--st-text-dim);
}
.st-empty i { font-size: 48px; margin-bottom: 16px; color: var(--st-border); display: block; }
.st-empty h4 { font-family: 'Merriweather', serif; font-size: 20px; color: var(--st-dark); margin-bottom: 8px; }

/* ── SEARCH FORM ── */
.st-search-form-wrap {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  padding: 18px;
  margin-bottom: 20px;
}
.st-search-input {
  width: 100%;
  background: var(--st-bg2);
  border: 1px solid var(--st-border);
  color: var(--st-text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  padding: 10px 16px;
  outline: none;
  transition: border-color .2s;
}
.st-search-input:focus { border-color: var(--st-olive); }
.st-search-input::placeholder { color: var(--st-text-dim); }
.st-search-btn {
  background: var(--st-dark);
  border: 2px solid var(--st-dark);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 1.2px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.st-search-btn:hover { background: var(--st-olive); border-color: var(--st-olive); }

/* ── SCROLL TOP ── */
.st-scroll-top {
  position: fixed; bottom: 28px; right: 22px;
  width: 40px; height: 40px;
  background: var(--st-dark);
  color: #fff;
  display: none; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none; z-index: 999;
  border: 2px solid var(--st-olive);
  transition: background .2s;
}
.st-scroll-top.visible { display: flex; }
.st-scroll-top:hover { background: var(--st-olive); color: #fff; }

/* ── FOOTER ── */
.st-footer {
  background: var(--st-dark2);
  position: relative; z-index: 5;
  padding: 18px 0;
  border-top: 3px solid var(--st-olive);
}
.st-footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  margin-right: 28px;
  transition: color .2s;
  text-transform: uppercase;
}
.st-footer-links a:hover { color: #fff; }
.st-footer-socials a {
  color: rgba(255,255,255,.6);
  font-size: 20px;
  margin-left: 14px;
  transition: color .2s;
  text-decoration: none;
}
.st-footer-socials a:hover { color: #fff; }
.st-footer-copy { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 10px; text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .st-hero-thumb { height: 200px; }
  .st-article-title { font-size: 22px; }
  .st-art-row-thumb { width: 100px; }
  .st-logo-name { font-size: 30px; }
}
