/* ==========================================================================
   RELEASE NEWS - MAIN STYLESHEET
   Design System: Newsroom Editorial + Modern Digital PR
   ========================================================================== */

/* 1. Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #222222;
  background-color: #ffffff;
  line-height: 1.65;
  font-size: 1rem;
}

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

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

ul, ol {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-narrow {
  max-width: 860px;
}

/* 2. Typography */
h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #111111;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.625rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.35rem; }
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  margin-bottom: 12px;
}

.section-subtitle {
  color: #666666;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 3. Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  line-height: 1;
}

.btn-primary {
  background-color: #e31837;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #c4122d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 24, 55, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #111111;
  border-color: #e5e5e5;
}

.btn-secondary:hover {
  border-color: #111111;
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: #111111;
}

.category-badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: #e31837;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  line-height: 1.2;
}

.category-badge:hover {
  background-color: #111111;
  color: #ffffff;
}

/* 4. Top Ticker Bar */
.top-ticker-bar {
  background-color: #111111;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-ticker-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-marquee {
  display: flex;
  gap: 32px;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e0e0e0;
}

.ticker-item .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #e31837;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 5. Sticky Header & Running Text Ticker Container */
.sticky-header-container {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}

body.admin-bar .sticky-header-container {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .sticky-header-container {
    top: 46px;
  }
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.sticky-header-container.is-scrolled .site-header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
}

.site-brand {
  display: flex;
  align-items: center;
}

.site-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-brand .custom-logo,
.site-brand img {
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111111;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-title span {
  color: #e31837;
}

.nav-drawer-wrapper {
  display: flex;
  align-items: center;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333333 !important;
  padding: 6px 0;
  position: relative;
  text-decoration: none !important;
  display: inline-block;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0 !important;
  height: 2px;
  background-color: #e31837;
  transition: width 0.25s ease;
}

.nav-menu a:hover {
  color: #e31837 !important;
}

.nav-menu a:hover::after {
  width: 100% !important;
}

/* Override any WordPress core auto-current-menu-item underlines on anchor links */
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a,
.nav-menu .current-menu-ancestor > a {
  color: #333333 !important;
}

.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after,
.nav-menu .current-menu-ancestor > a::after {
  width: 0 !important;
}

.nav-menu .current-menu-item > a:hover,
.nav-menu .current_page_item > a:hover {
  color: #e31837 !important;
}

.nav-menu .current-menu-item > a:hover::after,
.nav-menu .current_page_item > a:hover::after {
  width: 100% !important;
}

.nav-menu li.is-active > a {
  color: #e31837 !important;
}

.nav-menu li.is-active > a::after {
  width: 100% !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #111111;
  cursor: pointer;
  padding: 4px;
}

/* 6. Hero Section */
.hero-section {
  padding: 64px 0 72px;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  color: #e31837;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.125rem;
  color: #555555;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Cards Layered Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-mockup-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.news-card-mockup {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.news-card-mockup--main {
  position: relative;
  z-index: 3;
}

.news-card-mockup--back-1 {
  position: absolute;
  top: -16px;
  left: 16px;
  right: -16px;
  bottom: 16px;
  z-index: 2;
  background-color: #fafafa;
  opacity: 0.75;
  transform: rotate(3deg);
}

.news-card-mockup--back-2 {
  position: absolute;
  top: -28px;
  left: -16px;
  right: 16px;
  bottom: 28px;
  z-index: 1;
  background-color: #f0f0f0;
  opacity: 0.5;
  transform: rotate(-3deg);
}

.mockup-top-header {
  background: #111111;
  color: #ffffff;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

.mockup-body {
  padding: 24px;
}

.mockup-category {
  color: #e31837;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.mockup-title {
  font-size: 1.35rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.mockup-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
  background-color: #ececec;
}

.mockup-meta {
  font-size: 0.8rem;
  color: #777777;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 7. Trusted By Section */
.trusted-section {
  padding: 36px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  background-color: #fafafa;
}

.trusted-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 20px;
}

.trusted-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-logo-item {
  font-size: 1.15rem;
  font-weight: 700;
  color: #666666;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.brand-logo-item--image {
  opacity: 0.65;
}

.brand-logo-item img {
  max-height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  display: block;
}

.brand-logo-item:hover {
  opacity: 1;
  color: #111111;
  transform: translateY(-2px);
}

.brand-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* 8. Stats Counter Bar */
.stats-section {
  padding: 56px 0;
  background-color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #e31837;
  line-height: 1.1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
}

/* 9. Editorial Feature Highlight ("Your story. Written like news.") */
.editorial-feature-section {
  padding: 72px 0;
  background-color: #f9f9f9;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.editorial-tag {
  color: #e31837;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.editorial-title {
  font-size: 2.35rem;
  margin-bottom: 20px;
}

.editorial-desc {
  font-size: 1.05rem;
  color: #555555;
  margin-bottom: 24px;
}

.editorial-checklist {
  margin-bottom: 32px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #222222;
}

.checklist-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e31837;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.news-preview-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-preview-img {
  border-radius: 8px;
  height: 220px;
  width: 100%;
  object-fit: cover;
  margin: 16px 0;
  background-color: #eeeeee;
}

.news-preview-excerpt {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* 10. "Where Your Story Gets Published" (Published Grid) */
.published-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.published-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.news-card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #eaeaea;
}

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

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

.news-card-thumb .category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.news-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-title {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.news-card-title a:hover {
  color: #e31837;
}

.news-card-excerpt {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.news-card-footer {
  font-size: 0.8rem;
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

/* 11. "From Story to Publication" (Process Steps) */
.process-section {
  padding: 80px 0;
  background-color: #111111;
  color: #ffffff;
}

.process-section .section-title {
  color: #ffffff;
}

.process-section .section-subtitle {
  color: #aaaaaa;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 48px;
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s, background 0.25s;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.process-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e31837;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.25rem;
}

.process-step-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e31837;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.process-card-title {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.process-card-desc {
  font-size: 0.85rem;
  color: #aaaaaa;
  line-height: 1.5;
}

/* 12. "Why Release.co.id?" & "Our Services" */
.features-services-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.features-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.dark-feature-box {
  background-color: #111111;
  color: #ffffff;
  border-radius: 12px;
  padding: 40px;
}

.dark-feature-title {
  color: #ffffff;
  font-size: 1.85rem;
  margin-bottom: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list-item {
  display: flex;
  gap: 16px;
}

.feature-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #e31837;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.feature-item-desc {
  font-size: 0.9rem;
  color: #aaaaaa;
}

.services-box {
  background-color: #111111;
  color: #ffffff;
  border-radius: 12px;
  padding: 40px;
}

.services-box-title {
  color: #ffffff;
  font-size: 1.85rem;
  margin-bottom: 24px;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.services-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s;
}

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

.services-item:hover {
  transform: translateX(4px);
}

.services-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #888888;
}

.services-content h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.services-content p {
  font-size: 0.85rem;
  color: #aaaaaa;
}

.services-link {
  font-size: 0.8rem;
  color: #e31837;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

/* 13. Pricing Section ("Choose Your Publication") */
.pricing-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card--featured {
  border-color: #e31837;
  box-shadow: 0 8px 24px rgba(227, 24, 55, 0.12);
  position: relative;
}

.pricing-plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777777;
  margin-bottom: 12px;
}

.pricing-card--featured .pricing-plan-name {
  color: #e31837;
}

.pricing-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
}

.pricing-card--featured .pricing-price {
  color: #e31837;
}

.pricing-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444444;
  margin-bottom: 12px;
}

.pricing-check {
  color: #e31837;
  font-weight: bold;
}

/* 14. Single Article / Editorial Layout */
.single-post-layout {
  padding: 48px 0 80px;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 24px;
}

.breadcrumbs a:hover {
  color: #e31837;
}

.article-header {
  margin-bottom: 32px;
}

.article-header .category-badge {
  margin-bottom: 16px;
}

.article-title {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: #666666;
  padding-bottom: 24px;
  border-bottom: 1px solid #eaeaea;
  flex-wrap: wrap;
}

.article-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.article-featured-image {
  margin-bottom: 36px;
  border-radius: 12px;
  overflow: hidden;
}

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

.article-caption {
  font-size: 0.85rem;
  color: #888888;
  font-style: italic;
  margin-top: 8px;
  text-align: center;
}

.article-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2b2b2b;
}

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

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-content blockquote {
  border-left: 4px solid #e31837;
  padding-left: 24px;
  margin: 32px 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: #111111;
}

.article-content ul, 
.article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 8px;
}

/* Social Share Bar */
.social-share-wrap {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.share-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  transition: opacity 0.2s;
}

.share-btn:hover {
  opacity: 0.85;
}

.share-btn--wa { background-color: #25D366; }
.share-btn--tw { background-color: #111111; }
.share-btn--fb { background-color: #1877F2; }
.share-btn--in { background-color: #0A66C2; }

/* Author Box */
.author-box {
  background: #f9f9f9;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 20px;
  margin: 48px 0;
  align-items: center;
}

.author-box-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box-name {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.author-box-bio {
  font-size: 0.9rem;
  color: #666666;
}

/* Related News */
.related-news-section {
  margin-top: 64px;
}

.related-news-title {
  font-size: 1.65rem;
  margin-bottom: 24px;
  border-bottom: 2px solid #111111;
  padding-bottom: 12px;
}

/* 15. Comments */
.comments-area {
  margin-top: 64px;
}

.comments-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.comment-list {
  margin-bottom: 40px;
}

.comment-body {
  padding: 20px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: #fafafa;
}

.comment-meta {
  font-size: 0.85rem;
  color: #777777;
  margin-bottom: 8px;
}

.comment-author {
  font-weight: 700;
  color: #111111;
}

.comment-respond {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 32px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #e31837;
}

.comment-form .submit {
  background: #e31837;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
}

/* 16. Sidebar & Archive Grid */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding: 48px 0 80px;
}

.widget {
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 32px;
}

.widget-title {
  font-size: 1.15rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e31837;
}

/* 17. Footer */
.site-footer {
  background-color: #111111;
  color: #ffffff;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-logo-wrap .custom-logo,
.footer-logo-wrap img {
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #888888;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #888888;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #666666;
  flex-wrap: wrap;
  gap: 12px;
}

/* 18. Responsive Breakpoints */
.mobile-drawer-cta {
  display: none;
}

@media (max-width: 992px) {
  .header-inner {
    height: 68px;
  }

  .desktop-only-btn {
    display: none !important;
  }

  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #111111;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
  }

  .site-navigation {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 0;
  }

  .nav-drawer-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff !important;
    padding: 16px 20px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18) !important;
    border-bottom: 2px solid #e31837;
    z-index: 99999 !important;
    pointer-events: auto;
  }

  .nav-drawer-wrapper.is-active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: fadeInSlide 0.2s ease-out;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
  }

  .mobile-drawer-cta {
    display: block !important;
    margin-top: 24px !important;
    width: 100% !important;
    padding-top: 8px !important;
    clear: both !important;
  }

  .mobile-drawer-cta .btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px 20px !important;
    font-size: 1rem !important;
    border-radius: 9999px !important;
    box-sizing: border-box !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .features-services-grid {
    grid-template-columns: 1fr;
  }

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

  .layout-with-sidebar {
    grid-template-columns: 1fr;
  }

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

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .site-title {
    font-size: 1.3rem;
  }

  .hero-section {
    padding: 40px 0 52px;
  }

  .hero-tag {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.18;
    margin-bottom: 18px;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 12px;
  }

  .hero-mockup-stack {
    max-width: 100%;
  }

  .news-card-mockup--back-1,
  .news-card-mockup--back-2 {
    display: none;
  }

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

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

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

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .dark-feature-box,
  .services-box {
    padding: 28px 20px;
  }

  .pricing-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }

  .editorial-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}
