/* ==========================================================================
   SUDUTRIAU — KOMPAS.COM V2 DESIGN SYSTEM (REVERSE ENGINEERED 99%+)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700;800;900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
  /* Kompas Color Tokens */
  --k-red: #e01e2d;
  --k-red-dark: #b8121f;
  --k-red-light: #fff0f1;
  --k-black: #111111;
  --k-header-bg: #1a1a1a;
  --k-header-sub: #222222;
  --k-navy: #00418f;
  --k-blue: #0161b8;
  --k-blue-light: #eef6ff;
  --k-orange: #f26522;
  --k-green: #0ea664;
  --k-ink-900: #1a1a1a;
  --k-ink-800: #2c2c2c;
  --k-ink-700: #4a4a4a;
  --k-ink-500: #757575;
  --k-ink-400: #9e9e9e;
  --k-border: #e6e6e6;
  --k-border-light: #f0f0f0;
  --k-bg-body: #ffffff;
  --k-bg-gray: #f8f9fa;
  --k-bg-card: #ffffff;
  --k-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --k-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --k-shadow-lg: 0 8px 24px rgba(0,0,0,0.14);

  /* Typography */
  --font-base: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-title: 'Roboto Condensed', 'Arial Narrow', sans-serif;

  /* Container width */
  --wrap-max: 1240px;
  --header-height: 76px;
  --nav-height: 48px;
}

/* ==================== DARK MODE ==================== */
[data-theme="dark"] {
  --k-black: #0b0b0b;
  --k-header-bg: #141414;
  --k-header-sub: #1f1f1f;
  --k-ink-900: #f0f0f0;
  --k-ink-800: #dcdcdc;
  --k-ink-700: #b5b5b5;
  --k-ink-500: #888888;
  --k-ink-400: #666666;
  --k-border: #2e2e2e;
  --k-border-light: #242424;
  --k-bg-body: #161616;
  --k-bg-gray: #1e1e1e;
  --k-bg-card: #1f1f1f;
  --k-red-light: #2c1618;
  --k-blue-light: #13243a;
  --k-shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --k-shadow-md: 0 4px 12px rgba(0,0,0,0.6);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-base);
  color: var(--k-ink-900);
  background-color: var(--k-bg-body);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

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

button, input, textarea {
  font-family: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--wrap-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Kompas Grid Framework */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

[class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
}

.col-bs10-10 { width: 100%; }
.col-bs10-7  { width: 68%; }
.col-bs10-5  { width: 50%; }
.col-bs10-3  { width: 32%; }

.col-bs12-12 { width: 100%; }
.col-bs12-8  { width: 66.666%; }
.col-bs12-6  { width: 50%; }
.col-bs12-4  { width: 33.333%; }
.col-bs12-3  { width: 25%; }

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.top-utility-bar {
  background: var(--k-header-bg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: #a8a8a8;
  height: 32px;
  display: flex;
  align-items: center;
}

.top-utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-date {
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.utility-nav-links {
  display: flex;
  gap: 16px;
}

.utility-nav-links a {
  color: #ccc;
  font-weight: 500;
}

.utility-nav-links a:hover {
  color: #fff;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-tag {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.utility-badge {
  background: var(--k-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   MAIN HEADER (BLACK / DARK)
   ========================================================================== */
.header-main {
  background: var(--k-header-bg);
  color: #fff;
  padding: 16px 0;
  position: relative;
  z-index: 120;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Logo */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: #ffffff;
  line-height: 1;
}

.brand-logo .brand-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: var(--k-red);
  border-radius: 2px;
  margin-left: 3px;
  vertical-align: 4px;
}

.brand-logo .brand-tld {
  color: var(--k-red);
  font-size: 26px;
  font-weight: 800;
  margin-left: 1px;
}

.brand-motto {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888888;
  font-weight: 500;
  margin-left: 8px;
  padding-left: 10px;
  border-left: 1px solid #333;
  display: none;
}

@media(min-width: 1024px) {
  .brand-motto { display: block; }
}

/* Search Box with Autocomplete */
.search-container {
  flex: 0 1 420px;
  position: relative;
}

.header-search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 3px 6px 3px 18px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.header-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: #222;
  background: transparent;
  padding: 6px 0;
}

.header-search-input::placeholder {
  color: #888;
  font-size: 13.5px;
}

.header-search-clear {
  display: none;
  background: none;
  border: none;
  color: #999;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 6px;
}

.header-search-submit {
  border: none;
  background: var(--k-red);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
  flex-shrink: 0;
}

.header-search-submit:hover {
  background: var(--k-red-dark);
}

/* Search Suggestion Dropdown */
.search-suggest-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--k-bg-card);
  color: var(--k-ink-900);
  border: 1px solid var(--k-border);
  border-radius: 12px;
  box-shadow: var(--k-shadow-lg);
  padding: 16px;
  display: none;
  z-index: 1000;
}

.search-suggest-dropdown.active {
  display: block;
}

.suggest-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--k-ink-500);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.suggest-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.suggest-pill {
  font-size: 12.5px;
  background: var(--k-bg-gray);
  border: 1px solid var(--k-border);
  padding: 5px 12px;
  border-radius: 20px;
  color: var(--k-ink-800);
  cursor: pointer;
  transition: all 0.15s;
}

.suggest-pill:hover {
  background: var(--k-red-light);
  border-color: var(--k-red);
  color: var(--k-red);
}

/* Header Utilities (Plus, Store, Mediopods, SSO User) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 10px;
  border-radius: 20px;
  transition: background 0.15s;
}

.action-btn:hover {
  background: rgba(255,255,255,0.1);
}

.action-btn.btn-plus {
  background: linear-gradient(135deg, #e01e2d 0%, #b8121f 100%);
  color: #fff;
  padding: 6px 14px;
  font-weight: 700;
}

.action-btn.btn-plus:hover {
  filter: brightness(1.1);
}

/* SSO Dropdown */
.sso-user-wrapper {
  position: relative;
}

.sso-user-trigger {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 1.5px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: border-color 0.15s;
}

.sso-user-trigger:hover {
  border-color: var(--k-red);
}

.sso-dropdown-board {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  background: var(--k-bg-card);
  color: var(--k-ink-900);
  border: 1px solid var(--k-border);
  border-radius: 10px;
  box-shadow: var(--k-shadow-lg);
  padding: 12px 0;
  display: none;
  z-index: 1000;
}

.sso-dropdown-board.show {
  display: block;
}

.sso-menu-list {
  list-style: none;
}

.sso-menu-item a, .sso-menu-item button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--k-ink-800);
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}

.sso-menu-item a:hover, .sso-menu-item button:hover {
  background: var(--k-bg-gray);
  color: var(--k-red);
}

.sso-divider {
  height: 1px;
  background: var(--k-border);
  margin: 6px 0;
}

.theme-switch-group {
  padding: 8px 18px;
}

.theme-switch-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--k-ink-500);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.theme-toggle-btns {
  display: flex;
  gap: 4px;
  background: var(--k-bg-gray);
  padding: 3px;
  border-radius: 6px;
  border: 1px solid var(--k-border);
}

.theme-toggle-btn {
  flex: 1;
  padding: 5px 8px;
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: var(--k-ink-700);
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}

.theme-toggle-btn.active {
  background: var(--k-bg-card);
  color: var(--k-red);
  box-shadow: var(--k-shadow-sm);
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* ==========================================================================
   NAVIGATION BAR & MEGA MENUS
   ========================================================================== */
.main-nav-bar {
  background: var(--k-bg-card);
  border-top: 3px solid var(--k-red);
  border-bottom: 1px solid var(--k-border);
  position: sticky;
  top: 0;
  z-index: 110;
  transition: all 0.25s ease;
}

.main-nav-bar.sticky-scrolled {
  box-shadow: var(--k-shadow-md);
}

.main-nav-bar .container {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-sticky-logo {
  display: none;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 900;
  color: var(--k-ink-900);
  margin-right: 18px;
  padding-right: 18px;
  border-right: 1px solid var(--k-border);
  flex-shrink: 0;
}

.nav-sticky-logo .dot {
  color: var(--k-red);
}

.main-nav-bar.sticky-scrolled .nav-sticky-logo {
  display: inline-block;
}

.nav-list {
  display: flex;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}

.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 13px 14px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--k-ink-900);
  letter-spacing: 0.2px;
  position: relative;
  transition: color 0.15s ease;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--k-red);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 3px;
  background: transparent;
  transition: background 0.15s;
}

.nav-item:hover > .nav-link::after, .nav-item.active .nav-link::after {
  background: var(--k-red);
}

.nav-badge-new {
  background: var(--k-red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 2px;
  vertical-align: 1px;
}

/* Mega Menu Subnav */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--k-bg-card);
  border: 1px solid var(--k-border);
  border-top: none;
  box-shadow: var(--k-shadow-lg);
  padding: 18px 24px;
  display: none;
  min-width: 480px;
  z-index: 500;
}

.nav-item:hover .mega-menu {
  display: block;
}

.mega-menu-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mega-menu-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--k-ink-500);
  border-bottom: 1px solid var(--k-border);
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.mega-sublink {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--k-ink-800);
  padding: 5px 0;
}

.mega-sublink:hover {
  color: var(--k-red);
  padding-left: 4px;
}

.mega-sublink.hot {
  color: var(--k-red);
}

/* ==========================================================================
   TRENDING BAR (TICKER)
   ========================================================================== */
.trending-strip {
  background: var(--k-bg-card);
  border-bottom: 1px solid var(--k-border);
}

.trending-strip .container {
  display: flex;
  align-items: center;
  height: 44px;
  overflow: hidden;
  gap: 16px;
}

.trending-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--k-red);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.trending-tags-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  flex: 1;
}

.trending-tags-wrapper::-webkit-scrollbar {
  display: none;
}

.trending-tag-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--k-ink-800);
  cursor: pointer;
  transition: color 0.15s;
}

.trending-tag-item:hover {
  color: var(--k-red);
}

.trending-controls {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.trend-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--k-border);
  background: var(--k-bg-gray);
  color: var(--k-ink-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}

.trend-arrow:hover {
  background: var(--k-red);
  color: #fff;
  border-color: var(--k-red);
}

/* ==========================================================================
   LIVING ASSISTANCE WIDGET BOX
   ========================================================================== */
.living-assistance-strip {
  background: var(--k-bg-gray);
  border-bottom: 1px solid var(--k-border);
  padding: 10px 0;
}

.widget-box-wrapper {
  background: var(--k-bg-card);
  border: 1px solid var(--k-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.widget-box-header {
  background: var(--k-blue);
  color: #ffffff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.widget-items-carousel {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.widget-items-carousel::-webkit-scrollbar {
  display: none;
}

.widget-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-right: 1px solid var(--k-border);
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s;
}

.widget-cell:hover {
  background: var(--k-bg-gray);
}

.widget-cell-icon {
  font-size: 18px;
}

.widget-cell-meta {
  display: flex;
  flex-direction: column;
}

.widget-cell-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--k-ink-500);
  text-transform: uppercase;
}

.widget-cell-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--k-ink-900);
  display: flex;
  align-items: center;
  gap: 6px;
}

.widget-cell-sub {
  font-size: 11px;
  color: var(--k-green);
  font-weight: 600;
}

/* ==========================================================================
   HERO / MAIN HEADLINES (70 / 30 GRID)
   ========================================================================== */
.hero-section {
  padding: 24px 0 16px;
}

.hero-main-card {
  position: relative;
  margin-bottom: 24px;
}

.hero-kicker {
  display: inline-block;
  color: var(--k-red);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--k-ink-900);
}

.hero-title a:hover {
  color: var(--k-red);
}

.hero-standfirst {
  font-size: 16px;
  color: var(--k-ink-700);
  line-height: 1.45;
  margin-bottom: 12px;
}

.hero-meta {
  font-size: 12.5px;
  color: var(--k-ink-500);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.hero-thumb img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-thumb:hover img {
  transform: scale(1.02);
}

.hero-caption {
  font-size: 12px;
  color: var(--k-ink-500);
  margin-top: 8px;
  font-style: italic;
}

/* Secondary Headline Grid */
.secondary-headlines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--k-border);
}

.sec-headline-card {
  display: flex;
  gap: 14px;
}

.sec-headline-thumb {
  width: 130px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.sec-headline-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.sec-headline-thumb:hover img {
  transform: scale(1.04);
}

.sec-headline-info {
  display: flex;
  flex-direction: column;
}

.sec-headline-channel {
  font-size: 11px;
  font-weight: 700;
  color: var(--k-red);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sec-headline-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--k-ink-900);
}

.sec-headline-title a:hover {
  color: var(--k-red);
}

/* ==========================================================================
   SIDEBAR: TERPOPULER (1 TO 5)
   ========================================================================== */
.sidebar-panel {
  border: 1px solid var(--k-border);
  border-top: 3px solid var(--k-red);
  border-radius: 6px;
  background: var(--k-bg-card);
  margin-bottom: 24px;
  overflow: hidden;
}

.sidebar-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--k-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 800;
  color: var(--k-ink-900);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.terpopuler-list {
  list-style: none;
}

.pop-item {
  display: flex;
  padding: 12px 16px;
  border-bottom: 1px solid var(--k-border-light);
  gap: 14px;
  align-items: flex-start;
  transition: background 0.15s;
}

.pop-item:last-child {
  border-bottom: none;
}

.pop-item:hover {
  background: var(--k-bg-gray);
}

.pop-num {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 900;
  color: var(--k-red);
  line-height: 1;
  width: 24px;
  flex-shrink: 0;
  text-align: center;
}

.pop-content {
  flex: 1;
}

.pop-title {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--k-ink-900);
  margin-bottom: 4px;
}

.pop-title a:hover {
  color: var(--k-red);
}

.pop-channel {
  font-size: 11px;
  font-weight: 700;
  color: var(--k-ink-500);
  text-transform: uppercase;
}

.sidebar-footer-link {
  display: block;
  padding: 10px 16px;
  background: var(--k-bg-gray);
  color: var(--k-red);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  border-top: 1px solid var(--k-border);
}

.sidebar-footer-link:hover {
  background: var(--k-red-light);
}

/* ==========================================================================
   SOROTAN (SPOTLIGHT) & VIDEOS
   ========================================================================== */
.section-wrapper {
  padding: 24px 0;
  border-top: 1px solid var(--k-border);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--k-ink-900);
  padding-bottom: 8px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: var(--k-navy);
}

.section-title .bar {
  width: 5px;
  height: 22px;
  background: var(--k-red);
  border-radius: 2px;
}

.section-more-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--k-red);
}

.section-more-link:hover {
  text-decoration: underline;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.spotlight-card {
  display: flex;
  flex-direction: column;
}

.spotlight-thumb {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
  aspect-ratio: 16/9;
}

.spotlight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.spotlight-thumb:hover img {
  transform: scale(1.04);
}

.spotlight-channel {
  font-size: 11px;
  font-weight: 700;
  color: var(--k-red);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.spotlight-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--k-ink-900);
}

.spotlight-title a:hover {
  color: var(--k-red);
}

/* ==========================================================================
   VIDEO CAROUSEL (KGNOW / MULTIMEDIA STRIP)
   ========================================================================== */
.video-section-box {
  background: var(--k-black);
  color: #fff;
  border-radius: 10px;
  padding: 24px;
  margin: 30px 0;
}

.video-section-box .section-head {
  border-bottom-color: #333;
}

.video-section-box .section-title {
  color: #fff;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 20px;
}

.video-featured {
  position: relative;
}

.video-player-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.video-player-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(224, 30, 45, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.duration-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

.video-title-main {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  line-height: 1.3;
}

/* ==========================================================================
   BERITA TERKINI (NEWS FEED STREAM)
   ========================================================================== */
.latest-news-stream {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feed-article-item {
  display: flex;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--k-border);
}

.feed-article-thumb {
  width: 240px;
  height: 145px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.feed-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.feed-article-thumb:hover img {
  transform: scale(1.03);
}

.feed-article-content {
  flex: 1;
}

.feed-article-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 6px;
}

.feed-channel-name {
  font-weight: 700;
  color: var(--k-red);
  text-transform: uppercase;
}

.feed-time-ago {
  color: var(--k-ink-500);
}

.feed-article-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--k-ink-900);
  margin-bottom: 8px;
}

.feed-article-title a:hover {
  color: var(--k-red);
}

.feed-article-lead {
  font-size: 14px;
  color: var(--k-ink-700);
  line-height: 1.45;
}

.load-more-container {
  text-align: center;
  padding: 24px 0;
}

.btn-load-more {
  display: inline-block;
  background: var(--k-bg-card);
  border: 1px solid var(--k-border);
  color: var(--k-ink-900);
  padding: 12px 36px;
  border-radius: 25px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--k-shadow-sm);
  transition: all 0.2s;
}

.btn-load-more:hover {
  background: var(--k-red);
  color: #fff;
  border-color: var(--k-red);
}

/* ==========================================================================
   VIK (VISUAL INTERAKTIF) SECTION
   ========================================================================== */
.vik-banner-section {
  background: #111418;
  color: #fff;
  padding: 36px 0;
  margin: 30px 0;
  border-radius: 12px;
}

.vik-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.vik-logo-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vik-logo-title .badge {
  background: var(--k-red);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.vik-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vik-card {
  background: #1c2026;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2d333b;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.vik-card:hover {
  transform: translateY(-4px);
}

.vik-card-thumb {
  height: 150px;
  position: relative;
}

.vik-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vik-card-content {
  padding: 14px;
  flex: 1;
}

.vik-card-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.vik-card-date {
  font-size: 12px;
  color: #8b949e;
}

/* ==========================================================================
   ARTICLE PAGE STYLING (FIDELITY 99%)
   ========================================================================== */
.breadcrumb-container {
  padding: 18px 0 10px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--k-red);
  list-style: none;
}

.breadcrumb-sep {
  color: var(--k-ink-400);
  font-weight: 400;
}

.breadcrumb-current {
  color: var(--k-ink-500);
  font-weight: 500;
}

/* Article Headline & Header */
.article-header {
  padding-bottom: 14px;
}

.article-title-main {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--k-ink-900);
  margin-bottom: 16px;
}

/* Author & Editorial Credit Block */
.editorial-credit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--k-border);
  border-bottom: 1px solid var(--k-border);
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.credit-authors-group {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.credit-avatars {
  display: flex;
  align-items: center;
}

.avatar-initial {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--k-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--k-bg-body);
  margin-left: -8px;
}

.avatar-initial:first-child {
  margin-left: 0;
  background: var(--k-red);
}

.credit-names-info {
  display: flex;
  flex-direction: column;
}

.credit-names {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--k-ink-900);
}

.credit-badge-team {
  font-size: 11.5px;
  color: var(--k-ink-500);
}

.article-publish-time {
  font-size: 13px;
  color: var(--k-ink-500);
}

/* Social Reaction Action Bar */
.social-reaction-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 24px;
  flex-wrap: wrap;
}

.btn-reaction {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--k-border);
  background: var(--k-bg-card);
  color: var(--k-ink-800);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-reaction:hover {
  border-color: var(--k-red);
  color: var(--k-red);
  background: var(--k-red-light);
}

.btn-reaction.active {
  background: var(--k-red);
  border-color: var(--k-red);
  color: #fff;
}

.btn-reaction.btn-google-add {
  background: #f8f9fa;
  border-color: #dadce0;
  color: #3c4043;
}

.btn-reaction.btn-google-add:hover {
  background: #f1f3f4;
  color: #202124;
}

/* Photo Cover & Caption */
.article-cover-wrapper {
  margin-bottom: 24px;
}

.article-cover-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.article-cover-frame img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.btn-expand-photo {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-expand-photo:hover {
  background: var(--k-red);
}

.article-cover-caption {
  font-size: 12.5px;
  color: var(--k-ink-500);
  margin-top: 8px;
  line-height: 1.4;
}

.caption-author {
  font-weight: 600;
  color: var(--k-ink-700);
}

/* Article Body Typography */
.article-body-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--k-ink-800);
}

.article-body-content p {
  margin-bottom: 22px;
}

.article-body-content .dateline {
  font-weight: 700;
  color: var(--k-ink-900);
}

.inline-baca-juga {
  background: var(--k-bg-gray);
  border-left: 4px solid var(--k-navy);
  padding: 12px 16px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
  font-size: 16px;
}

.inline-baca-juga strong {
  color: var(--k-red);
  margin-right: 6px;
}

.inline-baca-juga a {
  color: var(--k-navy);
  font-weight: 700;
}

.inline-baca-juga a:hover {
  text-decoration: underline;
}

.article-body-content blockquote.editorial-quote {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--k-ink-900);
  border-left: 4px solid var(--k-red);
  padding: 12px 0 12px 20px;
  margin: 30px 0;
  font-style: italic;
}

/* In-body Recommender Card */
.inbody-recommender {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--k-border);
  background: var(--k-blue-light);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 28px 0;
  gap: 16px;
}

.recommender-info {
  flex: 1;
}

.recommender-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--k-blue);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.recommender-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--k-ink-900);
  line-height: 1.3;
}

.recommender-thumb {
  width: 90px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.recommender-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* AI Assistant Box: SARAH (Replica of Kompas KARIN AI) */
.ai-assistant-card {
  border: 1px solid var(--k-border);
  border-radius: 12px;
  background: var(--k-bg-card);
  box-shadow: var(--k-shadow-md);
  margin: 32px 0;
  overflow: hidden;
}

.ai-assistant-head {
  background: linear-gradient(135deg, #0161b8 0%, #00418f 100%);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-bot-badge {
  background: #ffcc00;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
}

.ai-assistant-body {
  padding: 20px;
}

.ai-suggest-prompt-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.ai-suggest-chip {
  background: var(--k-bg-gray);
  border: 1px solid var(--k-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--k-ink-800);
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
}

.ai-suggest-chip:hover {
  background: var(--k-blue-light);
  border-color: var(--k-blue);
  color: var(--k-blue);
}

.ai-output-box {
  background: var(--k-bg-gray);
  border-radius: 8px;
  padding: 14px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.ai-input-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.ai-input-field {
  flex: 1;
  border: 1px solid var(--k-border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13.5px;
  background: var(--k-bg-card);
  color: var(--k-ink-900);
  outline: none;
}

.ai-submit-btn {
  background: var(--k-blue);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* Article Tags */
.article-tags-wrap {
  padding: 24px 0 16px;
  border-top: 1px solid var(--k-border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tags-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--k-ink-700);
  text-transform: uppercase;
}

.tag-pill {
  font-size: 12.5px;
  background: var(--k-bg-gray);
  border: 1px solid var(--k-border);
  padding: 5px 12px;
  border-radius: 20px;
  color: var(--k-ink-800);
  transition: all 0.15s;
}

.tag-pill:hover {
  background: var(--k-red);
  border-color: var(--k-red);
  color: #fff;
}

/* Comments Section */
.comments-section {
  padding: 30px 0;
  border-top: 1px solid var(--k-border);
}

.comment-form-box {
  background: var(--k-bg-gray);
  border: 1px solid var(--k-border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.comment-textarea {
  width: 100%;
  min-height: 80px;
  border: 1px solid var(--k-border);
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  background: var(--k-bg-card);
  color: var(--k-ink-900);
  resize: vertical;
  margin-bottom: 10px;
}

.comment-post-btn {
  background: var(--k-red);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment-item {
  border-bottom: 1px solid var(--k-border-light);
  padding-bottom: 14px;
}

.comment-user-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--k-ink-900);
}

.comment-time {
  font-size: 11.5px;
  color: var(--k-ink-500);
  margin-left: 8px;
}

.comment-text {
  font-size: 13.5px;
  color: var(--k-ink-800);
  margin-top: 4px;
}

/* ==========================================================================
   MODALS (REDATION CREDITS, PHOTO EXPAND, SHARE MODAL)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: var(--k-bg-card);
  color: var(--k-ink-900);
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--k-shadow-lg);
  overflow: hidden;
  position: relative;
  animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--k-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--k-ink-500);
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 20px;
  max-height: 75vh;
  overflow-y: auto;
}

.credit-modal-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--k-border-light);
}

.credit-modal-author:last-child {
  border-bottom: none;
}

.author-role-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--k-red);
}

/* Image Lightbox Modal */
.image-lightbox-modal .modal-card {
  max-width: 900px;
  background: #000;
}

.image-lightbox-modal img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

/* Share Modal Options */
.share-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
  margin-top: 10px;
}

.share-btn-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  background: var(--k-bg-gray);
  border: 1px solid var(--k-border);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s;
}

.share-btn-tile:hover {
  transform: translateY(-2px);
}

.share-btn-tile.wa { color: #25d366; }
.share-btn-tile.fb { color: #1877f2; }
.share-btn-tile.x  { color: #111; }
.share-btn-tile.copy { color: var(--k-red); }

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--k-black);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--k-shadow-lg);
  display: none;
  z-index: 3000;
  border-left: 4px solid var(--k-red);
}

.toast-notice.show {
  display: block;
  animation: toastSlide 0.3s ease-out;
}

@keyframes toastSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   FOOTER (KOMPAS.COM 4-COLUMN OFFICIAL FORMAT)
   ========================================================================== */
.footer-main {
  background: #0c0d0e;
  color: #a8a8a8;
  margin-top: 40px;
  padding-top: 44px;
  border-top: 3px solid var(--k-red);
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #222;
}

.footer-brand-logo {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.footer-brand-logo .dot {
  width: 8px;
  height: 8px;
  background: var(--k-red);
  margin-left: 3px;
  border-radius: 2px;
}

.footer-tagline {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1c1f24;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.15s;
}

.social-icon-circle:hover {
  background: var(--k-red);
  color: #fff;
}

.footer-apps-box {
  margin-bottom: 20px;
}

.footer-label-sm {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

.app-badges {
  display: flex;
  gap: 10px;
}

.app-badge-btn {
  background: #1f2329;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.app-badge-btn:hover {
  border-color: #666;
}

.footer-newsletter-box {
  background: #16191d;
  border: 1px solid #282c33;
  border-radius: 8px;
  padding: 16px;
}

.footer-newsletter-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.footer-newsletter-sub {
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}

.newsletter-form-row {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  background: #0f1114;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  outline: none;
}

.newsletter-submit-btn {
  background: var(--k-red);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

/* Footer Navigation Links */
.footer-menu-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  border-left: 3px solid var(--k-red);
  padding-left: 8px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  list-style: none;
}

.footer-links-grid a {
  font-size: 13px;
  color: #999;
  display: inline-block;
  padding: 2px 0;
}

.footer-links-grid a:hover {
  color: var(--k-red);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12px;
  color: #666;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}

.footer-legal-links a {
  color: #888;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-copyright {
  line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media(max-width: 1024px) {
  .col-bs10-7, .col-bs10-3 {
    width: 100%;
  }

  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vik-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media(max-width: 768px) {
  .top-utility-bar {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-actions .action-btn:not(.btn-plus) {
    display: none;
  }

  .search-container {
    order: 3;
    flex: 1 1 100%;
    margin-top: 10px;
  }

  .header-main .container {
    flex-wrap: wrap;
  }

  .secondary-headlines-grid {
    grid-template-columns: 1fr;
  }

  .hero-thumb img {
    height: 240px;
  }

  .hero-title {
    font-size: 26px;
  }

  .feed-article-item {
    flex-direction: column;
  }

  .feed-article-thumb {
    width: 100%;
    height: 200px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .article-title-main {
    font-size: 26px;
  }

  .article-body-content {
    font-size: 16.5px;
  }
}
