.section-quick-layout {
  padding: 40px 0;
  width: 100%;
  background: #F5F5F5;
  display: flex;
  justify-content: center;

  &>div {
    /* 63.15 = 1200/1920px */
    width: 63.15%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.section-quick-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
  background: #FFFFFF;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.section-quick-card img {
  max-width: 80px;
}

.section-quick-captions {

  /* padding-left: 1rem; */
  &>span {
    font-weight: 700;
    font-size: 1.25rem;
  }

  &>p {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) {
  .section-quick-layout>div {
    width: 100%;
  }

}

@media only screen and (max-width: 768px) {
  .section-quick-layout {
    padding: 1.5rem;

    /* & > div {
      width: 100%;
    } */
  }

  .section-quick-card {
    flex-direction: column;
    align-items: start;
  }

  .section-quick-captions {
    padding-left: 0px;
  }
}

/** Opt1. 3 row 1 col */
/* @media only screen and (max-width: 576px) {
  .section-quick-layout > div {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .section-quick-card {
    flex-direction: row;
    align-items: center;
    padding: 1rem;
  }
} */

/** Opt2. 1 row 3 col */
@media only screen and (max-width: 576px) {
  .section-quick-card img {
    max-width: 48px;
  }

  .section-quick-card {
    padding: 1rem;
  }

  .section-quick-captions {
    &>span {
      font-size: 1rem;
    }

    &>p {
      font-size: 1rem;
      margin-bottom: 0px;
    }
  }
}