.blog .top {
  display: flex;
  margin-top: 30px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .blog .top {
    display: block;
  }

  .blog .top .left {
    align-items: center;
    text-align: center;
  }

  .blog .right {
    text-align: center;
  }
}

.blog .top .left {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.blog .top .left h1 {
  color: var(--logoBlue);
}
.blog .top .left h3 {
  color: var(--logoRed);
}
.blog .top .right {
  flex-basis: 50%;
}

.blog .top .right img {
  width: 80%;
  border-radius: 20px;
}
.queries-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}
.queries-wrapper .text-wrapper {
  display: flex;
  align-items: center;
}
.queries-wrapper .text-wrapper h4 {
  font-size: 2.3rem;
  color: var(--logoRed);
}

.blog h3 {
  font-family: sans-serif;
  margin-top: 30px;
  margin-bottom: 10px;
}

.blog-link {
  color: var(--logoRed);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.blog-link:hover {
  text-decoration: underline;
}
