#csr {
  .csr__title {
    background-color: white;
    color: black;
    font-size: 36px;
    letter-spacing: 6.48px;
    line-height: 43px;
    font-weight: bold;
    padding: 60px 0 0 0;
  }
  .csr__lead {
    margin: 40px 0 40px 0;
    letter-spacing: 4.5px;
    font-weight: normal;
    font-size: 30px;
  }
  .csr__paragraph {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: #1a1311;
    line-height: 34px;
  }
  .csr__category {
    margin-top: 60px;
    display: flex;
    column-gap: 40px;
    .category__label {
      font-size: 36px;
      line-height: 43px;
      width: 75px;
      padding: 24px 20px;
      box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.16);
      font-weight: bold;
    }
    .category__img-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 24px;
      img {
        width: 100%;
        max-width: 250px;
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
      }
      .img__caption {
        display: inline-block;
        margin-top: 10px;
      }
    }
  }
  .csr__category:last-child {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  #csr {
    .csr__title {
      padding: 120px 0 0 0;
    }
    .csr__category {
      flex-direction: column;
      .category__label {
        width: 180px;
        font-size: 20px;
        letter-spacing: -1px;
        line-height: 24px;
        padding: 0;
        padding: 9px 0;
        margin: 0 auto 40px auto;
        text-align: center;
      }
      .category__img-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  }
}
