/** Shopify CDN: Minification failed

Line 14:16 Expected identifier but found whitespace
Line 14:18 Unexpected "{"
Line 14:27 Expected ":"
Line 14:53 Expected ":"
Line 15:19 Expected identifier but found whitespace
Line 15:21 Unexpected "{"
Line 15:30 Expected ":"
Line 15:59 Expected ":"

**/
.bodenratgeber-section {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .bodenratgeber-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .bodenratgeber-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Encode Sans';
    letter-spacing: normal;
    line-height: 1;
  }

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

  @media (max-width: 992px) {
    .bodenratgeber-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .bodenratgeber-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width:768px) {
    .bodenratgeber-container {
        margin: 20px;
    }
  }

  .bodenratgeber-card {
    background: rgb(0 0 0 / 5%);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .bodenratgeber-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }

  .bodenratgeber-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .bodenratgeber-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Encode Sans';
    letter-spacing: normal;
    line-height: 1;
  }

  .bodenratgeber-content p {
    font-size: 12px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 16px;
    flex-grow: 1;
    font-family: 'Encode Sans';
  }

  .bodenratgeber-button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #cc522f;
    color: #000;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    font-family: 'Encode Sans';
    letter-spacing: normal;
    line-height: 1.4;
  }

  .bodenratgeber-button:hover {
    background: #cc522f;
    color: #fff;
  }

  .bodenratgeber-viewall {
    margin-top: 40px;
    text-align: center;
  }

  .bodenratgeber-viewall .button {
    background: #cc522f;
    color: #fff;
    border-radius: 999px;
    padding: 12px 48px;
    font-family: 'Encode Sans';
    letter-spacing: normal;
    font-size: 14px;
  }
  .bodenratgeber-viewall .button:hover {
    color: #cc522f;
  }

  @media (max-width: 640px) {
    .bodenratgeber-grid > .bodenratgeber-card:nth-child(n+4) {
      display: none;
    }
  }