.blog__section {
  /* border: 1px solid red; */
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.blog__section .blog__content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.blog__section .blog__content .blog__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.blog__section .blog__content .blog__description .com__btn {
  width: fit-content;
}

.blog__section .blog__content .blog__description h1 {
  font-family: var(--font-Bricolage);
  font-size: 3.3rem;
}

.blog__section .blog__content .blog__description P:last-child {
  max-width: 400px;
  color: hsl(0, 0%, 15%);
}

.blog__section .blog__content .blog__photo img {
  border-radius: 10px;
}

@media (max-width: 1038px) {
  .blog__section .blog__content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .blog__section .blog__content .blog__description {
    align-items: center;
    gap: 2rem;
  }

  .blog__section .blog__content .blog__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 568px) {
  .blog__section .blog__content .blog__description h1 {
    font-size: 2.1rem;
    font-weight: 500;
  }

  .blog__section .blog__content .blog__description P:last-child {
    font-size: .8rem;
  }
}
