/* ==========================================================================
   EffectiveMedia.pl - Stylistyka Portalu Gospodarczo-Branżowego
   Kolorystyka zoptymalizowana i spójna z gorzowwlkp.pl (#072b4f, #1a6bb5)
   ========================================================================== */

:root {
  --color-primary: #072b4f;
  --color-primary-dark: #041a30;
  --color-primary-light: #0d467e;
  --color-accent: #1a6bb5;
  --color-accent-hover: #145592;
  --color-highlight: #d97706;
  --color-highlight-light: #fef3c7;
  --color-success: #16a34a;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-border: #e2e8f0;
  --color-border-subtle: #f1f5f9;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.09), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 14px 24px -4px rgba(7, 43, 79, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --max-width: 1200px;
  --content-width: 860px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

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

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.content-container {
  width: 100%;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

/* Header & Navigation */
.site-header {
  background-color: var(--color-primary);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.top-bar {
  background-color: var(--color-primary-dark);
  font-size: 0.8125rem;
  color: #94a3b8;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
}

.top-bar-badge .dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.top-bar-links a {
  color: #cbd5e1;
  margin-left: 1.25rem;
}

.top-bar-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

.header-main {
  padding: 0.9rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  text-decoration: none;
}

.site-logo:hover {
  text-decoration: none;
  color: #ffffff;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #1a6bb5 0%, #0d467e 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  line-height: 1.15;
}

.logo-title span {
  color: #38bdf8;
}

.logo-tagline {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.4rem 0;
  position: relative;
  text-decoration: none;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: #38bdf8;
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #38bdf8;
  border-radius: 2px;
}

.btn-header-external {
  background-color: #1a6bb5;
  color: #ffffff !important;
  padding: 0.45rem 1rem !important;
  border-radius: var(--radius-md);
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.btn-header-external:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: var(--color-primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu a {
  color: #e2e8f0;
  padding: 0.6rem 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, var(--color-primary) 0%, #0c3b69 100%);
  color: #ffffff;
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: var(--color-bg);
  border-radius: 24px 24px 0 0;
}

.hero-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #7dd3fc;
  margin-bottom: 1.25rem;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.8px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-search-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  gap: 0.5rem;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.hero-search-input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--color-text);
  outline: none;
}

.hero-search-input::placeholder {
  color: var(--color-text-muted);
}

.hero-search-btn {
  background: var(--color-accent);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.15s ease;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Breadcrumbs */
.breadcrumbs-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  color: var(--color-text-muted);
}

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

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

.breadcrumbs-separator {
  color: var(--color-text-light);
  font-size: 0.75rem;
}

.breadcrumbs-current {
  color: var(--color-text);
  font-weight: 600;
}

/* Category Grid & Cards */
.section-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
  display: block;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.section-desc {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
  font-size: 1rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.cat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.cat-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cat-card-icon {
  width: 46px;
  height: 46px;
  background-color: #eff6ff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.cat-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.cat-card-title a {
  color: var(--color-primary);
  text-decoration: none;
}

.cat-card-title a:hover {
  color: var(--color-accent);
}

.cat-card-desc {
  color: var(--color-text-muted);
  font-size: 0.9125rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.cat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-border-subtle);
  font-size: 0.8125rem;
}

.cat-card-badge {
  background-color: #f1f5f9;
  color: var(--color-text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.cat-card-link {
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Article Page Layout */
.article-layout {
  padding: 2.5rem 0 4rem;
}

.article-header {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0 2rem;
  margin-bottom: 2.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

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

.article-category-badge {
  background-color: #e0f2fe;
  color: #0369a1;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  letter-spacing: -0.6px;
  margin-bottom: 1.25rem;
}

.article-lead {
  font-size: 1.15rem;
  color: #334155;
  line-height: 1.65;
  font-weight: 400;
  border-left: 4px solid var(--color-accent);
  padding-left: 1.25rem;
}

/* Article Content Typography */
.article-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #24292f;
}

.article-body h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 2.25rem 0 1rem;
  letter-spacing: -0.3px;
  line-height: 1.3;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e2e8f0;
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-light);
  margin: 1.75rem 0 0.75rem;
  line-height: 1.35;
}

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

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

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

.article-body strong {
  color: #0f172a;
}

/* Info Box / Callout Box */
.info-box {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 5px solid #22c55e;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.info-box-title {
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.tip-box {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 5px solid #2563eb;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.tip-box-title {
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.tip-box p:last-child {
  margin-bottom: 0;
}

/* Local Partner Box / External Directory CTA Box */
.directory-cta-box {
  background: linear-gradient(135deg, #072b4f 0%, #0d467e 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.directory-cta-box::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.directory-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #7dd3fc;
  width: fit-content;
}

.directory-cta-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}

.directory-cta-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.directory-cta-link-wrap {
  margin-top: 0.5rem;
}

.directory-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #f59e0b;
  color: #041a30 !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.directory-cta-btn:hover {
  background-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.45);
}

/* Pricing Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.925rem;
  background: #ffffff;
}

.custom-table th {
  background-color: #f8fafc;
  color: var(--color-primary);
  font-weight: 700;
  padding: 0.9rem 1.25rem;
  border-bottom: 2px solid var(--color-border);
}

.custom-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  color: #334155;
}

.custom-table tr:last-child td {
  border-bottom: none;
}

.custom-table tr:hover {
  background-color: #f8fafc;
}

/* Table of Contents */
.toc-box {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.toc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list li {
  margin-bottom: 0.45rem;
  font-size: 0.925rem;
}

.toc-list a {
  color: #334155;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.toc-list a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* FAQ Accordion */
.faq-section {
  margin: 3rem 0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background-color 0.15s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: var(--color-accent);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid var(--color-border-subtle);
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Related Guides */
.related-guides-section {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  padding: 3.5rem 0;
  margin-top: 3.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.related-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.related-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

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

.related-card-title a:hover {
  color: var(--color-accent);
}

.related-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Static Pages */
.static-page-section {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2.5rem auto 4rem;
  box-shadow: var(--shadow-sm);
}

.static-page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.contact-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  font-size: 0.95rem;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26, 107, 181, 0.15);
}

.btn-submit {
  background-color: var(--color-accent);
  color: #ffffff;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn-submit:hover {
  background-color: var(--color-accent-hover);
}

/* Footer */
.site-footer {
  background-color: var(--color-primary-dark);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  margin-top: auto;
  border-top: 3px solid var(--color-accent);
  font-size: 0.9125rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.2px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.footer-desc {
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: #cbd5e1;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .article-title {
    font-size: 1.85rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-search-box {
    flex-direction: column;
  }
  .hero-search-btn {
    width: 100%;
    justify-content: center;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .static-page-section {
    padding: 1.5rem;
  }
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
