@font-face {
  font-family: "Poppins";
  src: url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
  color: #111729;
  font-size: 24px;
}

@font-face {
  font-family: "Lato";
  src: url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
  color: #4a5567;
  font-size: 16px;
}

:root {
  background-color: #f2f5f9;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  width: calc(100% - 32px);
  max-width: 428px;
  height: fit-content;

  .card-header {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;

    .card-image {
      width: 100%;
      height: 100%;
    }
    .card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 10;
    }
  }

  .card-content {
    padding: 0px 32px 16px 32px;

    .card-content-title {
      font-family: "Poppins", sans-serif;
      font-size: 24px;
      font-weight: 500;
      line-height: 1.55;
      margin-top: 0;
    }

    .card-content-text {
      font-family: "Lato", sans-serif;
      color: #4a5567;
      font-size: 16px;
      font-weight: 400;
      line-height: 0.4;
    }
  }

  .card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 32px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
    height: fit-content;

    .card-footer-image {
      border-radius: 100%;
      width: 44px;
      border: 3px solid #4a556723;
    }

    .card-footer-content {
      .card-footer-content-title {
        font-family: "Lato", sans-serif;
        color: #000;
        font-size: 16px;
        font-weight: 600;
        line-height: 0.4;
      }
      .card-footer-content-text {
        font-family: "Lato", sans-serif;
        color: #4a5567;
        font-size: 16px;
        font-weight: 400;
        line-height: 0.4;
      }
    }
  }
}
