.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  .guarantees-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--lm-line);
    text-decoration: none;
    transition: box-shadow .18s ease, border-color .18s ease;
  }
  .guarantees-card__tag {
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 10px;
    background: #cabcad;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
  }
  .guarantees-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.24;
    letter-spacing: -.01em;
    font-weight: 600;
  }
  .guarantees-card p {
    margin: 0;
    color: var(--lm-muted);
    font-size: 15px;
    line-height: 1.5;
  }
  .guarantees-card__more {
    margin-top: auto;
    padding-top: 22px;
    color: var(--lm-orange);
    font-size: 14px;
    font-weight: 800;
  }
  .guarantees-card:hover {
    box-shadow: 0px 3px 6px rgba(28, 35, 43, 0.08), 0 2px 6px rgba(28, 35, 43, 0.04);
    border-color: #e3e3e3;
  }
  
  @media (max-width: 1100px) {
    .warranty-grid, .guarantees-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 620px) {
    .warranty-grid, .guarantees-grid, .link-grid {
      grid-template-columns: 1fr;
    }
  }
  
    .link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  
  .link-card {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--lm-line);
    text-decoration: none;
    color: var(--lm-text);
  }
  
  .link-card:hover {
    border-color: var(--lm-orange);
    box-shadow: 0px 3px 6px rgba(28, 35, 43, 0.08),
                0 2px 6px rgba(28, 35, 43, 0.04);
  }
  
  .link-card h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.3;
    color: var(--lm-text);
  }
  
  .link-card span {
    margin-top: 18px;
    color: var(--lm-orange);
    font-weight: 800;
    font-size: 14px;
  }
  
  @media (max-width: 1100px) {
    .link-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 620px) {
    .container {
      width: min(100% - 24px, 1240px);
    }
  
    .section {
      padding: 38px 0;
    }
  
    .link-grid {
      grid-template-columns: 1fr;
    }
  }
  
        :root {
          --lm-orange: #f68e1e;
          --lm-text: #301905;
          --lm-muted: #5f5f5f;
          --lm-surface: #f9f9f9;
          --lm-line: #e3e3e3;
          --lm-dark: #301905;
        }

                /* Small helpers for content area (safe for Bootstrap 5) */
                .article-content img{max-width:100%;height:auto}
                .article-content table{max-width:100%}

                .section--surface {
                    background: var(--lm-surface);
                    padding-top: 0px;
                  }
                  .section {
                    padding: 54px 0;
                      padding-top: 54px;
                    padding-top: 0px;
                  }