.blog {
  position: relative;
  padding: 60px 0;
}
.blog .container {
  padding: 0;
  margin-inline: auto;
  width: min(100% - 2rem, 1200px);
}
.blog__list {
  padding: 10px 0 60px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.blog__item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 9/3.5;
}
.blog__item__detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  color: #666666;
  background-color: #eff1f2;
  gap: 30px;
}
.blog__item__detail__date {
  font-size: 14px;
  line-height: 26px;
}
.blog__item__detail__date span {
  color: #0076a8;
}
.blog__item__detail__reading-time {
  font-size: 14px;
  line-height: 26px;
}
.blog__item__content {
  display: flex;
  flex-direction: column;
  margin: 30px 0 0 0;
  height: inherit;
  gap: 20px;
}
.blog__item__title h2 {
  color: #0076a8;
  font-weight: 400;
  font-size: 1.5rem;
}
.blog__item-description h4 {
  font-size: 1rem;
}
.blog__item__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto 0 0 0;
  padding: 12px 30px;
  border: 1px solid #ea3729;
  border-radius: 18px;
  color: #ea3729;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  gap: 5px;
  transition: all 0.3s ease-in-out;
}
.blog__item__link span {
  height: 14px;
  line-height: 16px;
}
.blog__item__link svg {
  width: 14px;
  height: 14px;
}
.blog__item__link:hover {
  background-color: #ea3729;
  color: #ffffff;
}
.blog__item__link:hover svg path {
  stroke: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 576px) {
  .blog .container {
    padding: 0 34px;
  }
}
@media screen and (min-width: 768px) {
  .blog {
    padding: 100px 0;
  }
  .blog__list {
    grid-template-columns: repeat(2, 1fr);
  }
}