/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-dark: #071f19;
  --primary: #0a3329;
  --primary-light: #164f41;
  --accent: #d4af37;
  --accent-hover: #bfa030;
  --accent-light: #fdfaf0;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --text-light: #f3f4f6;
  --bg-main: #f4f6f5;
  --bg-card: #ffffff;
  --border-color: #e5e7eb;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
  --shadow-premium: 0 20px 25px -5px rgba(10, 51, 41, 0.08), 0 10px 10px -5px rgba(10, 51, 41, 0.04);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--accent);
}

/* Header & Navigation */
.main-header {
  background-color: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--accent) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-light);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--accent);
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-light);
  padding: 4rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(243, 244, 246, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Search Bar Component */
.search-form {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input {
  flex-grow: 1;
  padding: 1.1rem 1.5rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
}

.search-button {
  background-color: var(--accent);
  color: var(--primary-dark);
  border: none;
  padding: 0 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-button:hover {
  background-color: var(--accent-hover);
}

/* Page Layout */
.main-content {
  flex-grow: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}

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

@media (min-width: 992px) {
  .layout-grid {
    grid-template-columns: 2.3fr 1fr;
  }
}

/* Article Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .cards-grid.two-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Article Card */
.article-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  position: relative;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(10, 51, 41, 0.15);
}

.card-img-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background-color: var(--primary-dark);
}

.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.article-card:hover .card-img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 0.35rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-title a {
  color: var(--primary-dark);
}

.card-title a:hover {
  color: var(--primary-light);
}

.card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-more-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-smooth);
}

.read-more-btn:hover {
  color: var(--accent);
  transform: translateX(3px);
}

/* Sidebar Styling */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.widget-title {
  font-size: 1.25rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

/* Categories List */
.categories-list {
  list-style: none;
}

.categories-list li {
  margin-bottom: 0.75rem;
}

.categories-list li:last-child {
  margin-bottom: 0;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.categories-list a:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

.category-count {
  font-size: 0.8rem;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.categories-list a:hover .category-count {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

/* Sidebar Affiliate Showcase */
.sidebar-product-card {
  text-align: center;
  border: 2px dashed rgba(212, 175, 55, 0.4);
  background-color: var(--accent-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.sidebar-product-card img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  mix-blend-mode: multiply;
}

.sidebar-product-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.sidebar-product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.btn-affiliate {
  display: inline-block;
  width: 100%;
  background-color: var(--accent);
  color: var(--primary-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(212, 175, 55, 0.25);
  transition: var(--transition-smooth);
}

.btn-affiliate:hover {
  background-color: var(--accent-hover);
  color: var(--primary-dark);
  box-shadow: 0 6px 12px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* Affiliate Grid Homepage Section */
.affiliates-section {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-badge {
  background-color: var(--accent-light);
  color: var(--primary-light);
  border: 1px solid var(--accent);
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

@media (min-width: 768px) {
  .affiliates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-showcase-card {
  background-color: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.product-showcase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  background-color: var(--accent-light);
  box-shadow: var(--shadow-md);
}

.product-img-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.product-showcase-card img {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
}

.product-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Article Template (Detail Page) */
.article-header {
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

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

.article-title-detail {
  font-size: 2.75rem;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.article-featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.article-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-size: 1.85rem;
  margin: 2.5rem 0 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.article-body h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.article-body h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

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

.article-body li {
  margin-bottom: 0.5rem;
}

/* Article Table container and styling */
.table-container {
  overflow-x: auto;
  margin: 2.5rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: #ffffff;
  font-size: 1rem;
}

.article-body th {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.article-body td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.article-body tr:last-child td {
  border-bottom: none;
}

.article-body tr:nth-child(even) {
  background-color: var(--bg-main);
}

/* Inline Article Affiliate Recommendation box */
.article-affiliate-box {
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(212, 175, 55, 0.08) 100%);
  border-left: 5px solid var(--accent);
  padding: 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 600px) {
  .article-affiliate-box {
    flex-direction: row;
    align-items: center;
  }
}

.affiliate-box-img {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.affiliate-box-img img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}

.affiliate-box-info {
  flex-grow: 1;
}

.affiliate-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-light);
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.affiliate-box-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--primary-dark);
}

.affiliate-box-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.affiliate-box-action {
  flex-shrink: 0;
}

.affiliate-box-action .btn-affiliate {
  width: auto;
  white-space: nowrap;
  padding: 0.8rem 1.75rem;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--primary-light);
}

.breadcrumbs span.separator {
  color: var(--border-color);
}

.breadcrumbs span.current {
  color: var(--primary-light);
  font-weight: 500;
}

/* Static Page Templates (Sobre, Contato, etc.) */
.static-page-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.static-page-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.static-page-content {
  font-size: 1.1rem;
  line-height: 1.75;
}

.static-page-content p {
  margin-bottom: 1.5rem;
}

.static-page-content h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
}

/* Contact Form */
.contact-form {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-group.full-width {
    grid-column: span 2;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-control {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(22, 79, 65, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  justify-self: start;
}

.btn-submit:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Search Page specific */
.search-results-header {
  margin-bottom: 2rem;
}

.search-results-info {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.search-no-results {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.search-no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* Footer styling */
.main-footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
  margin-top: auto;
  border-top: 3px solid var(--accent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer-widget-logo .logo-text {
  margin-bottom: 1rem;
}

.footer-widget-logo p {
  color: rgba(243, 244, 246, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

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

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: rgba(243, 244, 246, 0.75);
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: var(--accent);
  padding-left: 4px;
}

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

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.footer-social-links a:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(243, 244, 246, 0.5);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-legal-links a {
  color: rgba(243, 244, 246, 0.5);
}

.footer-legal-links a:hover {
  color: var(--accent);
}

/* Category Detail Header */
.category-header {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  text-align: center;
  border-bottom: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.category-header-title {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.category-header-title span {
  color: var(--accent);
}

.category-header-subtitle {
  color: rgba(243, 244, 246, 0.8);
  font-size: 1.1rem;
  font-weight: 300;
}
