/* ===== CSS RESET & BASE ===== */
/* Google Fonts loaded via <link> in HTML for better performance */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --blue-primary: #0077b6;
  --blue-dark: #004b76;
  --green-dark: #005c45;
  --green-cta: #597c39;
  --red: #c0003c;
  --text-dark: #1a1a1a;
  --text-gray: #5f5f5f;
  --bg-light: #f1f1f1;
  --bg-light-2: #f9fcfa;
  --bg-light-3: #eeeef2;
  --blue-light: #e6f2f8;
  --blue-light-2: #d3e5ee;
  --white: #ffffff;
  --border-light: #e1e1e1;

  /* Typography */
  --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --container-max: 1290px;
  --container-padding: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--blue-dark);
}

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

ul, ol {
  list-style: none;
}

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

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }

p {
  margin-bottom: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== HEADER / NAVBAR ===== */
.header {
  background: var(--white);
  box-shadow: none;
  position: relative;
  z-index: 1000;
  height: 80px;
}

.header--with-shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: var(--blue-primary);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-primary);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.header__cta:hover {
  background: var(--blue-dark);
  color: var(--white) !important;
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.3s;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--bg-light);
  padding: 12px 0;
  font-size: 14px;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__home {
  width: 16px;
  height: 16px;
}

.breadcrumb a {
  color: var(--text-gray);
}

.breadcrumb span {
  color: var(--text-gray);
}

/* ===== HERO SECTION ===== */
.hero-wrapper {
  max-width: var(--container-max);
  margin: 24px auto;
  padding: 0 var(--container-padding);
}

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding: 48px 40px;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  overflow: hidden;
  border-radius: 12px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
  border-radius: 12px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
  max-width: 700px;
}

.hero__text {
  font-size: 14px;
  color: var(--white);
  max-width: 700px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-primary);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}

.hero__btn:hover {
  background: var(--blue-dark);
  color: var(--white) !important;
}

.hero__btn svg,
.hero__btn img {
  width: 20px;
  height: 20px;
}

/* ===== STATES / BUNDESLAND GRID ===== */
.states {
  padding: 60px 0;
  text-align: center;
}

.states__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.states__subtitle {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.states__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.state-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--bg-light-3);
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.state-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--blue-primary);
}

.state-card__wappen {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.state-card__name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-primary);
  text-align: left;
}

/* ===== FEATURED POSTS / BELIEBTE BEITRAGE ===== */
.featured-posts {
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.featured-carousel {
  position: relative;
  margin-bottom: 24px;
  padding: 0 50px;
}

.featured-carousel__viewport {
  overflow: hidden;
}

.featured-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.featured-card {
  border-radius: 10px;
  padding: 32px 28px;
  text-align: left;
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.featured-card--green { background: var(--green-dark); }
.featured-card--red { background: var(--red); }
.featured-card--blue { background: var(--blue-dark); }

.featured-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.featured-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.featured-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.featured-card__meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.featured-card__excerpt,
.featured-card p.featured-card__excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.featured-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-card__link svg {
  width: 18px;
  height: 18px;
}

/* Carousel navigation */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: box-shadow 0.2s;
}

.carousel-arrow:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: var(--blue-primary);
}

/* ===== LATEST POSTS / LETZTER BEITRAG ===== */
.latest-posts {
  padding: 60px 0;
  text-align: center;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: left;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.post-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.post-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-card__meta-item svg {
  width: 14px;
  height: 14px;
  fill: var(--text-gray);
}

.post-card__excerpt {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-primary);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  align-self: flex-start;
  transition: background 0.2s;
}

.post-card__link:hover {
  background: var(--blue-dark);
  color: var(--white) !important;
}

.post-card__link svg {
  width: 16px;
  height: 16px;
}

/* Colored READ MORE buttons */
.post-card__link--green { background: var(--green-dark); }
.post-card__link--green:hover { background: #004535; }
.post-card__link--red { background: var(--red); }
.post-card__link--red:hover { background: #a00032; }
.post-card__link--blue { background: var(--blue-dark); }
.post-card__link--blue:hover { background: #003660; }

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all:hover {
  color: var(--blue-primary);
}

.view-all svg {
  width: 18px;
  height: 18px;
}

/* ===== GREEN CTA BANNER ===== */
.cta-banner {
  padding: 0 0 60px;
}

.cta-banner__inner {
  background: var(--green-cta);
  border-radius: 10px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-banner__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.cta-banner__icon img {
  width: 100%;
  height: 100%;
}

.cta-banner__text h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-banner__text p {
  font-size: 16px;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 0;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-primary) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.2s;
}

.cta-banner__btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--blue-primary) !important;
}

.cta-banner__btn svg {
  width: 20px;
  height: 20px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.footer__overlay {
  display: none;
}

.footer__content {
  position: relative;
  z-index: 2;
  padding: 40px 0 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

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

.footer__logo img {
  height: 50px;
  width: auto;
}

.footer__copyright {
  font-size: 14px;
  color: var(--text-dark);
}

.footer__copyright p {
  margin-bottom: 0;
  color: var(--text-dark);
}

.footer__copyright strong {
  font-weight: 700;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer__links a {
  color: var(--text-dark);
  white-space: nowrap;
  font-weight: 500;
}

.footer__links a:hover {
  color: var(--blue-primary);
}

.footer__links .separator {
  display: inline-block;
}

.footer__links .separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-gray);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  background: none;
  cursor: pointer;
}

.pagination__btn:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.pagination__btn.active {
  background: var(--red);
  color: var(--white);
}

.pagination__btn--arrow {
  font-size: 18px;
  color: var(--text-gray);
}

.pagination__ellipsis {
  font-size: 14px;
  color: var(--text-gray);
}

/* ===== BLOG DETAIL ===== */
.article-header {
  padding: 40px 0 20px;
}

.article-header h1 {
  font-size: 32px;
  max-width: 840px;
}

.article-layout {
  display: flex;
  gap: 40px;
  padding: 20px 0 60px;
}

.article-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.article-sidebar__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.article-sidebar__nav a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--blue-dark);
  background: rgba(211, 229, 238, 0.5);
  border-radius: 4px;
  margin-bottom: 4px;
  text-decoration: none;
  line-height: 1.4;
}

.article-sidebar__nav a:hover {
  background: rgba(211, 229, 238, 0.8);
}

.article-content {
  flex: 1;
  max-width: 840px;
}

.article-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.article-content h3 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.article-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Summary Box */
.summary-box {
  background: var(--blue-light);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.summary-box__title,
.article-content .summary-box__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-box__title svg {
  width: 24px;
  height: 24px;
}

.summary-box ul {
  list-style: disc;
  padding-left: 20px;
}

.summary-box ul li {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Data Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 40px;
}

.data-table th {
  background: var(--blue-primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}

.data-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}

.data-table tr:nth-child(even) {
  background: var(--bg-light-2);
}

/* CTA Boxes */
.cta-box {
  border-radius: 10px;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
}

.cta-box--red {
  background: var(--red);
  color: var(--white);
}

.cta-box--blue {
  background: var(--blue-dark);
  color: var(--white);
}

.cta-box__title,
.article-content .cta-box__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 0;
  text-transform: uppercase;
}

.cta-box__text,
.article-content .cta-box__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.cta-box__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.cta-box--blue .cta-box__btn {
  color: var(--blue-dark) !important;
}

.cta-box__btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* FAQ Accordion */
.faq-section {
  margin: 40px 0;
}

.faq-section__title {
  font-size: 24px;
  margin-bottom: 20px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
  transition: background 0.2s;
}

.faq-item__question:hover {
  background: var(--bg-light-2);
}

.faq-item__arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.faq-item.active .faq-item__answer {
  display: block;
}

/* Chart */
.chart-container {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  margin: 40px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  background: var(--white);
}

.chart-container canvas {
  max-height: 360px;
}

/* Info Cards (Bodenrichtwerte und Preise) */
.info-cards {
  margin: 48px 0;
}

.info-cards h2 {
  margin-bottom: 20px;
}

.info-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 16px 0 8px;
}

.info-card__text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 40px var(--container-padding) 80px;
}

.legal-content h1 {
  font-size: 32px;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 { font-size: 24px; }
  h2 { font-size: 18px; }
  h3 { font-size: 16px; }

  .header {
    height: 64px;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .header__nav.active {
    display: flex;
  }

  .header__hamburger {
    display: flex;
  }

  .header__logo img {
    height: 40px;
  }

  .hero-wrapper {
    margin: 16px auto;
    padding: 0 16px;
  }

  .hero {
    min-height: 280px;
    padding: 32px 20px;
    background-image: url('../images/hero-bg-mobile.webp');
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__text {
    font-size: 13px;
  }

  .states {
    padding: 40px 0;
  }

  .states__title {
    font-size: 16px;
  }

  .states__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .state-card {
    padding: 12px;
  }

  .state-card__wappen {
    width: 36px;
    height: 36px;
  }

  .state-card__name {
    font-size: 12px;
  }

  .featured-carousel {
    padding: 0 40px;
  }

  .featured-carousel__track {
    gap: 16px;
  }

  .featured-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .carousel-arrow {
    display: none;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .post-card {
    padding: 20px 16px;
  }

  .cta-banner__inner {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
  }

  .cta-banner__left {
    flex-direction: column;
  }

  .cta-banner__text h3 {
    font-size: 24px;
  }

  .cta-banner__icon {
    width: 60px;
    height: 60px;
  }

  .footer__content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer__left {
    flex-direction: column;
  }

  .section-title {
    font-size: 20px;
  }

  /* Blog detail mobile */
  .article-layout {
    flex-direction: column;
  }

  .article-sidebar {
    width: 100%;
    position: relative;
    top: 0;
  }

  .article-header h1 {
    font-size: 24px;
  }

  .article-content h2 {
    font-size: 18px;
  }

  .summary-box {
    padding: 20px;
  }

  .summary-box__title {
    font-size: 18px;
  }

  .cta-box {
    padding: 24px 20px;
  }

  .cta-box__title {
    font-size: 18px;
  }

  .info-cards__grid {
    grid-template-columns: 1fr;
  }

  .data-table {
    font-size: 12px;
  }

  .data-table th,
  .data-table td {
    padding: 8px 10px;
  }

  .legal-content {
    padding: 24px var(--container-padding) 60px;
  }

  .legal-content h1 {
    font-size: 24px;
  }

  /* Pagination mobile */
  .pagination {
    gap: 4px;
  }

  .pagination__btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
