/* =========================================================================
   CSS Custom Properties (Brand Colors)
   ========================================================================= */
:root {
  --cr-green:        #8cab2e;
  --cr-green-dark:   #6d8a1f;
  --cr-green-light:  #a4c44a;
  --cr-orange:       #f0a500;
  --cr-dark:         #1a1a1a;
  --cr-gray:         #6c757d;
  --cr-light:        #f8f9fa;
  --cr-white:        #ffffff;
  --cr-footer-bg:    #222328;
  --cr-footer-text:  #616161;
  --cr-heading-font: 'Quicksand', sans-serif;
  --cr-body-font:    'Nunito Sans', sans-serif;
  --cr-display-font: 'Amatic SC', cursive;
}

/* =========================================================================
   Typography
   ========================================================================= */
body {
  font-family: var(--cr-body-font);
  color: var(--cr-dark);
  overflow-x: hidden;
  padding-top: 108px; /* top-bar (~36px) + navbar (~72px) */
}

@media (max-width: 991px) {
  body {
    padding-top: 72px; /* navbar only on mobile (top-bar hidden) */
  }
  .navbar {
    top: 0;
  }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--cr-heading-font);
  font-weight: 700;
}

/* =========================================================================
   Navbar
   ========================================================================= */
.wgl-theme-header {
  /* wrapper matching production */
}

.navbar {
  background-color: #ffffff;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  transition: box-shadow 0.3s ease;
  z-index: 99999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  top: 36px; /* height of top-bar */
}

.navbar.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.navbar.scrolled .nav-link {
  color: #20595E !important;
}

.navbar .navbar-brand img {
  max-height: 48px;
  width: auto;
}

/* Primary nav - production match */
.primary-nav {
  display: block;
  text-align: start;
}

.primary-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.primary-nav .menu > li.menu-item {
  position: relative;
  display: inline-block;
  list-style: none;
}

.primary-nav .menu > li.menu-item > a {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0.32px;
  color: #232323;
  padding: 0 24px;
  line-height: 30px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s;
}

.primary-nav .menu > li.menu-item.current-menu-item > a,
.primary-nav .menu > li.menu-item.current-menu-parent > a,
.primary-nav .menu > li.menu-item > a.active {
  color: #20595E;
}

.primary-nav .menu > li.menu-item > a:hover {
  opacity: 0.8;
}

/* Submenu - production match */
.primary-nav .sub-menu,
.primary-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  padding: 21px 0 27px;
  box-shadow: 0 0 38px rgba(0,0,0,0.15);
  min-width: 200px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  list-style: none;
  margin: 0;
  border: none;
  display: block;
}

.primary-nav .menu > li.menu-item-has-children:hover > .sub-menu,
.primary-nav .menu > li.menu-item-has-children:hover > .dropdown-menu,
.primary-nav .menu > li.menu-item-has-children > .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Reset Bootstrap's default dropdown positioning on desktop */
@media (min-width: 992px) {
  .primary-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(8px);
    transition: all 0.25s ease;
  }
  .primary-nav .dropdown-menu.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

.primary-nav .sub-menu li,
.primary-nav .dropdown-menu li {
  display: block;
  list-style: none;
}

.primary-nav .sub-menu li a,
.primary-nav .dropdown-menu li a {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #232323;
  padding: 2px 34px;
  line-height: 30px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition: color 0.2s;
}

.primary-nav .sub-menu li a:hover,
.primary-nav .dropdown-menu li a:hover {
  color: var(--cr-green);
  background: transparent;
}

/* Plus icon */
.menu-item__plus {
  display: none;
}

/* Mobile hamburger */
.mobile-hamburger-toggle {
  display: none;
}

/* Grid icon button */
.navbar-grid-icon {
  background: #1a2e20;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none;
}

.navbar-grid-icon:hover {
  background: #20595E;
  color: #fff;
}

/* Mobile toggler */
.navbar-toggler {
  border: none;
  color: #20595E;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile nav styles */
@media (max-width: 991px) {
  .primary-nav .menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .primary-nav .menu > li.menu-item {
    display: block;
    width: 100%;
  }
  
  .primary-nav .menu > li.menu-item > a {
    padding: 8px 0;
    display: block;
    width: 100%;
  }
  
  .primary-nav .sub-menu,
  .primary-nav .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    border-radius: 0;
    background: transparent;
    display: none;
  }
  
  .primary-nav .dropdown-menu.show {
    display: block;
  }
  
  .primary-nav .menu > li.menu-item-has-children:hover > .sub-menu,
  .primary-nav .menu > li.menu-item-has-children:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .navbar-grid-icon {
    display: none;
  }
}

/* =========================================================================
   Top Bar
   ========================================================================= */
.top-bar {
  background: #20595e;
  font-size: 13px;
  font-weight: 400;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: #ffffff;
}

.top-bar-pill {
  display: inline-block;
  padding: 0.2rem 0.85rem;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--cr-heading-font);
  letter-spacing: 0.03em;
}

.top-bar-pill--green {
  background: #8cab2e;
  color: #fff;
}

.top-bar-pill--olive {
  background: #c8b400;
  color: #fff;
}

.top-bar-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
  vertical-align: middle;
}

.top-bar .social-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}

.top-bar .social-icon:hover {
  color: #fff;
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 100%),
              url('../img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-section h1 {
  font-family: var(--cr-display-font);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-section .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.9;
  max-width: 650px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-section .hero-subtitle {
    font-size: 1rem;
  }
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn-cr-primary {
  background-color: var(--cr-green);
  color: #fff;
  border: 2px solid var(--cr-green);
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-family: var(--cr-heading-font);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}

.btn-cr-primary:hover {
  background-color: var(--cr-green-dark);
  border-color: var(--cr-green-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(140,171,46,0.4);
}

/* Gold CTA button matching production site */
.btn-cr-cta {
  background-color: #d4a800;
  color: #1a2e20;
  border: 2px solid #d4a800;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-family: var(--cr-heading-font);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-cr-cta:hover {
  background-color: #b89200;
  border-color: #b89200;
  color: #1a2e20;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212,168,0,0.4);
}

.btn-cr-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-family: var(--cr-heading-font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}

.btn-cr-outline:hover {
  background: #fff;
  color: var(--cr-dark);
  border-color: #fff;
}

.btn-cr-white {
  background: #fff;
  color: var(--cr-green);
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-family: var(--cr-heading-font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}

.btn-cr-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* =========================================================================
   Section Labels (small overline text)
   ========================================================================= */
.section-label {
  display: inline-block;
  font-family: var(--cr-heading-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cr-green);
  margin-bottom: 0.75rem;
}

/* =========================================================================
   Card Styles
   ========================================================================= */
.cr-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.cr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.cr-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.cr-card .card-body {
  padding: 1.75rem;
}

.cr-card .card-title {
  font-family: var(--cr-heading-font);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.cr-card .card-link {
  color: var(--cr-green);
  font-weight: 700;
  text-decoration: none;
  font-family: var(--cr-heading-font);
}

.cr-card .card-link:hover {
  color: var(--cr-green-dark);
}

/* =========================================================================
   Icon Circle
   ========================================================================= */
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(140,171,46,0.1);
  margin-bottom: 1.25rem;
  font-size: 2rem;
  color: var(--cr-green);
}

/* =========================================================================
   Stats / Counter Section
   ========================================================================= */
.stat-number {
  font-family: var(--cr-heading-font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--cr-green);
  line-height: 1;
}

.stat-label {
  font-family: var(--cr-heading-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cr-dark);
  margin-top: 0.5rem;
}

/* =========================================================================
   Partner Logo Strip
   ========================================================================= */
.partner-logo-strip {
  overflow: hidden;
  padding: 2rem 0;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.partner-logo-strip img {
  max-height: 50px;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.partner-logo-strip img:hover {
  opacity: 1;
}

/* =========================================================================
   Testimonials
   ========================================================================= */
.testimonial-card {
  background: var(--cr-light);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--cr-green);
}

.testimonial-card .quote {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

.testimonial-card .name {
  font-family: var(--cr-heading-font);
  font-weight: 700;
  color: var(--cr-dark);
}

.testimonial-card .role {
  font-size: 0.85rem;
  color: var(--cr-green);
  font-weight: 600;
}

/* =========================================================================
   CTA Section
   ========================================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--cr-green) 0%, var(--cr-green-dark) 100%);
  color: #fff;
}

/* =========================================================================
   Image with decorative overlay
   ========================================================================= */
.img-decorated {
  border-radius: 1rem;
  position: relative;
}

.img-decorated::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--cr-green);
  border-radius: 1rem;
  z-index: -1;
}

/* =========================================================================
   FAQ Accordion Overrides
   ========================================================================= */
.accordion-button:not(.collapsed) {
  background-color: rgba(140,171,46,0.08);
  color: var(--cr-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--cr-green);
}

.accordion-button {
  font-family: var(--cr-heading-font);
  font-weight: 600;
}

/* =========================================================================
   SDG Cards
   ========================================================================= */
.sdg-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s;
  height: 100%;
}

.sdg-card:hover {
  transform: translateY(-4px);
}

.sdg-card .sdg-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
  color: #616161;
  font-size: 16px;
}

.footer_top-area {
  background: #222328;
}

.wgl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row-footer {
  /* container for footer content */
}

/* Top spacer (110px) */
.footer-top-spacer {
  height: 110px;
}

/* Spacing helpers */
.footer-spacer-30 { height: 30px; }
.footer-spacer-10 { height: 10px; }
.footer-spacer-39 { height: 39px; }
.footer-spacer-8  { height: 8px; }
.footer-spacer-7  { height: 7px; }

.footer-tagline {
  color: #ffffff;
  line-height: 22.4px;
  font-size: 16px;
  font-weight: 400;
}

.footer-heading {
  color: #fff;
  font-family: var(--cr-heading-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 60px;
  margin: 0;
  padding: 0;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--cr-green);
}

/* Contact info */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-text {
  color: #ffffff !important;
  font-size: 16px;
  font-family: var(--cr-body-font);
  font-weight: 400;
  line-height: 1.5;
}

.footer-contact a.footer-contact-text:hover {
  color: var(--cr-green) !important;
}

.footer-contact-icon {
  color: var(--cr-green);
  font-size: 18px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer links list */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #ffffff;
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--cr-green);
}

/* Social icons - transparent bg, white icon */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  margin-right: 10px;
  font-size: 13px;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social a:last-child {
  margin-right: 0;
}

.footer-social a:hover {
  color: var(--cr-green);
  background: transparent;
}

/* Footer CTA button */
.btn-footer-cta {
  background: transparent;
  color: #fff;
  border: 2px solid var(--cr-green);
  border-radius: 28px;
  padding: 18px 25px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: normal;
  transition: all 0.3s;
  display: inline-block;
  line-height: 1;
}

.btn-footer-cta:hover {
  background: var(--cr-green);
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  background: #222328;
  border-top: none;
  padding: 7px 0 22px;
  font-size: 16px;
  color: #616161;
}

.footer-legal a {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 400;
}

.footer-legal a:hover {
  color: var(--cr-green) !important;
}

.footer-copy {
  color: #ffffff;
  font-size: 14px;
}

@media (max-width: 991px) {
  .footer-top-spacer {
    height: 30px;
  }
}

/* =========================================================================
   CO2 Calculator
   ========================================================================= */
.co2-calc-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  height: 100%;
}

.co2-calc-card:hover,
.co2-calc-card.active {
  border-color: var(--cr-green);
  transform: translateY(-3px);
}

.co2-calc-card .calc-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.co2-calc-card .calc-title {
  font-family: var(--cr-heading-font);
  font-weight: 700;
}

/* =========================================================================
   Form Styles
   ========================================================================= */
.form-control:focus {
  border-color: var(--cr-green);
  box-shadow: 0 0 0 0.2rem rgba(140,171,46,0.2);
}

.form-label {
  font-family: var(--cr-heading-font);
  font-weight: 600;
  font-size: 0.9rem;
}

/* =========================================================================
   Page Header (for sub-pages)
   ========================================================================= */
.page-header {
  background: linear-gradient(135deg, rgba(32,89,94,0.92) 0%, rgba(0,0,0,0.85) 100%),
              url('../img/page-header-bg.jpg') center/cover no-repeat;
  padding: 8rem 0;
  color: #fff;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
}

.page-header .breadcrumb {
  margin-bottom: 0;
}

.page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.page-header .breadcrumb-item.active {
  color: #fff;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
}

/* =========================================================================
   Legal pages (Datenschutz, Cookie-Richtlinie, AGB)
   ========================================================================= */
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--cr-dark);
}

.legal-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--cr-dark);
}

.legal-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--cr-dark);
}

.legal-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #555;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: #555;
  line-height: 1.7;
}

.legal-content a {
  color: var(--cr-green);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--cr-green-dark);
}

.legal-content hr {
  border-color: rgba(0,0,0,0.08);
}

.legal-content .table {
  font-size: 0.95rem;
}

/* =========================================================================
   Pagination — brand color override
   ========================================================================= */
.pagination {
  --bs-pagination-color: #20595e;
  --bs-pagination-active-bg: #20595e;
  --bs-pagination-active-border-color: #20595e;
  --bs-pagination-focus-color: #20595e;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(32,89,94,0.25);
  --bs-link-color-rgb: 32, 89, 94;
}

/* =========================================================================
   Responsive helpers
   ========================================================================= */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }
  .navbar .navbar-collapse .nav-link {
    color: #20595E !important;
    padding: 0.5rem 1rem !important;
  }
}

/* =========================================================================
   Blog Highlight Section (Homepage)
   ========================================================================= */
.blog-highlight-section {
  background: linear-gradient(135deg, #1a2e20 0%, #0d1a11 100%);
  color: #fff;
}

.blog-highlight-section .section-label {
  color: var(--cr-green);
}

.blog-highlight-section h2 {
  color: #fff;
}

.blog-highlight-card {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.blog-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.blog-highlight-inner {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.blog-highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.blog-highlight-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
}

.blog-highlight-badge {
  display: inline-block;
  background: var(--cr-green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.blog-highlight-deco {
  font-family: var(--cr-display-font);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: rgba(255,255,255,0.15);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.blog-highlight-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.blog-highlight-author {
  color: var(--cr-green);
}

.blog-highlight-title {
  font-family: var(--cr-heading-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.blog-highlight-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  background: var(--cr-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.3s, background 0.3s;
}

.blog-highlight-card:hover .blog-highlight-arrow {
  transform: rotate(45deg);
  background: var(--cr-green-dark);
}

@media (max-width: 767.98px) {
  .blog-highlight-inner {
    min-height: 360px;
  }
  .blog-highlight-deco {
    font-size: 1.8rem;
  }
  .blog-highlight-title {
    font-size: 1.05rem;
  }
}
