
  .rivta-buyer-guides {
    width: 100%;
    background: #ffffff;
    padding: 54px 20px 46px;
    color: #1f1f32;
    font-family: inherit;
  }

  .rivta-buyer-guides * {
    box-sizing: border-box;
  }

  .rivta-buyer-guides .wide {
    max-width: 1200px;
    margin: 0 auto;
  }

  .rivta-buyer-guides__head {
    max-width: 900px;
    margin: 0 auto 38px;
    text-align: center;
  }

  .rivta-buyer-guides__heading {
    margin: 0;
    color: #003940;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .rivta-buyer-guides__intro {
    max-width: 760px;
    margin: 16px auto 0;
    color: #1f1f32;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: 0;
  }

  .rivta-buyer-guides__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .rivta-buyer-guides__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 245px;
    padding: 28px 24px 24px;
    border: 1px solid #e5e1d8;
    background: #ffffff;
  }

  .rivta-buyer-guides__title {
    margin: 0 0 18px;
    color: #003940;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0;
  }

  .rivta-buyer-guides__spacer {
    flex: 1 1 auto;
  }

  .rivta-buyer-guides__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0 18px;
    border: 2px solid #003940;
    border-radius: 0;
    color: #ffffff;
    background: #003940;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
  }

  .rivta-buyer-guides__button:hover,
  .rivta-buyer-guides__button:focus-visible {
    color: #ffffff;
    background: #00545c;
    border-color: #003940;
    outline: none;
  }

  @media (max-width: 1100px) {
    .rivta-buyer-guides__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .rivta-buyer-guides {
      padding: 42px 22px 38px;
    }

    .rivta-buyer-guides__head {
      margin-bottom: 30px;
      text-align: left;
    }

    .rivta-buyer-guides__intro {
      margin-top: 14px;
    }

    .rivta-buyer-guides__grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .rivta-buyer-guides__card {
      min-height: 0;
      padding: 24px 20px 22px;
    }
  }
