#blog_hero_section {
  max-width: 60%;
  margin-inline: auto;
  margin-block: 150px;
  font-family: "Inter", sans-serif;
}

#blog_page_subtitle {
  text-transform: uppercase;
  color: var(--secondary-color);
  text-align: center;
  margin-block: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
}

#blog_page_title {
  color: var(--primary-color);
  font-size: 45px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 110%;
  width: 70%;
  text-align: center;
  margin-inline: auto;
}

#blog_page_info {
  text-align: center;
  width: 60%;
  margin-inline: auto;
  margin-block: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 23px;
}

#blog_list_title,
#blog_list {
  width: 60%;
  margin-inline: auto;
}

#blog_list_title {
  text-transform: uppercase;
  color: var(--primary-color);
  margin-block: 10px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

#blog_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog {
  width: 290px;
  margin-bottom: 20px;
}

.blog_image {
  width: 100%;
  height: 250px;
  margin-bottom: 10px;
}

.blog_image img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
}

.blog_title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: var(--secondary-color);
  text-transform: capitalize;
  font-weight: 700;
}

.blog_description {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  line-height: 150%;
  margin-bottom: 20px;
}

.blog_date {
  margin-bottom: 10px;
}

.blog_btn {
  text-transform: uppercase;
  background-color: var(--secondary-color);
  border-radius: 2px;
  text-align: center;
  padding-inline: 15px;
  padding-block: 3px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
  transition: 100ms all ease-in-out;
}

.blog_btn:hover {
  background-color: var(--light);
  color: var(--secondary-color);
  outline: 1px solid var(--secondary-color);
}

article {
  max-width: 60%;
  margin-inline: auto;
  font-size: 18px;
  margin-block: 30px;
  font-family: "Poppins", sans-serif;
}

article h1 {
  text-align: center;
  margin-block: 10px;
  color: var(--primary-color);
}

article h2 {
  margin-block: 10px;
  color: var(--secondary-color);
}

strong {
  color: var(--secondary-color);
}

iframe {
  width: 100%;
  height: 600px;
  border-radius: 2px;
  margin-block: 20px;
}

@media (max-width: 1024px) {
  #blog_hero_section {
    display: block;
    max-width: 100%;
    margin-top: 60px;
    margin-bottom: 100px;
  }

  #blog_page_subtitle {
    font-size: 15px;
    width: 100%;
  }

  #blog_page_title {
    width: 90%;
    font-size: 25px;
  }

  #blog_list_title {
    font-size: 25px;
    width: 90%;
    text-align: start;
  }

  #blog_list {
    display: block;
    width: 80%;
  }

  #blog_page_info {
    font-size: 18px;
    margin-block: 10px;
    width: 90%;
  }

  .blog {
    width: 100%;
  }

  .blog_image {
    width: 100%;
    height: 100%;
  }

  .blog_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  article {
    max-width: 80%;
  }
}
