/*
 * Area Theme — Custom CSS
 * Legal/journalism portal for Laravel Sintesis
 * Prefix: ar- (scoped, no conflict)
 */

/* ── VARIABLES ── */
:root {
  --ar-bg:       #f2f2f0;
  --ar-bg2:      #e8e8e4;
  --ar-dark:     #1a1a1a;
  --ar-dark2:    #2a2a2a;
  --ar-gray:     #555555;
  --ar-gray2:    #888888;
  --ar-green:    #3a5a2a;
  --ar-green2:   #4a7a38;
  --ar-border:   #d0d0c8;
  --ar-white:    #ffffff;
  --ar-topbar:   #2e2e2e;
}

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

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

/* ── TOPBAR ── */
.ar-topbar {
  background: var(--ar-topbar);
  padding: 6px 0;
}
.ar-topbar-date {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .3px;
}
.ar-topbar-socials a {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  margin-left: 10px;
  text-decoration: none;
  transition: color .2s;
}
.ar-topbar-socials a:hover { color: #fff; }

/* ── HEADER ── */
.ar-header {
  background: var(--ar-bg);
  padding: 22px 0 16px;
  border-bottom: 1px solid var(--ar-border);
}
.ar-logo-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  text-decoration: none;
}
.ar-logo-svg { flex-shrink: 0; }
.ar-logo-img { width: 80px; height: 80px; object-fit: contain; flex-shrink: 0; }
.ar-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--ar-green);
  line-height: 1;
  letter-spacing: -2px;
}
.ar-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: var(--ar-gray);
  font-style: italic;
  margin-top: 4px;
}

/* ── NAVBAR ── */
.ar-main-nav {
  background: var(--ar-white);
  border-top: 1px solid var(--ar-border);
  border-bottom: 2px solid var(--ar-border);
  position: relative;
}

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

.ar-nav-arrow {
  position: absolute;
  top: 0; bottom: 0; width: 32px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; pointer-events: none;
  opacity: 0; transition: opacity .2s;
  font-size: 12px; color: var(--ar-gray);
}
.ar-nav-arrow.visible { opacity: 1; pointer-events: auto; cursor: pointer; }
.ar-nav-arrow-left  { left: 0;  background: linear-gradient(to right, #fff 50%, transparent); }
.ar-nav-arrow-right { right: 0; background: linear-gradient(to left,  #fff 50%, transparent); }

.ar-nav-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .8px;
  color: var(--ar-dark2);
  padding: 13px 16px;
  text-transform: uppercase;
  border-right: 1px solid var(--ar-border);
  transition: color .2s;
  text-decoration: none;
  white-space: nowrap;
  display: block;
}
.ar-nav-link:first-child { border-left: 1px solid var(--ar-border); }
.ar-nav-link:hover { color: var(--ar-green); }
.ar-nav-link.active { color: var(--ar-green); font-weight: 700; }

.ar-nav-search-btn {
  background: none;
  border: none;
  color: var(--ar-gray);
  font-size: 16px;
  padding: 13px 16px;
  cursor: pointer;
  transition: color .2s;
  flex-shrink: 0;
}
.ar-nav-search-btn:hover { color: var(--ar-green); }

/* ── MAIN GRID ── */
.ar-main-section { padding: 0; }

.ar-content-grid {
  display: grid;
  grid-template-columns: 480px 1fr 1fr;
  grid-template-rows: auto auto;
  border: 1px solid var(--ar-border);
  background: var(--ar-border);
  gap: 1px;
}

/* HERO CELL */
.ar-hero-cell {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  background: var(--ar-white);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background .15s;
}
.ar-hero-cell:hover { background: var(--ar-bg2); }
.ar-hero-thumb {
  width: 100%; height: 320px;
  background: linear-gradient(135deg, #1a2510, #2a3a18);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.ar-hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ar-hero-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(58,90,42,.88);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 4px 10px;
}
.ar-hero-body { padding: 18px 20px 20px; flex: 1; }
.ar-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--ar-dark);
  line-height: 1.3;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-hero-cell:hover .ar-hero-title { color: var(--ar-green); }
.ar-hero-excerpt {
  font-size: 13px;
  color: var(--ar-gray);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-hero-meta {
  font-size: 12px;
  color: var(--ar-gray2);
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
}
.ar-hero-meta i { color: var(--ar-green); margin-right: 2px; }

/* CELL HEADER */
.ar-cell-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ar-dark);
  padding: 14px 18px 12px;
  border-bottom: 2px solid var(--ar-dark);
  background: var(--ar-white);
}

/* SOROTAN UTAMA CELL */
.ar-sorotan-cell {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  background: var(--ar-white);
}
.ar-sorotan-item {
  display: flex; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ar-border);
  transition: background .15s;
  text-decoration: none;
}
.ar-sorotan-item:last-child { border-bottom: none; }
.ar-sorotan-item:hover { background: var(--ar-bg2); }
.ar-sorotan-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ar-green);
  flex-shrink: 0;
  line-height: 1.1;
  min-width: 24px;
}
.ar-sorotan-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ar-dark);
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-sorotan-item:hover .ar-sorotan-title { color: var(--ar-green); }
.ar-sorotan-src {
  font-size: 11px;
  color: var(--ar-gray2);
  font-style: italic;
}

/* ARTIKEL TERKINI CELL */
.ar-artikel-cell {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
  background: var(--ar-white);
  display: flex;
  flex-direction: column;
}
.ar-artikel-item {
  display: flex; gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--ar-border);
  transition: background .15s;
  text-decoration: none;
}
.ar-artikel-item:hover { background: var(--ar-bg2); }
.ar-artikel-num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ar-gray2);
  flex-shrink: 0;
  min-width: 22px;
  line-height: 1.1;
}
.ar-artikel-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ar-dark);
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-artikel-item:hover .ar-artikel-title { color: var(--ar-green); }
.ar-artikel-src {
  font-size: 11px;
  color: var(--ar-gray2);
  font-style: italic;
}

/* ANALISIS KHUSUS (inside artikel cell) */
.ar-analisis-header {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ar-dark);
  padding: 12px 18px 10px;
  border-bottom: 2px solid var(--ar-dark);
  border-top: 1px solid var(--ar-border);
}
.ar-analisis-thumb {
  width: 100%; height: 130px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; color: rgba(255,255,255,.1);
  overflow: hidden;
}
.ar-analisis-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ar-analisis-body { padding: 12px 18px 14px; }
.ar-analisis-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ar-dark);
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-analisis-link:hover .ar-analisis-title { color: var(--ar-green); }
.ar-analisis-link { text-decoration: none; display: block; transition: background .15s; }
.ar-analisis-link:hover { background: var(--ar-bg2); }
.ar-analisis-src {
  font-size: 11px;
  color: var(--ar-gray2);
  font-style: italic;
}

/* ── BOTTOM ROW ── */
.ar-bottom-row {
  grid-row: 2 / 3;
  grid-column: 1 / 4;
  background: var(--ar-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.ar-news-card {
  background: var(--ar-white);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background .15s;
}
.ar-news-card:hover { background: var(--ar-bg2); }
.ar-news-thumb {
  width: 100%; height: 160px;
  background: linear-gradient(135deg, #1a2510, #2a3a18);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; color: rgba(255,255,255,.1);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.ar-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ar-news-badge {
  position: absolute;
  bottom: 8px; left: 10px;
  background: rgba(58,90,42,.85);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 3px 8px;
}
.ar-news-body { padding: 12px 16px 14px; flex: 1; }
.ar-news-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ar-green);
  margin-bottom: 5px;
}
.ar-news-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ar-dark);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-news-card:hover .ar-news-title { color: var(--ar-green); }
.ar-news-meta {
  font-size: 11px;
  color: var(--ar-gray2);
  font-style: italic;
}

/* ── ARTICLE DETAIL ── */
.ar-breadcrumb {
  background: var(--ar-bg2);
  border-bottom: 1px solid var(--ar-border);
  padding: 9px 0;
}
.ar-breadcrumb ol { margin: 0; padding: 0; font-size: 13px; }
.ar-breadcrumb .breadcrumb-item a { color: var(--ar-gray); text-decoration: none; }
.ar-breadcrumb .breadcrumb-item a:hover { color: var(--ar-green); }
.ar-breadcrumb .breadcrumb-item.active { color: var(--ar-green); }
.ar-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--ar-border); }

.ar-article-wrap { padding: 32px 0 52px; }
.ar-article-main {
  background: var(--ar-white);
  border: 1px solid var(--ar-border);
  padding: 32px;
}
.ar-article-cat-badge {
  display: inline-block;
  background: var(--ar-green);
  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;
}
.ar-article-cat-badge:hover { background: var(--ar-green2); color: #fff; }
.ar-article-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700;
  color: var(--ar-dark); line-height: 1.25;
  margin-bottom: 14px;
}
.ar-article-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: var(--ar-gray2);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ar-border);
  margin-bottom: 20px;
  align-items: center;
}
.ar-article-meta i { color: var(--ar-green); margin-right: 4px; }

.ar-sentiment {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .5px;
}
.ar-sentiment-positive { background: rgba(58,90,42,.1); color: var(--ar-green); border: 1px solid rgba(58,90,42,.3); }
.ar-sentiment-negative { background: rgba(180,40,40,.1); color: #b42828; border: 1px solid rgba(180,40,40,.3); }
.ar-sentiment-neutral  { background: rgba(136,136,136,.1); color: var(--ar-gray2); border: 1px solid var(--ar-border); }

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

.ar-ringkasan {
  border-left: 4px solid var(--ar-green);
  padding: 12px 18px;
  background: rgba(58,90,42,.05);
  margin-bottom: 20px;
  font-style: italic;
  color: var(--ar-gray);
  font-size: 14px; line-height: 1.7;
}

.ar-article-body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px; line-height: 1.9;
  color: var(--ar-dark);
}
.ar-article-body h1, .ar-article-body h2, .ar-article-body h3,
.ar-article-body h4, .ar-article-body h5 {
  font-family: 'Playfair Display', serif;
  color: var(--ar-dark); margin: 1.4em 0 .6em;
}
.ar-article-body p { margin-bottom: 1em; }
.ar-article-body img { max-width: 100%; border: 1px solid var(--ar-border); }
.ar-article-body a { color: var(--ar-green); }
.ar-article-body blockquote {
  border-left: 4px solid var(--ar-green);
  padding: 10px 20px;
  margin: 1.2em 0;
  background: rgba(58,90,42,.04);
  font-style: italic;
  color: var(--ar-gray);
}

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

.ar-entities-block {
  background: rgba(58,90,42,.05);
  border: 1px solid var(--ar-border);
  border-left: 4px solid var(--ar-green2);
  padding: 14px 18px;
  margin-top: 18px; font-size: 13px; color: var(--ar-gray);
}
.ar-entities-title {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; color: var(--ar-green);
  margin-bottom: 8px;
}
.ar-entities-block div { margin-bottom: 4px; }
.ar-entities-block strong { color: var(--ar-dark); }

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

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

/* Sidebar */
.ar-sidebar-block {
  background: var(--ar-white);
  border: 1px solid var(--ar-border);
  overflow: hidden;
  margin-bottom: 20px;
}
.ar-sidebar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--ar-dark);
  padding: 12px 16px;
  border-bottom: 2px solid var(--ar-dark);
  background: var(--ar-white);
}
.ar-sidebar-item {
  display: flex; gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--ar-border);
  text-decoration: none;
  transition: background .15s;
}
.ar-sidebar-item:last-child { border-bottom: none; }
.ar-sidebar-item:hover { background: var(--ar-bg2); }
.ar-sidebar-thumb {
  width: 64px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, #1a2510, #2a3a18);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: rgba(255,255,255,.1);
  overflow: hidden;
}
.ar-sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ar-sidebar-art-title {
  font-size: 13px; font-weight: 600;
  color: var(--ar-dark); line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-sidebar-item:hover .ar-sidebar-art-title { color: var(--ar-green); }
.ar-sidebar-date { font-size: 11px; color: var(--ar-gray2); margin-top: 3px; font-style: italic; }
.ar-sidebar-cat-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--ar-border);
  text-decoration: none;
  font-size: 13px; font-weight: 600;
  color: var(--ar-dark2);
  transition: background .15s, color .2s;
}
.ar-sidebar-cat-link:last-child { border-bottom: none; }
.ar-sidebar-cat-link:hover { background: var(--ar-bg2); color: var(--ar-green); }
.ar-sidebar-cat-link i { color: var(--ar-green); font-size: 11px; }

/* ── CATEGORY / SEARCH PAGE ── */
.ar-page-header {
  background: var(--ar-white);
  border: 1px solid var(--ar-border);
  border-left: 4px solid var(--ar-green);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.ar-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--ar-dark);
  display: flex; align-items: center; gap: 10px;
}
.ar-page-title i { color: var(--ar-green); font-size: 20px; }
.ar-page-count { font-size: 13px; color: var(--ar-gray2); margin-top: 4px; font-style: italic; }

/* Article row list */
.ar-art-row {
  background: var(--ar-white);
  border: 1px solid var(--ar-border);
  border-bottom: none;
  display: flex;
  text-decoration: none;
  transition: background .15s;
  overflow: hidden;
}
.ar-art-row:last-child { border-bottom: 1px solid var(--ar-border); }
.ar-art-row:hover { background: var(--ar-bg2); }
.ar-art-row-thumb {
  width: 160px; flex-shrink: 0;
  background: linear-gradient(135deg, #1a2510, #2a3a18);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: rgba(255,255,255,.08);
  overflow: hidden;
}
.ar-art-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ar-art-row-body { padding: 14px 18px; flex: 1; min-width: 0; }
.ar-art-row-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; color: var(--ar-green); margin-bottom: 5px;
}
.ar-art-row-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: var(--ar-dark); line-height: 1.3;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-art-row:hover .ar-art-row-title { color: var(--ar-green); }
.ar-art-row-excerpt {
  font-size: 13px; color: var(--ar-gray);
  line-height: 1.5; margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ar-art-row-meta { font-size: 12px; color: var(--ar-gray2); display: flex; gap: 12px; flex-wrap: wrap; font-style: italic; }

/* ── PAGINATION ── */
.ar-pagination .page-item .page-link {
  background: var(--ar-white); border-color: var(--ar-border);
  color: var(--ar-gray); border-radius: 0;
}
.ar-pagination .page-item.active .page-link {
  background: var(--ar-green); border-color: var(--ar-green); color: #fff;
}
.ar-pagination .page-item .page-link:hover {
  background: var(--ar-bg2); border-color: var(--ar-green); color: var(--ar-green);
}
.ar-pagination .page-item.disabled .page-link {
  background: var(--ar-bg2); border-color: var(--ar-border); color: rgba(136,136,136,.4);
}

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

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

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

/* ── FOOTER ── */
.ar-footer {
  background: var(--ar-bg);
  border-top: 2px solid var(--ar-border);
  padding: 16px 0;
}
.ar-footer-links a {
  font-size: 13px; font-weight: 600;
  letter-spacing: .8px;
  color: var(--ar-dark2);
  text-decoration: none;
  margin-right: 24px;
  text-transform: uppercase;
  transition: color .2s;
}
.ar-footer-links a:hover { color: var(--ar-green); }
.ar-footer-copy {
  font-size: 12px;
  color: var(--ar-gray2);
  text-align: center;
}
.ar-footer-socials a {
  color: var(--ar-gray);
  font-size: 18px;
  margin-left: 12px;
  text-decoration: none;
  transition: color .2s;
}
.ar-footer-socials a:hover { color: var(--ar-green); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ar-content-grid {
    grid-template-columns: 380px 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .ar-content-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .ar-hero-cell   { grid-column: 1 / 3; grid-row: 1 / 2; }
  .ar-sorotan-cell{ grid-column: 1 / 2; grid-row: 2 / 3; }
  .ar-artikel-cell{ grid-column: 2 / 3; grid-row: 2 / 3; }
  .ar-bottom-row  {
    grid-column: 1 / 3; grid-row: 3 / 4;
    grid-template-columns: 1fr 1fr;
  }
  .ar-hero-thumb { height: 260px; }
}
@media (max-width: 600px) {
  .ar-content-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ar-hero-cell   { grid-column: 1; grid-row: 1; }
  .ar-sorotan-cell{ grid-column: 1; grid-row: 2; }
  .ar-artikel-cell{ grid-column: 1; grid-row: 3; }
  .ar-bottom-row  {
    grid-column: 1; grid-row: 4;
    grid-template-columns: 1fr;
  }
  .ar-logo-name { font-size: 52px; }
  .ar-article-title { font-size: 22px; }
  .ar-art-row-thumb { width: 110px; }
}
