/* BLOGS */
.blogs {
  padding: 2rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blogs__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
}
.blogs__item-container-image {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blogs__item-image {
  width: 100%;
  height: auto;
  display: block;
  flex: 1;
}

.blogs__items {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.blogs__item {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  max-width: 305px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog__item-group {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}
.blogs__item-title {
  flex: 1;
}
.blogs__item-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 18px;
  font-weight: 700;
  color: #d40021;
  text-decoration: none;
}

@media (min-width: 1050px) {
  /* BLOGS */
  .blogs__items {
    flex-direction: row;
  }

  .blogs__item {
    flex: 1;
  }
  .blogs__items {
    align-items: normal;
  }
}
