@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
  max-width: 1000px;
  width: 100%;

  .brand {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;

    a {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.2102272510528564em;
      color: #000000;
      text-decoration: none;
      transition: opacity 0.2s;

      &:hover {
        opacity: 0.7;
      }
    }

    .social-icons {
      display: flex;
      gap: 31px;

      img {
        width: 24px;
        height: 24px;
        cursor: pointer;
        transition: opacity 0.2s;

        &:hover {
          opacity: 0.7;
        }
      }
    }
  }
}

.hero {
  display: flex;
  gap: 98px;
  max-width: 976px;
  width: 100%;
  margin-bottom: 30px;

  .hero-text {
    width: 348px;
    display: flex;
    flex-direction: column;
    align-items: center;

    h1 {
      font-size: 60px;
      font-weight: 700;
      line-height: 1.2102272033691406em;
      color: #000000;
      width: 100%;
    }

    p {
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2102272510528564em;
      color: #4a5568;
      padding: 10px;
      text-align: center;
      width: 100%;
    }
  }

  img {
    width: 530px;
    height: 357px;
    border-radius: 65px;
    object-fit: cover;
  }
}

.blog-cards {
  display: flex;
  gap: 33px;
  max-width: 969px;
  width: 100%;
  margin-bottom: 30px;

  .card {
    width: 300px;
    height: 382px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 4px 4px 0px rgba(192, 189, 189, 0.25);
    position: relative;

    img {
      width: 100%;
      height: 179px;
      object-fit: cover;
      border-radius: 5px 5px 0 0;
    }

    h2 {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.2102272033691406em;
      color: #2d3748;
      padding: 18px 16px 0;
    }

    p {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.2102272851126534em;
      color: #718096;
      padding: 15px 17px;
    }

    .card-footer {
      position: absolute;
      bottom: 18px;
      left: 16px;
      right: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;

      .date {
        font-size: 12px;
        font-weight: 400;
        line-height: 1.2102272510528564em;
        color: #718096;
      }

      .read-more {
        font-size: 12px;
        font-weight: 700;
        line-height: 1.2102272510528564em;
        color: #2d3748;
        cursor: pointer;
        transition: opacity 0.2s;

        &:hover {
          opacity: 0.7;
        }
      }
    }
  }
}
