#blogs {
  margin-top: 6em;
}
#blogs h1 {
  font-size: 4.8em;
  margin-bottom: 0.61em;
}
#blogs .grid {
  margin-top: 5em;
  display: grid;
  grid-template-columns: repeat(2, 45%);
  gap: 10%;
}
#blogs hr {
  margin-top: 2em;
}

.tags_list {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  font-size: 2em;
}

._tag {
  font-size: 1em;
  padding: 0.6em 1.6em;
  color: #121C44;
  border: solid 2px #121C44;
  display: flex;
  align-items: center;
  border-radius: 2em;
  font-weight: 600;
}
._tag.active_tag {
  border: solid 2px #2598E5;
  background-color: #2598E5;
  color: #fff;
}

.single_blog {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.single_blog .title {
  font-size: 2.8em;
  font-weight: 500;
  line-height: 1.1;
  color: #121C44;
  margin-bottom: 0.5em;
  display: flex;
}
.single_blog .title:hover {
  color: #2598E5;
}
.single_blog .image {
  height: 25rem;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  border-radius: 1em;
  margin-bottom: 2em;
}
.single_blog .image img {
  width: 100%;
  height: auto;
}
.single_blog .modified {
  font-size: 1.6em;
  color: #201244;
  line-height: 1.3;
}

.tags {
  font-size: 1.62em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em 1.52em;
  margin-bottom: 1em;
}

#blog {
  margin-top: 6em;
}
#blog h1 {
  font-size: 3.6em;
  font-weight: 600;
  color: #121C44;
}
#blog .image {
  height: 50rem;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  border-radius: 1em;
  margin-bottom: 3em;
  margin-top: 2em;
}
#blog .image img {
  width: 100%;
  height: auto;
}
#blog ._top {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#blog .desc {
  width: 90%;
  max-width: 100rem;
  font-size: 2.8em;
  font-weight: 400;
  line-height: 1.5;
  color: #121C44;
  padding: 0 2em;
}
#blog .desc p {
  margin-bottom: 1em;
}
#blog .desc h1 {
  font-size: 1.6em;
  margin-bottom: 0.61em;
  font-weight: 700;
}
#blog .desc h2 {
  font-size: 1.4em;
  margin-bottom: 0.61em;
  font-weight: 700;
}
#blog .desc h3 {
  font-size: 1.2em;
  margin-bottom: 0.61em;
  font-weight: 700;
}

@media (max-width: 1000px), (max-aspect-ratio: 1) {
  #blogs .grid {
    margin-top: 5em;
    display: flex;
    flex-direction: column;
    gap: 4em;
  }
  #blog .image {
    height: 30vw;
  }
  #blog .desc {
    padding: 0;
  }
}/*# sourceMappingURL=blog.css.map */