span.badge.bg-danger.featured-article-badge {
    display: none;
}

/* ================================
   Root Variables for Theming
================================ */
:root {
  --primary-color: #2ba84a;
  --secondary-color: #2a69b8;
  --link-color: #0077cc;
  --link-hover-color: #044CD0;
  --danger-color: #dc3545;
  --text-color: #333;
  --heading-color: #1a2b4c;
  --bg-light: #f4f6f8;
  --bg-white: #fff;
  --font-family-base: 'Inter', Arial, sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.8;
  --container-max-width: 1140px;
}

/* ================================
   Base Styles
================================ */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-color);
  background-color: var(--bg-light);
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
}

/* ================================
   Typography
================================ */
h1, h2, h3, h4, h5 {
  color: var(--heading-color);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

h1 { font-size: 2.2em; line-height: 1.3; }
h2 { font-size: 1.7em; line-height: 1.4; }
h3 { font-size: 1.3em; line-height: 1.5; }

p {
  margin-bottom: 1.2em;
}

/* ================================
   Links
================================ */
a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus,
a:active {
  color: var(--link-hover-color);
  text-decoration: underline;
}

/* ================================
   Container & Layout
================================ */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

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

/* ================================
   Megamenu Styling
================================ */
.sp-megamenu-parent {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-megamenu-parent > li > a,
.sp-megamenu-parent > li > span {
  display: inline-block;
  padding: 0 15px;
  line-height: 60px;
  font-size: 14px;
  color: #252525;
}

.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li:hover > a {
  color: var(--primary-color);
  font-weight: 500;
}

.sp-megamenu-parent > li:last-child > a {
  padding-left: 15px;
}

/* ================================
   Article Layout
================================ */
.item-page,
.com-content-article__body {
  max-width: 900px;
  margin: 2em auto;
  padding: 0 1em;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ================================
   Article List Styling
================================ */
.article-list .article,
.mod-articles-items li {
  border: 1px solid #dee2e6;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--bg-white);
  border-radius: 6px;
  transition: box-shadow 0.3s ease;
}

.article-list .article:hover,
.mod-articles-items li:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.mod-articles-items {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

/* ================================
   Tables
================================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background-color: var(--bg-white);
  font-size: 1rem;
}

table td {
  border: 1px solid #dee2e6;
  padding: 0.75rem 1rem;
  text-align: left;
}

table tr:nth-child(even) {
  background-color: #f8f9fa;
}

table a {
  color: var(--link-color);
}

table a:hover {
  text-decoration: underline;
}

/* Responsive Table Wrapper */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ================================
   Mobile Table Styling
================================ */
.mobile-view .municipality-table td {
  width: 100%;
  display: block;
  text-align: center;
}

/* ================================
   Visibility Control
================================ */
.desktop-view {
  display: block;
}

.mobile-view {
  display: none;
}

@media screen and (max-width: 600px) {
  .desktop-view {
    display: none !important;
  }
  .mobile-view {
    display: block !important;
}

/* ================================
   Badges & Highlights
================================ */
.featured-article-badge {
  background-color: var(--danger-color);
  color: #fff;
  padding: 0.3em 0.6em;
  border-radius: 4px;
  font-size: 0.85em;
  display: inline-block;
}

/* ================================
   Callout Box
================================ */
.go-pro {
  background-color: #e4ecf9;
  padding: 1em;
  border-left: 4px solid var(--secondary-color);
  border-radius: 6px;
  margin-top: 2em;
}

/* ================================
   Region Hover Effect
================================ */
.region {
  transition: fill 0.3s ease;
}

.region:hover {
  fill: #BC042B;
}

/* ================================
   Iframes
================================ */
iframe {
  margin: 1em 0;
  border: none;
  width: 100%;
  max-width: 100%;
}

/* ================================
   Utility Spacing
================================ */
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.pt-2 { padding-top: 2rem; }
.pb-2 { padding-bottom: 2rem; }
