.blog-card {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 60px 60px;
  border-bottom: 1px solid #a6a6a6;
  padding-left: 20px;
  padding-right: 20px;
  color: white;
  align-items: center;
}

.blog-card__image img {
  width: 392px;
  height: 250px;
  object-fit: cover;
}

.blog-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card__title {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  text-transform: none;
  margin: 0;
}

.blog-card__excerpt {
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 24px;
  margin: 10px 0;
  color: #ffffff;
}

.blog-card__teaser {
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  max-width: 463px;
  height: auto;
}

.blog-card__read-more {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.blog-card__read-more::before {
  content: "";
  width: 168px;
  border-bottom: 1px solid #a6a6a6;
  margin-bottom: 20px;
  display: block;
}

.blog-card__button {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 2px;
  text-decoration: none;
  font-family: "Montserrat";
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 127px;
  height: 49px;
  background: transparent;
}

@media (max-width: 767px) {
  .blog-card {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .blog-card__image img {
    width: 100%;
    height: 329px;
    object-fit: cover;
  }

  .blog-card__title {
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
  }

  .blog-card__excerpt {
    font-size: 16px;
    line-height: 29px;
  }

  .blog-card__teaser {
    font-size: 16px;
    line-height: 24px;
    width: 353px;
    margin: 0 auto;
  }

  .blog-card__read-more {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-card__read-more::before {
    content: "";
    width: 168px;
    border-bottom: 1px solid #a6a6a6;
    margin-bottom: 20px;
    display: block;
  }

  .blog-card__button {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    height: 49px;
    justify-content: center;
  }
}

/* Remove list-style markers from blog card lists */
.blog-cards ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-cards ul > li {
  margin: 0;
  padding: 0;
}
