/* ============================================================
   MAGAZINE THEME — viv.co.id CMS
   Bold/Vivid · Mosaic Grid · Top Dibaca
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
body.theme-magazine {
  --mag-red:        var(--site-primary, #C0392B);
  --mag-red-dark:   var(--site-secondary, #96281B);
  --mag-navy:       #1A252F;
  --mag-bg:         #F2F2F2;
  --mag-white:      #FFFFFF;
  --mag-text:       #111111;
  --mag-muted:      #666666;
  --mag-border:     #E2E2E2;
  --mag-radius:     5px;
  --mag-font:       system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-family:      var(--mag-font);
  background:       var(--mag-bg);
  color:            var(--mag-text);
  -webkit-font-smoothing: antialiased;
}

body.theme-magazine *,
body.theme-magazine *::before,
body.theme-magazine *::after { box-sizing: border-box; }

body.theme-magazine a { color: var(--mag-text); text-decoration: none; }
body.theme-magazine a:hover { color: var(--mag-red); }
body.theme-magazine img { max-width: 100%; height: auto; display: block; }

/* ── Utility ──────────────────────────────────────────────── */
body.theme-magazine .mag-container {
  width: 100%; max-width: 1160px;
  margin-left: auto; margin-right: auto;
  padding-left: 16px; padding-right: 16px;
}
body.theme-magazine .mag-tag {
  display: inline-block;
  background: var(--mag-red);
  color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px;
  line-height: 1.4;
}
body.theme-magazine .mag-tag-dark { background: var(--mag-navy); }
body.theme-magazine .mag-section-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 3px solid var(--mag-red);
}
body.theme-magazine .mag-section-head h2 {
  font-size: 15px; font-weight: 700; margin: 0;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--mag-text);
}
body.theme-magazine .mag-section-head a.mag-see-all {
  margin-left: auto; font-size: 12px; color: var(--mag-red);
  font-weight: 600; white-space: nowrap;
}
body.theme-magazine .mag-section-head a.mag-see-all:hover { text-decoration: underline; }

/* ── Navbar ────────────────────────────────────────────────── */
body.theme-magazine .mag-topbar {
  background: var(--mag-navy);
  padding: 10px 0;
  border-bottom: 3px solid var(--mag-red);
}
body.theme-magazine .mag-topbar__inner {
  display: flex; align-items: center; gap: 16px;
}
body.theme-magazine .mag-topbar__logo img {
  height: 44px; width: auto; max-width: 200px; object-fit: contain;
}
body.theme-magazine .mag-topbar__logo {
  flex: 1;
}
body.theme-magazine .mag-topbar__date {
  font-size: 11px; color: rgba(255,255,255,.55); white-space: nowrap;
}
body.theme-magazine .mag-nav {
  background: var(--mag-red);
}
body.theme-magazine .mag-nav__inner {
  display: flex; align-items: stretch; flex-wrap: nowrap;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
body.theme-magazine .mag-nav__inner::-webkit-scrollbar { display: none; }
body.theme-magazine .mag-nav__item {
  position: relative;
  flex: 0 0 auto;
}
body.theme-magazine .mag-nav__item > a {
  display: block; padding: 10px 16px;
  font-size: 13px; font-weight: 700;
  color: #fff !important; letter-spacing: .03em;
  text-transform: uppercase; white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: background .15s;
}
body.theme-magazine .mag-nav__item > a:hover,
body.theme-magazine .mag-nav__item.active > a {
  background: rgba(0,0,0,.18);
  color: #fff !important;
}
body.theme-magazine .mag-nav__dropdown {
  display: none;
  position: absolute; top: 100%; left: 0; z-index: 200;
  background: var(--mag-navy);
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
}
body.theme-magazine .mag-nav__item:hover .mag-nav__dropdown { display: block; }
body.theme-magazine .mag-nav__dropdown a {
  display: block; padding: 9px 16px;
  font-size: 12px; color: rgba(255,255,255,.85) !important;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
body.theme-magazine .mag-nav__dropdown a:hover { background: var(--mag-red); color: #fff !important; }

/* ── Ticker ─────────────────────────────────────────────────── */
body.theme-magazine .mag-ticker {
  background: var(--mag-navy); padding: 7px 0;
  overflow: hidden;
}
body.theme-magazine .mag-ticker__inner {
  display: flex; align-items: center; gap: 14px;
}
body.theme-magazine .mag-ticker__label {
  background: var(--mag-red);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 3px;
  white-space: nowrap; text-transform: uppercase; flex-shrink: 0;
}
body.theme-magazine .mag-ticker__text {
  font-size: 12px; color: rgba(255,255,255,.8);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
body.theme-magazine .mag-ticker__text a { color: rgba(255,255,255,.9); }
body.theme-magazine .mag-ticker__text a:hover { color: #fff; }

/* ── Mosaic Grid (homepage hero) ────────────────────────────── */
body.theme-magazine .mag-mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px;
  margin: 16px 0;
}
body.theme-magazine .mag-mosaic__main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: var(--mag-radius);
  overflow: hidden;
}
body.theme-magazine .mag-mosaic__main img {
  width: 100%; height: 460px; object-fit: cover;
}
body.theme-magazine .mag-mosaic__main-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,.85) 100%);
  padding: 22px 18px 18px;
}
body.theme-magazine .mag-mosaic__main-overlay .mag-tag { margin-bottom: 8px; }
body.theme-magazine .mag-mosaic__main-overlay h2 {
  margin: 0 0 8px; color: #fff;
  font-size: 22px; font-weight: 800; line-height: 1.25;
  letter-spacing: -.02em;
}
body.theme-magazine .mag-mosaic__main-overlay h2 a { color: #fff; }
body.theme-magazine .mag-mosaic__main-overlay h2 a:hover { color: rgba(255,255,255,.85); }
body.theme-magazine .mag-mosaic__main-meta { font-size: 11px; color: rgba(255,255,255,.65); }

body.theme-magazine .mag-mosaic__side {
  position: relative; border-radius: var(--mag-radius); overflow: hidden;
}
body.theme-magazine .mag-mosaic__side img {
  width: 100%; height: 227px; object-fit: cover;
}
body.theme-magazine .mag-mosaic__side-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,.82) 100%);
  padding: 14px 12px 12px;
}
body.theme-magazine .mag-mosaic__side-overlay .mag-tag { margin-bottom: 5px; }
body.theme-magazine .mag-mosaic__side-overlay h3 {
  margin: 0; color: #fff;
  font-size: 14px; font-weight: 700; line-height: 1.3;
}
body.theme-magazine .mag-mosaic__side-overlay h3 a { color: #fff; }
body.theme-magazine .mag-mosaic__side-overlay h3 a:hover { color: rgba(255,255,255,.85); }
body.theme-magazine .mag-mosaic__side-meta { font-size: 10px; color: rgba(255,255,255,.6); margin-top: 3px; }

/* ── Home body layout ───────────────────────────────────────── */
body.theme-magazine .mag-home-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px; padding-bottom: 32px;
}
body.theme-magazine .mag-home-main {}
body.theme-magazine .mag-home-sidebar {}

/* ── Terkini stream ─────────────────────────────────────────── */
body.theme-magazine .mag-stream { margin-bottom: 28px; }
body.theme-magazine .mag-stream-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px; align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--mag-border);
}
body.theme-magazine .mag-stream-item:first-child { padding-top: 0; }
body.theme-magazine .mag-stream-item__thumb {
  width: 120px; height: 80px;
  border-radius: var(--mag-radius); overflow: hidden; flex-shrink: 0;
}
body.theme-magazine .mag-stream-item__thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
body.theme-magazine .mag-stream-item__body {}
body.theme-magazine .mag-stream-item__body .mag-tag { margin-bottom: 5px; }
body.theme-magazine .mag-stream-item h3 {
  margin: 0 0 4px; font-size: 14px; font-weight: 700; line-height: 1.35;
}
body.theme-magazine .mag-stream-item h3 a { color: var(--mag-text); }
body.theme-magazine .mag-stream-item h3 a:hover { color: var(--mag-red); }
body.theme-magazine .mag-stream-item__meta {
  font-size: 11px; color: var(--mag-muted);
}

/* ── Top Dibaca (numbered list) ────────────────────────────── */
body.theme-magazine .mag-topread { margin-bottom: 28px; }
body.theme-magazine .mag-topread-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--mag-border);
}
body.theme-magazine .mag-topread-item:first-child { padding-top: 0; }
body.theme-magazine .mag-topread-num {
  font-size: 32px; font-weight: 900; line-height: 1;
  color: var(--mag-red); min-width: 36px;
  flex-shrink: 0; margin-top: 2px;
}
body.theme-magazine .mag-topread-item h3 {
  margin: 0 0 4px; font-size: 14px; font-weight: 700; line-height: 1.35;
}
body.theme-magazine .mag-topread-item h3 a { color: var(--mag-text); }
body.theme-magazine .mag-topread-item h3 a:hover { color: var(--mag-red); }
body.theme-magazine .mag-topread-item__meta {
  font-size: 11px; color: var(--mag-muted);
}

/* ── Sidebar ──────────────────────────────────────────────── */
body.theme-magazine .mag-sidebar-widget {
  background: var(--mag-white);
  border: 1px solid var(--mag-border);
  border-radius: var(--mag-radius);
  margin-bottom: 20px; padding: 16px;
}
body.theme-magazine .mag-sidebar-widget .mag-section-head {
  margin-bottom: 12px; padding-bottom: 8px;
}
body.theme-magazine .mag-sidebar-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 10px; align-items: start;
  padding: 9px 0; border-bottom: 1px solid var(--mag-border);
}
body.theme-magazine .mag-sidebar-item:first-child { padding-top: 0; }
body.theme-magazine .mag-sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
body.theme-magazine .mag-sidebar-item__thumb {
  width: 80px; height: 56px; border-radius: 4px; overflow: hidden;
}
body.theme-magazine .mag-sidebar-item__thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
body.theme-magazine .mag-sidebar-item h4 {
  margin: 0 0 4px; font-size: 13px; font-weight: 700; line-height: 1.3;
}
body.theme-magazine .mag-sidebar-item h4 a { color: var(--mag-text); }
body.theme-magazine .mag-sidebar-item h4 a:hover { color: var(--mag-red); }
body.theme-magazine .mag-sidebar-item__meta { font-size: 10px; color: var(--mag-muted); }

/* ── Collection page (kanal, tag, cari, latest) ─────────────── */
body.theme-magazine .mag-collection-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px; padding: 20px 0 32px;
}
body.theme-magazine .mag-collection-header { margin-bottom: 18px; }
body.theme-magazine .mag-collection-header .mag-breadcrumb {
  font-size: 11px; color: var(--mag-muted); margin-bottom: 8px;
}
body.theme-magazine .mag-collection-header .mag-breadcrumb a { color: var(--mag-muted); }
body.theme-magazine .mag-collection-header .mag-breadcrumb a:hover { color: var(--mag-red); }
body.theme-magazine .mag-collection-header .mag-breadcrumb span { margin: 0 5px; }
body.theme-magazine .mag-collection-header h1 {
  font-size: 26px; font-weight: 800; margin: 0 0 4px;
  letter-spacing: -.02em; line-height: 1.2;
}
body.theme-magazine .mag-collection-header .mag-kicker {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--mag-red); margin-bottom: 4px;
}

body.theme-magazine .mag-list-item {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 14px; align-items: start;
  padding: 16px 0; border-bottom: 1px solid var(--mag-border);
}
body.theme-magazine .mag-list-item:first-child { padding-top: 0; }
body.theme-magazine .mag-list-item__thumb {
  width: 160px; height: 106px; border-radius: var(--mag-radius); overflow: hidden;
}
body.theme-magazine .mag-list-item__thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
body.theme-magazine .mag-list-item .mag-tag { margin-bottom: 6px; }
body.theme-magazine .mag-list-item h3 {
  margin: 0 0 6px; font-size: 16px; font-weight: 700; line-height: 1.3;
}
body.theme-magazine .mag-list-item h3 a { color: var(--mag-text); }
body.theme-magazine .mag-list-item h3 a:hover { color: var(--mag-red); }
body.theme-magazine .mag-list-item__excerpt {
  font-size: 13px; color: var(--mag-muted); line-height: 1.5; margin: 0;
}
body.theme-magazine .mag-list-item__meta { font-size: 11px; color: var(--mag-muted); margin-bottom: 4px; }

body.theme-magazine .mag-pagination { margin-top: 20px; text-align: center; }
body.theme-magazine .mag-pagination .pagination > li > a,
body.theme-magazine .mag-pagination .pagination > li > span {
  border-radius: 4px; margin: 0 2px; color: var(--mag-text);
}
body.theme-magazine .mag-pagination .pagination > .active > a,
body.theme-magazine .mag-pagination .pagination > .active > span {
  background: var(--mag-red); border-color: var(--mag-red); color: #fff;
}
body.theme-magazine .mag-pagination .pagination > li > a:hover {
  background: rgba(192,57,43,.08); color: var(--mag-red);
}

/* ── Article page ─────────────────────────────────────────── */
body.theme-magazine .mag-article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px; padding: 20px 0 32px;
}
body.theme-magazine .mag-article {
  background: var(--mag-white);
  border: 1px solid var(--mag-border);
  border-radius: var(--mag-radius);
  padding: 24px 28px;
}
body.theme-magazine .mag-article .mag-breadcrumb {
  font-size: 11px; color: var(--mag-muted); margin-bottom: 12px;
}
body.theme-magazine .mag-article .mag-breadcrumb a { color: var(--mag-muted); }
body.theme-magazine .mag-article .mag-breadcrumb a:hover { color: var(--mag-red); }
body.theme-magazine .mag-article .mag-breadcrumb span { margin: 0 5px; }
body.theme-magazine .mag-article h1 {
  font-size: 28px; font-weight: 800; line-height: 1.2;
  letter-spacing: -.03em; margin: 0 0 14px; color: var(--mag-text);
}
body.theme-magazine .mag-article__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 12px; color: var(--mag-muted);
  border-top: 1px solid var(--mag-border);
  border-bottom: 1px solid var(--mag-border);
  padding: 10px 0; margin-bottom: 20px;
}
body.theme-magazine .mag-article__meta .mag-tag { font-size: 10px; }
body.theme-magazine .mag-article__meta-author { font-weight: 700; color: var(--mag-text); }
body.theme-magazine .mag-article__meta-dot { color: var(--mag-border); }
body.theme-magazine .mag-article__hero {
  width: 100%; margin-bottom: 20px; border-radius: var(--mag-radius); overflow: hidden;
}
body.theme-magazine .mag-article__hero img {
  width: 100%; height: auto; max-height: 440px; object-fit: cover;
}
body.theme-magazine .mag-article__body { font-size: 17px; line-height: 1.78; color: #1a1a1a; }
body.theme-magazine .mag-article__body p { margin-bottom: 1.2em; }
body.theme-magazine .mag-article__body h2 { font-size: 20px; font-weight: 800; margin: 1.5em 0 .6em; }
body.theme-magazine .mag-article__body h3 { font-size: 17px; font-weight: 700; margin: 1.3em 0 .5em; }
body.theme-magazine .mag-article__body img { border-radius: 4px; }
body.theme-magazine .mag-article__body blockquote {
  border-left: 4px solid var(--mag-red);
  padding: 8px 16px; margin: 20px 0;
  font-style: italic; color: var(--mag-muted);
}
body.theme-magazine .mag-article__body table { width: 100%; border-collapse: collapse; }
body.theme-magazine .mag-article__body table td,
body.theme-magazine .mag-article__body table th {
  padding: 8px; border: 1px solid var(--mag-border); font-size: 14px;
}
body.theme-magazine .mag-article-pagination {
  margin-top: 24px; padding-top: 16px;
  border-top: 1px solid var(--mag-border);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
body.theme-magazine .mag-article-pagination a,
body.theme-magazine .mag-article-pagination span {
  padding: 5px 12px; border: 1px solid var(--mag-border);
  border-radius: 4px; font-size: 13px; color: var(--mag-text);
}
body.theme-magazine .mag-article-pagination .active,
body.theme-magazine .mag-article-pagination a:hover {
  background: var(--mag-red); color: #fff; border-color: var(--mag-red);
}

/* ── Author page ──────────────────────────────────────────── */
body.theme-magazine .mag-author-card {
  background: var(--mag-white); border: 1px solid var(--mag-border);
  border-radius: var(--mag-radius); padding: 20px;
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 20px;
}
body.theme-magazine .mag-author-card__photo {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; background: var(--mag-bg);
}
body.theme-magazine .mag-author-card__kicker {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--mag-red); margin-bottom: 4px;
}
body.theme-magazine .mag-author-card h1 { font-size: 22px; font-weight: 800; margin: 0 0 4px; }
body.theme-magazine .mag-author-card__job { font-size: 13px; color: var(--mag-muted); margin-bottom: 8px; }
body.theme-magazine .mag-author-card__bio { font-size: 14px; line-height: 1.6; color: #444; margin: 0; }
body.theme-magazine .mag-author-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
body.theme-magazine .mag-author-social a {
  font-size: 12px; padding: 4px 10px;
  border: 1px solid var(--mag-border); border-radius: 4px;
  color: var(--mag-text); background: var(--mag-bg);
}
body.theme-magazine .mag-author-social a:hover { background: var(--mag-red); color: #fff; border-color: var(--mag-red); }

/* ── Static page ──────────────────────────────────────────── */
body.theme-magazine .mag-static-wrap { padding: 20px 0 32px; }
body.theme-magazine .mag-static-box {
  background: var(--mag-white); border: 1px solid var(--mag-border);
  border-radius: var(--mag-radius); padding: 28px 32px;
}
body.theme-magazine .mag-static-box h1 { font-size: 26px; font-weight: 800; margin-bottom: 20px; }
body.theme-magazine .mag-static-body { font-size: 16px; line-height: 1.75; }
body.theme-magazine .mag-static-body p { margin-bottom: 1em; }

/* ── Footer ───────────────────────────────────────────────── */
body.theme-magazine .mag-footer {
  background: var(--mag-navy);
  padding: 28px 0 0; margin-top: 24px;
  border-top: 3px solid var(--mag-red);
}
body.theme-magazine .mag-footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px; padding-bottom: 24px;
}
body.theme-magazine .mag-footer__brand img {
  height: 40px; width: auto; margin-bottom: 10px;
}
body.theme-magazine .mag-footer__brand p {
  font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; margin: 0;
}
body.theme-magazine .mag-footer__col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.4);
  margin: 0 0 12px;
}
body.theme-magazine .mag-footer__col ul { list-style: none; margin: 0; padding: 0; }
body.theme-magazine .mag-footer__col ul li { margin-bottom: 6px; }
body.theme-magazine .mag-footer__col ul li a {
  font-size: 13px; color: rgba(255,255,255,.7);
}
body.theme-magazine .mag-footer__col ul li a:hover { color: #fff; }
body.theme-magazine .mag-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 0; text-align: center;
}
body.theme-magazine .mag-footer__bottom p {
  font-size: 11px; color: rgba(255,255,255,.35); margin: 0;
}

/* ── Alert box ────────────────────────────────────────────── */
body.theme-magazine .mag-alert {
  padding: 16px 20px; background: var(--mag-white);
  border: 1px solid var(--mag-border);
  border-radius: var(--mag-radius);
  color: var(--mag-muted); font-size: 14px;
}

/* ── 404 ──────────────────────────────────────────────────── */
body.theme-magazine .mag-404-wrap {
  text-align: center; padding: 80px 16px;
}
body.theme-magazine .mag-404-wrap h1 {
  font-size: 80px; font-weight: 900; color: var(--mag-red);
  line-height: 1; margin: 0 0 8px;
}
body.theme-magazine .mag-404-wrap p {
  font-size: 18px; color: var(--mag-muted); margin-bottom: 24px;
}
body.theme-magazine .mag-404-wrap a {
  display: inline-block; padding: 10px 24px;
  background: var(--mag-red); color: #fff; border-radius: 5px;
  font-weight: 700;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  body.theme-magazine .mag-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  body.theme-magazine .mag-mosaic__main img { height: 320px; }
  body.theme-magazine .mag-mosaic__side img { height: 157px; }
  body.theme-magazine .mag-home-body { grid-template-columns: 1fr; }
  body.theme-magazine .mag-home-sidebar { display: none; }
  body.theme-magazine .mag-collection-wrap { grid-template-columns: 1fr; }
  body.theme-magazine .mag-article-wrap { grid-template-columns: 1fr; }
  body.theme-magazine .mag-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body.theme-magazine .mag-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  body.theme-magazine .mag-mosaic__main { grid-row: auto; }
  body.theme-magazine .mag-mosaic__main img { height: 240px; }
  body.theme-magazine .mag-mosaic__side img { height: 180px; }
  body.theme-magazine .mag-list-item { grid-template-columns: 100px 1fr; }
  body.theme-magazine .mag-list-item__thumb { width: 100px; height: 68px; }
  body.theme-magazine .mag-list-item h3 { font-size: 14px; }
  body.theme-magazine .mag-article { padding: 16px; }
  body.theme-magazine .mag-article h1 { font-size: 22px; }
  body.theme-magazine .mag-article__body { font-size: 15px; }
  body.theme-magazine .mag-footer__inner { grid-template-columns: 1fr; }
  body.theme-magazine .mag-stream-item { grid-template-columns: 90px 1fr; }
  body.theme-magazine .mag-stream-item__thumb { width: 90px; height: 62px; }
}
