/* ========================================
   BLOG SECTION FIXED
======================================== */

.blog-section {
  position: relative;
  overflow: hidden; /* Safety */
}

/* TEXT */
.blog-section .subheadline {
  margin-bottom: 10px;
}

.blog-section .headline {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--color-green);
}

.blog-section .text {
  margin-bottom: 20px;
}

.blog-section .full-width-btn-wrap {
  margin-bottom: 30px;
}

/* ========================================
   SLICK CLEAN SETUP (WICHTIG)
======================================== */

.blog-section .blog-slider {
  margin: 0 -10px; /* 👉 sauberes spacing */
}

.blog-section .blog-slide {
  padding: 0 10px; /* 👉 spacing zwischen slides */
}

.blog-section .blog-slider .slick-list {
  overflow: hidden; /* Pflicht */
}

.blog-section .blog-slider .slick-track {
  display: flex;
}

/* ========================================
   IMAGE
======================================== */

.blog-section .blog-image {
  position: relative;
  display: block;
}

.blog-section .blog-image img {
  width: 100%;
  border-radius: 16px;
  min-height: 60vh;
  object-fit: cover;
}

/* BADGE */

.blog-section .blog-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-green);
  color: var(--color-white);
  padding: 9px 16px;
  border-radius: 16px 0;
  font-size: 12px;
  height: 46px;
  display: flex;
  align-items: center;
}

/* CONTENT */

.blog-section .blog-bottom {
  margin-top: 10px;
}

/* READ MORE */

.blog-section .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}

.blog-section .blog-read-more .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-black);
}

/* ========================================
   NAV UI
======================================== */

.blog-section .blog-slider-ui {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
}

.blog-section .blog-slider-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-section .blog-hit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.blog-section .blog-hit .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-black);
}

.blog-section .blog-hit .line {
  width: 42px;
  height: 2px;
  background: var(--color-black);
}

/* RIGHT IMAGE */

.blog-section .blog-side-image img {
  width: 100%;
  border-radius: 16px;
}

/* ========================================
   BOOTSTRAP FIX
======================================== */

.blog-section .row {
  margin-left: 0;
  margin-right: 0;
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 991px) {
  .blog-section .headline {
    font-size: 28px;
  }

  .blog-section .col-lg-6 > .subheadline,
  .blog-section .col-lg-6 > .headline,
  .blog-section .col-lg-6 > .text,
  .blog-section .col-lg-6 > .full-width-btn-wrap {
    text-align: center !important;
  }

  .blog-section .full-width-btn-wrap {
    display: flex;
    justify-content: center;
  }

  .blog-section .blog-image img {
    height: 240px;
    min-height: unset;
  }
}
