/* =========================================
   MICROZENSYS NEWS PORTAL — LIGHT CORPORATE
   Brand: #790d86 — White Body Theme
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --brand:         #790d86;
  --brand-hover:   #5e0a68;
  --brand-light:   #fdf0fe;
  --brand-mid:     #9a1faa;
  --brand-blue:    #790d86;
  --brand-dark:    #790d86;
  --brand-darker:  #5e0a68;
  --brand-teal:    #2ab5bb;
  --brand-teal2:   #2a7bbb;
  --brand-green:   #24bd85;
  --brand-purple:  #790d86;
  --brand-orange:  #f28023;
  --light-bg:      #ffffff;
  --tint-bg:       #fdf0fe;
  --white:         #ffffff;
  --text-primary:  #1a1a1a;
  --text-secondary:#2d2d2d;
  --text-muted:    #777777;
  --border:        #e8d4eb;
  --font-editorial:'Merriweather', Georgia, 'Times New Roman', serif;
  --font-ui:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm:     4px;
  --radius-md:     8px;
  --shadow-sm:     0 1px 4px rgba(121,13,134,0.08);
  --shadow-md:     0 4px 16px rgba(121,13,134,0.12);
  --shadow-lg:     0 8px 32px rgba(121,13,134,0.16);
  --transition:    all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-ui); color: var(--text-primary); background: #ffffff; line-height: 1.6; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
p { margin-bottom: 1rem; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-editorial); line-height: 1.25; color: var(--text-primary); }

/* === TOP STRIP === */
.top-strip {
  background: var(--brand);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-family: var(--font-ui);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.3px;
}
.top-strip a { color: rgba(255,255,255,0.85); }
.top-strip a:hover { color: #fff; }
.top-strip .strip-date { font-weight: 500; }
.top-strip .strip-right { display: flex; align-items: center; gap: 20px; }

/* === NAVBAR === */
.site-navbar {
  background: var(--white);
  border-bottom: 3px solid var(--brand);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(121,13,134,0.12);
}
.site-navbar .navbar-brand {
  padding: 12px 0;
  display: flex;
  align-items: center;
}
.site-navbar .navbar-brand img { height: 36px; filter: brightness(0) saturate(100%) invert(14%) sepia(90%) saturate(3500%) hue-rotate(285deg) brightness(90%) contrast(115%); }
.site-navbar .nav-link {
  color: var(--text-secondary) !important;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 20px 16px !important;
  position: relative;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--brand) !important;
  border-bottom-color: var(--brand);
}
.site-navbar .navbar-toggler { border: 1.5px solid var(--border); padding: 6px 10px; }
.site-navbar .navbar-toggler-icon { filter: none; }

/* === BREAKING NEWS BAR === */
.breaking-bar {
  background: var(--brand-orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0;
  overflow: hidden;
}
.breaking-label {
  background: rgba(0,0,0,0.2);
  padding: 8px 16px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ticker-wrap { flex: 1; overflow: hidden; height: 36px; display: flex; align-items: center; }
.ticker-move {
  white-space: nowrap;
  animation: tickerMove 35s linear infinite;
  display: inline-block;
  padding-right: 80px;
}
@keyframes tickerMove {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* === HERO SECTION === */
.portal-hero {
  background: linear-gradient(135deg, var(--brand-light) 0%, #f5d0f9 60%, #fdf5fe 100%);
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.portal-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121,13,134,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.portal-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-teal), var(--brand-green));
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(121,13,134,0.1);
  border: 1px solid rgba(121,13,134,0.3);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-lead {
  font-family: var(--font-ui);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-brand {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 11px 26px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-brand:hover { background: var(--brand-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-brand-outline {
  background: var(--white);
  color: var(--brand);
  border: 1.5px solid var(--brand);
  padding: 11px 26px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-brand-outline:hover { background: var(--brand-light); color: var(--brand-hover); }

.hero-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.hero-stat-card .stat-number {
  font-family: var(--font-editorial);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  display: block;
}
.hero-stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.section-header { margin-bottom: 28px; }
.section-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-blue);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--brand-teal);
}
.section-title { font-size: 1.5rem; font-weight: 900; margin: 0; }
.section-rule { width: 100%; height: 1px; background: var(--border); position: relative; }
.section-rule::after { content: ''; position: absolute; left: 0; top: -1px; height: 3px; width: 60px; background: var(--brand-blue); }

.intro-section { background: var(--tint-bg); border-top: 3px solid var(--brand-blue); }
.intro-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.intro-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--block-color, var(--brand-blue));
}
.intro-block:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.intro-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--block-color, var(--brand-blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.intro-block h5 { font-family: var(--font-ui); font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.intro-block p { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 16px; }
.intro-link { font-size: 0.85rem; font-weight: 700; color: var(--block-color, var(--brand-blue)); display: flex; align-items: center; gap: 6px; }
.intro-link:hover { gap: 10px; color: var(--block-color, var(--brand-blue)); opacity: 0.85; }

.products-section { background: var(--light-bg); }
.product-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  color: var(--text-primary);
}
.product-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); color: var(--text-primary); }
.product-tile-header {
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: space-between;
}
.product-tile-body { padding: 18px; flex: 1; }
.product-tile-body h6 { font-family: var(--font-editorial); font-size: 0.95rem; margin-bottom: 12px; line-height: 1.4; }
.product-tile-footer { padding: 12px 18px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; }
.product-tile-link { font-size: 0.8rem; font-weight: 700; color: var(--brand-blue); display: flex; align-items: center; gap: 4px; }
.product-tile-link:hover { color: var(--brand-teal); }

.news-section { background: var(--light-bg); }
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: row;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card-thumb {
  flex: 0 0 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 180px;
}
.news-card-thumb .news-category {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 2px;
}
.news-card-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; font-family: var(--font-ui); flex-wrap: wrap; }
.news-meta .meta-sep { color: var(--border); }
.news-card-title { font-family: var(--font-editorial); font-size: 1.15rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; color: var(--text-primary); }
.news-card-title:hover { color: var(--brand-blue); }
.news-excerpt { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; flex: 1; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.news-card-footer-bar { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.news-author { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-muted); }
.author-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--brand-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }
.read-link { font-size: 0.8rem; font-weight: 700; color: var(--brand-blue); display: flex; align-items: center; gap: 4px; }
.read-link:hover { color: var(--brand-teal); }

.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; margin-bottom: 24px; }
.sidebar-widget-title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.search-box { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.search-box input { flex: 1; padding: 8px 12px; border: none; font-size: 0.88rem; outline: none; font-family: var(--font-ui); }
.search-box button { background: var(--brand-blue); color: #fff; border: none; padding: 8px 14px; cursor: pointer; }
.search-box button:hover { background: var(--brand-teal2); }
.category-tags-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.cat-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: var(--pill-color, var(--brand-blue));
  transition: var(--transition);
  opacity: 0.88;
  letter-spacing: 0.3px;
}
.cat-pill:hover { opacity: 1; color: #fff; transform: scale(1.04); }
.subscribe-widget { background: var(--brand-light); border: 1px solid var(--border); }
.subscribe-widget .sidebar-widget-title { color: var(--brand); border-color: var(--brand); }
.subscribe-widget p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }
.subscribe-form { display: flex; flex-direction: column; gap: 8px; }
.subscribe-form input { padding: 9px 12px; border: 1.5px solid var(--border); background: var(--white); color: var(--text-primary); font-size: 0.85rem; border-radius: var(--radius-sm); outline: none; font-family: var(--font-ui); }
.subscribe-form input::placeholder { color: var(--text-muted); }
.subscribe-form input:focus { border-color: var(--brand); }
.subscribe-form button { background: var(--brand); color: #fff; border: none; padding: 9px; font-weight: 700; font-size: 0.85rem; border-radius: var(--radius-sm); cursor: pointer; font-family: var(--font-ui); }
.subscribe-form button:hover { background: var(--brand-hover); }

.page-banner {
  background: var(--brand-light);
  padding: 36px 0;
  border-bottom: 3px solid var(--brand);
}
.page-banner .breadcrumb { background: transparent; padding: 0; margin: 0 0 8px; }
.page-banner .breadcrumb-item a { color: var(--brand-mid); font-size: 0.8rem; }
.page-banner .breadcrumb-item a:hover { color: var(--brand); }
.page-banner .breadcrumb-item.active { color: var(--text-muted); font-size: 0.8rem; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }
.page-banner-title { font-family: var(--font-editorial); font-size: 2.2rem; font-weight: 900; color: var(--text-primary); margin: 0 0 6px; }
.page-banner-subtitle { color: var(--text-muted); font-size: 0.95rem; margin: 0; font-family: var(--font-ui); }

.panels-section { background: var(--tint-bg); }
.panel-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; height: 100%; }
.panel-header { padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.panel-header h5 { font-family: var(--font-ui); font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin: 0; display: flex; align-items: center; gap: 7px; }
.panel-header .panel-view-all { font-size: 0.75rem; color: rgba(255,255,255,0.65); font-weight: 600; padding: 3px 8px; border: 1px solid rgba(255,255,255,0.25); border-radius: 2px; }
.panel-header .panel-view-all:hover { color: #fff; background: rgba(255,255,255,0.12); }
.panel-body { padding: 0; }
.panel-item { padding: 13px 18px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.panel-item:last-child { border-bottom: none; }
.panel-item:hover { background: var(--light-bg); }
.panel-item-date { font-size: 0.73rem; color: var(--text-muted); font-family: var(--font-ui); margin-bottom: 3px; }
.panel-item-title { font-family: var(--font-ui); font-size: 0.88rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; }
.panel-item-title:hover { color: var(--brand-blue); }

.article-banner { background: var(--brand-light); padding: 14px 0; border-bottom: 1px solid var(--border); }
.article-banner .breadcrumb { margin: 0; background: transparent; padding: 0; }
.article-banner .breadcrumb-item a { color: var(--brand-mid); font-size: 0.8rem; }
.article-banner .breadcrumb-item a:hover { color: var(--brand); }
.article-banner .breadcrumb-item.active { color: var(--text-muted); font-size: 0.8rem; }
.article-banner .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

.article-wrapper { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 36px 40px; }
.article-cat-tag { background: var(--brand-blue); color: #fff; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 10px; border-radius: 2px; display: inline-block; }
.article-meta-row { display: flex; align-items: center; gap: 16px; margin: 10px 0 18px; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-muted); font-family: var(--font-ui); }
.article-meta-row .meta-sep { color: var(--border); }
.article-main-title { font-family: var(--font-editorial); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 900; line-height: 1.22; color: var(--text-primary); margin-bottom: 24px; }
.article-disclaimer {
  background: var(--tint-bg);
  border-left: 4px solid var(--brand-orange);
  padding: 12px 16px;
  font-size: 0.83rem;
  color: var(--text-secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.6;
}
.article-feature-image { margin-bottom: 28px; }
.article-feature-image img { border-radius: var(--radius-sm); width: 100%; box-shadow: var(--shadow-sm); }
.article-body { font-family: var(--font-editorial); font-size: 1.05rem; line-height: 1.85; color: var(--text-secondary); }
.article-body h2, .article-body h3, .article-body h4 { font-family: var(--font-editorial); margin: 28px 0 14px; }
.article-body p { margin-bottom: 1.4rem; }
.article-body blockquote { border-left: 4px solid var(--brand-purple); padding: 12px 20px; margin: 24px 0; background: var(--light-bg); font-style: italic; color: var(--text-muted); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.article-body img { border-radius: var(--radius-sm); margin: 16px 0; }

.article-tag-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.a-tag { font-size: 0.78rem; padding: 4px 10px; border: 1.5px solid var(--border); border-radius: 2px; color: var(--text-muted); font-family: var(--font-ui); font-weight: 600; }
.a-tag:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.article-share-row { margin-top: 20px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-label { font-family: var(--font-ui); font-weight: 700; font-size: 0.82rem; color: var(--text-muted); }
.s-btn { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 0.82rem; transition: var(--transition); }
.s-btn:hover { opacity: 0.85; transform: translateY(-2px); color: #fff; }
.s-btn.fb { background: var(--brand-blue); }
.s-btn.tw { background: var(--brand-teal2); }
.s-btn.li { background: var(--brand-purple); }
.s-btn.wa { background: var(--brand-green); }

.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li { border-bottom: 1px solid var(--border); }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list a { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 0.88rem; color: var(--text-primary); font-family: var(--font-ui); font-weight: 500; transition: var(--transition); }
.sidebar-cat-list a:hover { color: var(--brand-blue); padding-left: 4px; }
.cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: var(--dot-color, var(--brand-blue)); }

.related-list { display: flex; flex-direction: column; gap: 12px; }
.related-item { display: flex; align-items: flex-start; gap: 12px; }
.related-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.82rem; flex-shrink: 0; }
.related-title { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; margin-bottom: 2px; }
.related-view { font-size: 0.75rem; color: var(--brand-blue); font-weight: 600; }

.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-card-header { background: var(--brand-light); border-bottom: 3px solid var(--brand); padding: 28px 32px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.contact-avatar { width: 64px; height: 64px; border-radius: 50%; background-size: cover; background-position: center; border: 3px solid var(--border); flex-shrink: 0; }
.contact-card-header h5 { margin: 0 0 2px; }
.contact-card-header h5 a { color: var(--text-primary); font-family: var(--font-ui); font-size: 1.1rem; }
.contact-card-header small { color: var(--text-muted); font-family: var(--font-ui); }
.contact-card-body { padding: 32px; }
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; background: var(--light-bg); padding: 20px; border-radius: var(--radius-sm); margin-bottom: 24px; border: 1px solid var(--border); }
.c-info-item { display: flex; flex-direction: column; gap: 3px; }
.c-info-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.c-info-label i { color: var(--brand-blue); }
.c-info-value { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.editorial-quote { background: var(--light-bg); border-left: 4px solid var(--brand-blue); padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 24px; }
.editorial-quote blockquote { font-family: var(--font-editorial); font-style: italic; font-size: 1.05rem; color: var(--text-secondary); margin: 0 0 10px; }
.editorial-quote cite { font-size: 0.82rem; font-weight: 700; color: var(--brand-blue); font-style: normal; font-family: var(--font-ui); }
.alert-notice { background: var(--tint-bg); border: 1px solid var(--brand-orange); border-radius: var(--radius-sm); padding: 16px 20px; }
.alert-notice h6 { font-family: var(--font-ui); font-weight: 800; font-size: 0.88rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.alert-notice p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }
.alert-notice a { color: var(--brand-blue); font-weight: 700; }

/* === FOOTER === */
.site-footer { background: var(--white); color: var(--text-secondary); border-top: 3px solid var(--brand); }
.footer-main { padding: 52px 0 40px; border-bottom: 1px solid var(--border); }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { filter: brightness(0) saturate(100%) invert(14%) sepia(90%) saturate(3500%) hue-rotate(285deg) brightness(90%) contrast(115%); }
.footer-about { font-size: 0.88rem; line-height: 1.7; color: var(--text-muted); max-width: 300px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-social-btn { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.82rem; transition: var(--transition); }
.footer-social-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.footer-col-title { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-primary); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--brand); display: inline-block; }
.footer-nav-list { list-style: none; padding: 0; margin: 0; }
.footer-nav-list li { margin-bottom: 9px; }
.footer-nav-list a { color: var(--text-muted); font-size: 0.88rem; font-family: var(--font-ui); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-nav-list a::before { content: ''; display: inline-block; width: 12px; height: 1px; background: var(--border); transition: var(--transition); }
.footer-nav-list a:hover { color: var(--brand); gap: 10px; }
.footer-nav-list a:hover::before { width: 20px; background: var(--brand); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; font-family: var(--font-ui); }
.footer-contact-list li i { color: var(--brand); margin-top: 2px; width: 14px; flex-shrink: 0; }
.footer-contact-list a { color: var(--text-muted); }
.footer-contact-list a:hover { color: var(--brand); }
.footer-bottom { padding: 16px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--border); }
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-ui); }
.footer-copyright a { color: var(--brand); }
.footer-copyright a:hover { color: var(--brand-hover); }
.footer-policy-links { display: flex; gap: 20px; }
.footer-policy-links a { font-size: 0.78rem; color: var(--text-muted); font-family: var(--font-ui); }
.footer-policy-links a:hover { color: var(--brand); }

.divider { height: 1px; background: var(--border); margin: 0; }
.btn-ghost-blue { background: transparent; border: 1.5px solid var(--brand-blue); color: var(--brand-blue); padding: 7px 18px; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 700; font-family: var(--font-ui); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.btn-ghost-blue:hover { background: var(--brand-blue); color: #fff; }

@media (max-width: 992px) {
  .top-strip .strip-right { display: none; }
  .news-card { flex-direction: column; }
  .news-card-thumb { flex: none; height: 200px; width: 100%; }
  .article-wrapper { padding: 24px; }
}
@media (max-width: 768px) {
  .portal-hero { padding: 44px 0 36px; }
  .hero-headline { font-size: 1.9rem; }
  .article-wrapper { padding: 20px 16px; }
  .article-main-title { font-size: 1.55rem; }
  .contact-card-header { flex-direction: column; align-items: flex-start; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 576px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-brand, .hero-actions .btn-brand-outline { justify-content: center; }
  .contact-info-grid { grid-template-columns: 1fr; }
}
