/*
Theme Name: SR Vishwa
Theme URI: https://srvishwa.com/
Author: SR Vishwa Team
Author URI: https://srvishwa.com/
Description: A premium, state-of-the-art news and editorial theme inspired by SR Vishwa. Features a bold typographic design, dynamic bento grids, and high-performance responsive layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: srvishwa
Tags: news, blog, grid-layout, two-columns, right-sidebar, translation-ready, custom-menu, featured-images
*/

/* --- Design System & Variables --- */
:root {
  --bg-canvas: #FDFCFB;
  --color-ink: #0F172A;
  --color-text: #1A1A1A;
  --color-brand: #E11D48;
  --color-blue: #2979FF;
  --color-orange: #FF3D00;
  --color-magenta: #D500F9;
  --color-slate-100: #F1F5F9;
  --color-slate-200: #E2E8F0;
  --color-slate-500: #64748B;
  --color-slate-800: #1E293B;
  --color-slate-900: #0F172A;
  
  --font-serif: "Bodoni Moda", "Playfair Display", Georgia, serif;
  --font-sans: "Outfit", "Inter", "Helvetica Neue", Arial, sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- Dark Mode Variables Overrides --- */
:root.dark-theme {
  --bg-canvas: #090D1A;
  --color-ink: #F8FAFC;
  --color-text: #E2E8F0;
  --color-slate-100: #0F172A;
  --color-slate-200: #1E293B;
  --color-slate-500: #94A3B8;
  --color-slate-800: #0D1527;
  --color-slate-900: #020617;
}

/* Base modifications for Dark Mode */
.dark-theme body {
  background-color: var(--bg-canvas);
  color: var(--color-text);
}

.dark-theme .site-branding-header {
  background-color: var(--color-slate-100);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dark-theme .logo-wrapper {
  background-color: var(--color-slate-100);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.dark-theme .logo-pulse-dot {
  border-color: var(--color-slate-100);
}

.dark-theme .site-description-tag {
  color: var(--color-slate-500);
}

.dark-theme .main-navigation-bar {
  background-color: var(--color-slate-800);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

.dark-theme .nav-links-wrapper a:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.dark-theme .section-slate-bg {
  background-color: var(--color-slate-100);
}

.dark-theme .wellness-section-bg {
  background-color: var(--color-slate-100);
}

.dark-theme .wellness-card,
.dark-theme .archive-post-card,
.dark-theme .chronicle-card,
.dark-theme .business-row-card {
  background-color: transparent;
}

.dark-theme .jobs-card,
.dark-theme .law-case-card,
.dark-theme .widget-block,
.dark-theme .sidebar-wrapper-col .widget,
.dark-theme .archive-header-box {
  background-color: var(--color-slate-100);
  border-color: rgba(255, 255, 255, 0.05);
}

.dark-theme .jobs-card:hover,
.dark-theme .law-case-card:hover {
  border-color: var(--color-brand);
}

.dark-theme .main-editorial-excerpt,
.dark-theme .chronicle-excerpt,
.dark-theme .world-excerpt,
.dark-theme .business-row-excerpt,
.dark-theme .law-case-excerpt,
.dark-theme .widget-block p {
  color: rgba(226, 232, 240, 0.65);
}

.dark-theme .main-editorial-meta .meta-date,
.dark-theme .vertical-post-meta .meta-time,
.dark-theme .business-row-meta,
.dark-theme .law-case-date,
.dark-theme .wellness-meta,
.dark-theme .jobs-date,
.dark-theme .world-meta-date,
.dark-theme .chronicle-meta-date,
.dark-theme .archive-post-meta {
  color: rgba(226, 232, 240, 0.45);
}

.dark-theme .main-editorial-meta .meta-author-name,
.dark-theme .chronicle-author-name {
  color: var(--color-text);
}

.dark-theme .nav-theme-button:hover {
  color: #FFFFFF;
}

.dark-theme input,
.dark-theme textarea,
.dark-theme select {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.dark-theme .entry-content blockquote {
  background-color: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.8);
}

/* Transitions */
body, 
.site-branding-header,
.logo-wrapper,
.main-navigation-bar,
.section-slate-bg,
.wellness-section-bg,
.jobs-card,
.law-case-card,
.widget-block,
.archive-header-box {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* --- Base Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-canvas);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* --- Layout Containers --- */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-h-screen: 100vh;
}

.container-wide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.main-content {
  flex-grow: 1;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* --- Ticker / Top Bar --- */
.top-ticker-bar {
  background-color: var(--color-slate-900);
  color: #FFFFFF;
  padding: 0.4rem 1rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.top-ticker-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.ticker-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.ticker-label {
  color: #EF4444;
  font-weight: 900;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-right: 1rem;
}

.ticker-scroll-wrapper {
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.8;
  font-weight: 500;
  display: flex;
  gap: 1rem;
  width: 100%;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.ticker-item a:hover {
  color: var(--color-brand);
}

.ticker-separator {
  color: rgba(255, 255, 255, 0.1);
}

.top-ticker-right {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 1rem;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.top-ticker-right a {
  opacity: 0.6;
}
.top-ticker-right a:hover {
  opacity: 1;
}

/* --- Branding Header --- */
.site-branding-header {
  background-color: #FFFFFF;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.site-branding-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
  background-color: #FFFFFF;
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.brand-link:hover .logo-wrapper {
  transform: scale(1.05);
}

.logo-pulse-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background-color: #FACC15;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.title-container {
  display: flex;
  flex-direction: column;
}

.site-title-gradient {
  font-size: 3rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.8;
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
  background: linear-gradient(90deg, var(--color-orange), var(--color-magenta), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-description-tag {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6em;
  color: var(--color-slate-500);
  line-height: 1;
  padding-left: 2px;
  opacity: 0.7;
}

/* --- Main Navigation --- */
.main-navigation-bar {
  background-color: var(--color-slate-800);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.main-nav-container {
  display: flex;
  align-items: center;
  height: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 1rem;
}

.mobile-menu-trigger:hover {
  color: #FFFFFF;
}

.nav-links-wrapper {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links-wrapper::-webkit-scrollbar {
  display: none;
}

.nav-links-wrapper ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}

.nav-links-wrapper li {
  height: 100%;
}

.nav-links-wrapper a {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  height: 100%;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-links-wrapper li.current-menu-item a,
.nav-links-wrapper a.active {
  color: #FFFFFF;
  border-bottom-color: var(--color-brand);
}

.nav-links-wrapper a:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-search-wrapper {
  margin-left: auto;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.nav-search-button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.3s;
}
.nav-search-button:hover {
  color: #FFFFFF;
}

/* --- Bento Grid (Hero) --- */
.bento-grid-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.bento-main-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-xl);
}

.bento-main-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(5%);
  transition: transform 2s ease;
}

.bento-main-slider:hover img {
  transform: scale(1.05);
}

.bento-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.bento-slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: #FFFFFF;
}

.badge-featured {
  display: inline-block;
  background-color: var(--color-brand);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.bento-main-title {
  color: #FFFFFF;
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 900;
}

.bento-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.bento-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.bento-side-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bento-side-card {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 200px;
}

.bento-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
  transition: all 0.7s ease;
}

.bento-side-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.bento-side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 70%, transparent 100%);
}

.bento-side-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: #FFFFFF;
}

.badge-card {
  display: inline-block;
  background-color: var(--color-brand);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.75rem;
  border-radius: 1px;
}

.bento-side-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 900;
}

/* --- Section Header Styling --- */
.section-header-editorial {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 4px solid var(--color-ink);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.section-header-editorial.accent {
  border-bottom-color: var(--color-brand);
}

.section-title-editorial {
  font-size: 2.25rem;
  font-family: var(--font-serif);
  font-weight: 950;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-more-link {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-brand);
}
.section-more-link:hover {
  text-decoration: underline;
}

/* --- Section Layouts --- */
.editorial-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 6rem;
}

/* Big Hero Editorial */
.main-editorial-post .post-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-xl);
}

.main-editorial-post .post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
  transition: all 1.5s ease;
}

.main-editorial-post:hover .post-media img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.main-editorial-post .media-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-brand);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 0.75rem 1.25rem;
  text-decoration: underline;
  box-shadow: var(--shadow-lg);
}

.main-editorial-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  font-weight: 900;
}
.main-editorial-title a:hover {
  color: var(--color-brand);
  text-decoration: underline;
  text-decoration-color: rgba(225, 29, 72, 0.2);
  text-underline-offset: 8px;
}

.main-editorial-excerpt {
  color: rgba(15, 23, 42, 0.7);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 500;
  max-w-4xl: 100%;
}

.main-editorial-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.meta-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  filter: grayscale(100%);
  border: 1px solid rgba(0,0,0,0.05);
}

.meta-author-name {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-ink);
}

.meta-date {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Sidebar List */
.sidebar-posts-vertical {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vertical-post-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.vertical-post-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.vertical-post-card .post-thumb {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  filter: grayscale(40%);
  transition: all 0.7s;
}
.vertical-post-card:hover .post-thumb {
  filter: grayscale(0%);
}
.vertical-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.vertical-post-card:hover img {
  transform: scale(1.1);
}

.vertical-post-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
}
.vertical-post-title a:hover {
  color: var(--color-brand);
}

.vertical-post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 10px;
}
.vertical-post-meta .meta-cat {
  color: var(--color-brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.vertical-post-meta .meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.1);
}
.vertical-post-meta .meta-time {
  color: rgba(0,0,0,0.4);
  font-weight: 700;
  text-transform: uppercase;
}

/* --- Section: Slate BG Split --- */
.section-slate-bg {
  background-color: #F8FAFC;
  padding: 5rem 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 6rem;
  width: 100vw;
}

.section-slate-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}

/* Business List */
.business-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.business-row-card {
  display: flex;
  gap: 1.5rem;
}

.business-row-card .row-thumb {
  width: 128px;
  height: 128px;
  flex-shrink: 0;
  overflow: hidden;
  filter: grayscale(100%);
  transition: all 0.5s;
}

.business-row-card:hover .row-thumb {
  filter: grayscale(0%);
}

.business-row-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-row-content h4 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.business-row-content h4 a:hover {
  color: var(--color-brand);
}

.business-row-excerpt {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.business-row-meta {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.3);
}
.business-row-card:hover .business-row-meta {
  color: rgba(0,0,0,0.8);
}

/* Economics Grid */
.economics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.economics-card .eco-thumb {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  filter: grayscale(40%);
  margin-bottom: 1rem;
  transition: all 0.5s;
}
.economics-card:hover .eco-thumb {
  filter: grayscale(0%);
}
.economics-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.economics-card:hover img {
  transform: scale(1.1);
}

.economics-card h4 {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.economics-card h4 a:hover {
  color: var(--color-brand);
}

.economics-meta {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

/* --- Section: Dark Tech Grid --- */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.tech-block-link {
  display: block;
}

.tech-box-dark {
  background-color: var(--color-slate-900);
  color: #FFFFFF;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.tech-box-bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  filter: grayscale(100%);
  transition: transform 2s ease;
}

.tech-block-link:hover .tech-box-bg-image {
  transform: scale(1.1);
}

.tech-box-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-box-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.tech-verdict-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  padding: 0.25rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.tech-box-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.tech-box-date {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* --- Section: Law & Justice --- */
.law-justice-section {
  padding-top: 5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 6rem;
}

.law-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.law-intro h2 {
  font-size: 3.5rem;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.law-accent-bar {
  height: 6px;
  width: 80px;
  background-color: var(--color-brand);
  margin-bottom: 2rem;
}

.law-intro-p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 380px;
}

.law-btn-docket {
  display: inline-block;
  background-color: var(--color-slate-900);
  color: #FFFFFF;
  padding: 1.25rem 2.5rem;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: background-color 0.3s;
}
.law-btn-docket:hover {
  background-color: var(--color-brand);
}

.law-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.law-case-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  background-color: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.law-case-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 10px;
  font-weight: 900;
  color: rgba(225, 29, 72, 0.2);
  text-transform: uppercase;
}

.law-case-card:hover {
  border-color: var(--color-brand);
}
.law-case-card:hover .law-case-number {
  color: var(--color-brand);
}

.law-case-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.law-case-title a:hover {
  color: var(--color-brand);
}

.law-case-excerpt {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.law-case-date {
  margin-top: auto;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.3);
}

/* --- Section: Home Remedies (Wellness) --- */
.wellness-section-bg {
  background-color: var(--color-slate-100);
  padding: 5rem 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 6rem;
  width: 100vw;
}

.wellness-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wellness-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.wellness-card {
  text-align: center;
}

.wellness-card .well-thumb {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.wellness-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.wellness-card:hover img {
  transform: scale(1.05);
}

.wellness-card .well-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(225, 29, 72, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.wellness-card:hover .well-overlay {
  opacity: 1;
}

.wellness-card h4 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding: 0 1rem;
}
.wellness-card h4 a:hover {
  color: var(--color-brand);
}

.wellness-meta {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(0, 0, 0, 0.4);
}

/* --- Section: Jobs Vacancy --- */
.jobs-section {
  margin-bottom: 6rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.jobs-card {
  padding: 2rem;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 250px;
  transition: all 0.3s ease;
  position: relative;
}

.jobs-card:hover {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-xl);
}

.jobs-icon-box {
  width: 40px;
  height: 40px;
  background-color: rgba(225, 29, 72, 0.1);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.jobs-card:hover .jobs-icon-box {
  background-color: var(--color-brand);
  color: #FFFFFF;
}

.jobs-card h4 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jobs-footer {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1.5rem;
  margin-top: auto;
}

.jobs-badge {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand);
  display: block;
  margin-bottom: 0.5rem;
}

.jobs-date {
  font-size: 9px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

/* --- Section: World Grid --- */
.world-section {
  margin-bottom: 6rem;
}

.world-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.world-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.world-thumb-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.world-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 1.5s ease;
}

.world-card:hover .world-thumb-wrapper img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.world-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.world-card:hover .world-overlay {
  opacity: 1;
}

.world-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.world-meta-exclusive {
  color: var(--color-brand);
  letter-spacing: 0.2em;
}

.world-meta-date {
  color: rgba(15, 23, 42, 0.3);
}

.world-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.world-title a:hover {
  color: var(--color-brand);
}

.world-excerpt {
  color: rgba(15, 23, 42, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* --- Dual Column Layout --- */
.dual-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Left Feed: Chronology */
.chronicle-feed {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.chronicle-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.chronicle-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.chronicle-thumb {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  aspect-ratio: 1/1;
}

.chronicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 1s;
}

.chronicle-card:hover .chronicle-thumb img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.chronicle-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chronicle-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 11px;
}

.chronicle-meta-cat {
  color: var(--color-brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.chronicle-meta-date {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chronicle-title {
  font-size: 1.85rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.chronicle-title a:hover {
  color: var(--color-brand);
}

.chronicle-excerpt {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.chronicle-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.chronicle-author-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  filter: grayscale(100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.chronicle-author-name {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Right Sidebar Widget Blocks */
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.widget-block {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.widget-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

/* Widget accent bars */
.widget-block.red::before { background-color: var(--color-brand); }
.widget-block.dark::before { background-color: var(--color-slate-900); }
.widget-block.orange::before { background-color: #EA580C; }

.widget-title-style {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  font-weight: 950;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.widget-title-style span.num {
  color: var(--color-brand);
  font-size: 1.5rem;
  font-style: italic;
}

.widget-title-meta {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(0,0,0,0.4);
  margin-bottom: 2rem;
  display: block;
}

/* Most Read list */
.most-read-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.most-read-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.most-read-index {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-weight: 950;
  color: rgba(0, 0, 0, 0.1);
  transition: color 0.3s;
}

.most-read-row:hover .most-read-index {
  color: rgba(225, 29, 72, 0.2);
}

.most-read-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  font-family: var(--font-sans);
}
.most-read-row:hover .most-read-title {
  color: var(--color-brand);
}

.most-read-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 0.25rem;
}

/* Dark widget inner */
.widget-block.dark-bg {
  background-color: var(--color-slate-900);
  color: #FFFFFF;
  border: none;
  box-shadow: var(--shadow-xl);
}
.widget-block.dark-bg .widget-title-meta {
  color: rgba(255, 255, 255, 0.4);
}
.widget-block.dark-bg .dark-widget-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.widget-block.dark-bg .dark-widget-item h5 {
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.widget-block.dark-bg .dark-widget-item h5 a:hover {
  color: var(--color-brand);
}
.widget-block.dark-bg .dark-widget-item span {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.widget-block.dark-bg .dark-widget-item:hover span {
  color: rgba(255, 255, 255, 0.6);
}

/* Category Topics List */
.topic-list-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.topic-row-sidebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.topic-row-sidebar:last-child {
  border-bottom: 0;
}

.topic-sidebar-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.topic-row-sidebar:hover .topic-sidebar-name {
  color: var(--color-brand);
}

.topic-sidebar-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.topic-row-sidebar:hover .topic-sidebar-arrow {
  background-color: var(--color-brand);
  color: #FFFFFF;
}

/* Curated Affiliate Widget */
.affiliate-widget-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.affiliate-widget-thumb {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background-color: #F8FAFC;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}
.affiliate-widget-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.affiliate-widget-box:hover .affiliate-widget-thumb img {
  transform: scale(1.1);
}
.affiliate-widget-details h5 {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.affiliate-widget-box:hover h5 {
  color: #EA580C;
}
.affiliate-widget-price {
  font-size: 11px;
  color: #EA580C;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
}
.affiliate-widget-btn {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.affiliate-widget-box:hover .affiliate-widget-btn {
  color: var(--color-ink);
}

/* --- Section: Newsletter --- */
.newsletter-wrapper-wide {
  background-color: var(--color-slate-900);
  color: #FFFFFF;
  padding: 6rem 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 6rem;
  width: 100vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-accent-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-magenta), var(--color-blue));
}

.newsletter-inner-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.newsletter-badge {
  display: inline-block;
  background-color: var(--color-brand);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.newsletter-title {
  font-size: 2.75rem;
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.newsletter-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.newsletter-form-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.newsletter-form-container input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.5rem;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.newsletter-form-container input:focus {
  outline: none;
  border-color: var(--color-brand);
}

.newsletter-form-container button {
  background-color: var(--color-brand);
  border: none;
  color: #FFFFFF;
  padding: 1.25rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: background-color 0.3s;
}

.newsletter-form-container button:hover {
  background-color: rgba(225, 29, 72, 0.9);
}

/* --- Article Detail Page (single.php) --- */
.article-header {
  margin-bottom: 3rem;
}

.article-header-meta {
  margin-bottom: 1rem;
}

.article-header-cat {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-main-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 950;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  filter: grayscale(100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-author-info {
  display: flex;
  flex-direction: column;
}

.article-author-label {
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-brand);
  letter-spacing: 0.1em;
}

.article-author-name {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-ink);
}

.article-meta-details {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.article-meta-details span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-meta-details span.reading-time {
  color: var(--color-brand);
}

.article-featured-media {
  margin-bottom: 4rem;
  box-shadow: var(--shadow-xl);
}

.article-featured-media img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

/* Post Content Formatting (.prose styling) */
.entry-content {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(15, 23, 42, 0.9);
}

.entry-content p {
  margin-bottom: 2rem;
}

.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
  font-family: var(--font-serif);
  font-weight: 950;
  letter-spacing: -0.02em;
  border-left: 3px solid var(--color-brand);
  padding-left: 1.25rem;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  text-transform: none;
  color: var(--color-ink);
}

.entry-content h2 { font-size: 2rem; }
.entry-content h3 { font-size: 1.6rem; }
.entry-content h4 { font-size: 1.3rem; }

.entry-content blockquote {
  border-left: 3px solid var(--color-brand);
  background-color: var(--color-slate-100);
  padding: 2rem;
  margin: 3rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(15, 23, 42, 0.8);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.entry-content blockquote p {
  margin-bottom: 0;
}

.entry-content figure {
  margin: 3.5rem 0;
  box-shadow: var(--shadow-xl);
}

.entry-content figure img {
  width: 100%;
  border-radius: 0;
}

.entry-content figcaption {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.entry-content ul, 
.entry-content ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

/* Author Box at Post Bottom */
.author-box-bottom {
  margin-top: 5rem;
  padding: 3rem;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
}

.author-box-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  filter: grayscale(100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.author-box-details {
  display: flex;
  flex-direction: column;
}

.author-box-label {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-brand);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.author-box-name {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.author-box-bio {
  color: rgba(0,0,0,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Archive Pages (category.php / search.php) --- */
.archive-header-box {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 3rem 0;
  margin-bottom: 4rem;
  border-bottom: 4px solid var(--color-slate-900);
}

.archive-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.archive-pre-title {
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--color-brand);
  letter-spacing: 0.4em;
  margin-bottom: 0.5rem;
  display: block;
}

.archive-main-title {
  font-size: 3.5rem;
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
}

.archive-desc {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.5);
  margin-top: 1rem;
  max-width: 600px;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.archive-post-card {
  display: flex;
  flex-direction: column;
}

.archive-post-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  filter: grayscale(20%);
  transition: all 0.7s;
}
.archive-post-card:hover .archive-post-thumb {
  filter: grayscale(0%);
}

.archive-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.archive-post-card:hover .archive-post-thumb img {
  transform: scale(1.05);
}

.archive-post-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.archive-post-title a:hover {
  color: var(--color-brand);
}

.archive-post-excerpt {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-post-meta {
  margin-top: auto;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.1em;
}

/* Pagination */
.wp-pagination {
  margin-top: 4rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.wp-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 12px;
  font-weight: 900;
  background-color: #FFFFFF;
}

.wp-pagination .page-numbers.current,
.wp-pagination .page-numbers:hover {
  background-color: var(--color-slate-900);
  color: #FFFFFF;
  border-color: var(--color-slate-900);
}

/* --- Search Form in Content --- */
.content-search-form {
  max-width: 600px;
  margin: 3rem 0;
  display: flex;
}

.content-search-input {
  flex-grow: 1;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 1rem 1.5rem;
  font-size: 14px;
  font-family: var(--font-sans);
}
.content-search-input:focus {
  outline: none;
  border-color: var(--color-brand);
}

.content-search-submit {
  background-color: var(--color-slate-900);
  color: #FFFFFF;
  border: none;
  padding: 0 2rem;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
}
.content-search-submit:hover {
  background-color: var(--color-brand);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-slate-900);
  color: #FFFFFF;
  padding-top: 6rem;
  padding-bottom: 3rem;
  border-top: 12px solid var(--color-blue);
}

.footer-widgets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-widget-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-widget-title {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 8px;
}

.footer-brand-title {
  font-size: 1.85rem;
  font-family: var(--font-serif);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--color-orange), var(--color-magenta), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.footer-brand-desc {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-about-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 1.5rem;
}

.footer-social-links a {
  color: rgba(255, 255, 255, 0.2);
}
.footer-social-links a:hover {
  color: var(--color-brand);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footer-links-grid a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-links-grid a:hover {
  color: #FFFFFF;
}

.footer-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu-links a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s;
}

.footer-menu-links a:hover {
  color: var(--color-brand);
  transform: translateX(4px);
}

.footer-newsletter-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-newsletter-form input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--color-brand);
}

.footer-newsletter-form button {
  background-color: var(--color-brand);
  border: none;
  color: #FFFFFF;
  padding: 1rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background-color 0.3s;
}
.footer-newsletter-form button:hover {
  background-color: rgba(225, 29, 72, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-right {
  display: flex;
  gap: 1.5rem;
}

/* --- Media Queries (Responsive) --- */
@media (min-width: 640px) {
  .bento-grid-section {
    grid-template-columns: repeat(12, 1fr);
  }
  .bento-main-slider {
    grid-column: span 8;
    height: 500px;
  }
  .bento-side-cards {
    grid-column: span 4;
    height: 500px;
  }
  
  .editorial-grid-layout {
    grid-template-columns: repeat(12, 1fr);
  }
  .main-editorial-post {
    grid-column: span 8;
  }
  .sidebar-posts-vertical {
    grid-column: span 4;
  }
  
  .section-slate-container {
    grid-template-columns: 1fr 1fr;
  }
  .economics-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .law-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .wellness-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .world-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .chronicle-card {
    grid-template-columns: repeat(12, 1fr);
  }
  .chronicle-thumb {
    grid-column: span 4;
  }
  .chronicle-content {
    grid-column: span 8;
  }
  
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .bento-main-slider {
    height: 600px;
  }
  .bento-side-cards {
    height: 600px;
  }
  .bento-main-title {
    font-size: 3rem;
  }
  
  .main-editorial-title {
    font-size: 3.75rem;
  }
  
  .law-container {
    grid-template-columns: repeat(12, 1fr);
  }
  .law-intro {
    grid-column: span 4;
  }
  .law-cards-grid {
    grid-column: span 8;
  }
  
  .jobs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .world-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .dual-column-layout {
    grid-template-columns: repeat(12, 1fr);
  }
  .chronicle-feed-wrapper {
    grid-column: span 8;
  }
  .sidebar-wrapper {
    grid-column: span 4;
  }
  
  .archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-widgets {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .mobile-menu-trigger {
    display: none;
  }
}

@media (max-width: 1023px) {
  .mobile-menu-trigger {
    display: block;
  }
  
  /* Simple mobile drawer styling */
  .main-navigation-bar {
    position: sticky;
    top: 0;
  }
}

/* --- Premium Theme Elements Additions --- */

/* 1. Comments Area Styles */
.comments-area {
  margin-top: 4rem;
  border-top: 1px solid var(--color-slate-200);
  padding-top: 3rem;
  font-family: var(--font-sans);
}
.comments-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--color-ink);
}
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-list .comment {
  margin-bottom: 2.5rem;
}
.comment-body {
  position: relative;
  padding: 1.5rem;
  background-color: var(--color-slate-100);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.comment-body:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.comment-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.comment-author img.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-brand);
  background: #FFF;
}
.comment-author .fn {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-ink);
  font-style: normal;
}
.comment-metadata {
  font-size: 0.8rem;
  color: var(--color-slate-500);
}
.comment-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}
.comment-content p {
  margin: 0 0 1rem 0;
}
.comment-content p:last-child {
  margin-bottom: 0;
}
.reply {
  display: inline-block;
  margin-top: 0.5rem;
}
.comment-reply-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand);
  transition: opacity 0.2s;
}
.comment-reply-link:hover {
  opacity: 0.8;
}
.comment-list .children {
  list-style: none;
  padding-left: 2rem;
  margin-top: 1.5rem;
  border-left: 2px solid var(--color-slate-200);
}
.comment-respond {
  margin-top: 4rem;
  padding: 2.5rem;
  background-color: var(--color-slate-100);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.comment-reply-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--color-ink);
}
.comment-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.comment-form-comment textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--color-slate-200);
  background-color: #FFF;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  min-height: 150px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
}
.comment-form-comment textarea:focus {
  border-color: var(--color-brand);
}
.comment-form-fields-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .comment-form-fields-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.comment-form-fields-wrapper p {
  margin: 0;
}
.comment-form input[type="text"],
.comment-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--color-slate-200);
  background-color: #FFF;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus {
  border-color: var(--color-brand);
}
.form-submit {
  margin: 0;
}
.form-submit input[type="submit"] {
  background-color: var(--color-brand);
  color: #FFF;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}
.form-submit input[type="submit"]:hover {
  background-color: #BE123C;
  transform: translateY(-1px);
}

/* 2. Table of Contents Styles */
.toc-wrapper {
  background-color: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-sans);
}
.toc-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-slate-200);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
.toc-title-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0;
  color: var(--color-ink);
}
.toc-toggle-btn {
  background: none;
  border: none;
  color: var(--color-brand);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toc-list li.toc-item-h2 {
  padding-left: 0;
}
.toc-list li.toc-item-h3 {
  padding-left: 1.25rem;
  font-size: 0.9rem;
}
.toc-list a {
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.2s;
}
.toc-list a:hover {
  color: var(--color-brand);
}

/* 3. Social Sharing Buttons */
.social-share-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-slate-200);
  border-bottom: 1px solid var(--color-slate-200);
  font-family: var(--font-sans);
}
.share-metric-box {
  display: flex;
  flex-direction: column;
}
.share-count-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-ink);
  line-height: 1;
}
.share-count-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-slate-500);
  margin-top: 0.25rem;
}
.social-share-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFF;
  transition: transform 0.2s, opacity 0.2s;
}
.social-share-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.btn-facebook { background-color: #1877F2; }
.btn-twitter { background-color: #1DA1F2; }
.btn-linkedin { background-color: #0A66C2; }
.btn-whatsapp { background-color: #25D366; }
.btn-reddit { background-color: #FF4500; }

/* 4. Related Articles Carousel */
.related-articles-section {
  margin-top: 4rem;
  font-family: var(--font-sans);
}
.related-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 950;
  margin-bottom: 2rem;
  color: var(--color-ink);
  border-bottom: 2px solid var(--color-brand);
  padding-bottom: 0.5rem;
  display: inline-block;
}
.related-carousel-container {
  position: relative;
  overflow: hidden;
}
.related-carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 1rem;
}
.related-carousel-track::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}
.related-article-card {
  flex: 0 0 280px;
  background-color: var(--color-slate-100);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.2s;
}
.related-article-card:hover {
  transform: translateY(-3px);
}
.related-thumb-box {
  height: 160px;
  overflow: hidden;
}
.related-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.related-article-card:hover .related-thumb-box img {
  transform: scale(1.05);
}
.related-card-content {
  padding: 1.25rem;
}
.related-card-cat {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-brand);
  letter-spacing: 0.1em;
}
.related-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0.5rem 0;
  color: var(--color-ink);
  line-height: 1.35;
}
.related-card-date {
  font-size: 0.75rem;
  color: var(--color-slate-500);
}
.related-carousel-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}
.related-nav-btn {
  background-color: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  color: var(--color-ink);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.related-nav-btn:hover {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
  color: #FFF;
}

/* 5. AJAX Search Overlay Results styling */
.ajax-search-results {
  margin-top: 2rem;
  max-height: 50vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 0.5rem;
}
.ajax-search-results::-webkit-scrollbar {
  width: 6px;
}
.ajax-search-results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.ajax-search-item {
  display: flex;
  gap: 1.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  align-items: center;
  transition: background-color 0.2s, border-color 0.2s;
}
.ajax-search-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-brand);
}
.ajax-search-thumb {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.ajax-search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ajax-search-content {
  flex-grow: 1;
}
.ajax-search-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #FFF;
  line-height: 1.3;
}
.ajax-search-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.ajax-search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

/* 6. Dark Theme Styles for Additions */
.dark-theme .comment-body {
  background-color: var(--color-slate-100);
  border-color: rgba(255, 255, 255, 0.03);
}
.dark-theme .comment-author .fn {
  color: #FFF;
}
.dark-theme .comment-content {
  color: var(--color-text);
}
.dark-theme .comment-reply-title {
  color: #FFF;
}
.dark-theme .comment-respond {
  background-color: var(--color-slate-100);
  border-color: rgba(255, 255, 255, 0.05);
}
.dark-theme .comment-form-comment textarea,
.dark-theme .comment-form input[type="text"],
.dark-theme .comment-form input[type="email"] {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.05);
  color: #FFF;
}
.dark-theme .comment-form-comment textarea:focus,
.dark-theme .comment-form input[type="text"]:focus,
.dark-theme .comment-form input[type="email"]:focus {
  border-color: var(--color-brand);
}
.dark-theme .toc-wrapper {
  background-color: var(--color-slate-100);
  border-color: rgba(255, 255, 255, 0.05);
}
.dark-theme .toc-title-box {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}
.dark-theme .toc-title-box h4 {
  color: #FFF;
}
.dark-theme .toc-list a {
  color: var(--color-text);
}
.dark-theme .toc-list a:hover {
  color: var(--color-brand);
}
.dark-theme .social-share-container {
  border-top-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}
.dark-theme .share-count-number {
  color: #FFF;
}
.dark-theme .related-title {
  color: #FFF;
}
.dark-theme .related-article-card {
  background-color: var(--color-slate-100);
  border-color: rgba(255, 255, 255, 0.03);
}
.dark-theme .related-card-title {
  color: #FFF;
}
.dark-theme .related-nav-btn {
  background-color: var(--color-slate-100);
  border-color: rgba(255, 255, 255, 0.05);
  color: #FFF;
}
.dark-theme .related-nav-btn:hover {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
}

/* 7. Mega Menu Layout Styles */
.nav-links-wrapper ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.nav-links-wrapper li {
  position: relative;
}
.nav-links-wrapper li a {
  display: block;
  padding: 1.25rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s, background-color 0.3s;
}
.nav-links-wrapper li.current-menu-item > a,
.nav-links-wrapper li.current_page_item > a,
.nav-links-wrapper li a:hover {
  color: #FFF;
}
/* Mega Menu Submenu support */
.nav-links-wrapper li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links-wrapper ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-slate-900);
  border-top: 3px solid var(--color-brand);
  min-width: 240px;
  flex-direction: column;
  align-items: stretch;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.nav-links-wrapper ul ul li a {
  padding: 0.75rem 1.25rem;
  text-transform: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-links-wrapper ul ul li a:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #FFF;
}

