.article-category {
  width: 90%;
  margin: 40px auto 0;
}
.article-category b {
  color: #1D275F;
  font-weight: 600;
  font-size: 24px;
}
.article-category-picker {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.article-category-picker-tag {
  color: #1D275F;
  cursor: pointer;
  border: 1px solid #1D275F;
  padding: 5px 15px;
  border-radius: 24px;
  font-weight: 600;
}
.article-category-picker-tag:hover {
  background-color: #1D275F;
  color: white;
}

.active-tag {
  background-color: #1D275F;
  color: white;
  cursor: default;
}

.other-articles {
  text-align: center;
  margin-top: 20px;
}

.articles {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3%;
  width: 90%;
  margin: 0 auto;
}
.articles .article-card {
  width: 31%;
  margin: 25px 0;
}
@media only screen and (max-width: 700px) {
  .articles .article-card {
    width: 100%;
  }
}

.article-card {
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
  border-radius: 14px;
  display: flex;
  flex-direction: row;
  background-color: white;
}
.article-card-content {
  text-decoration: none;
  color: #1D275F;
  height: 100%;
  width: 100%;
  max-width: 100%;
}
.article-card-content img {
  width: 100%;
  border-radius: 14px 14px 0 0;
  object-fit: cover;
}
.article-card-content-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 15px;
}
.article-card-content-bottom b {
  height: 50px;
}
.article-card-content-bottom p {
  font-size: 13px;
  color: black;
  margin-top: 20px;
  line-height: 1;
}
.article-card-content-bottom span {
  color: #98A7BC;
  font-size: 12px;
  margin-top: 0px;
}
.article-card:hover {
  transform: scale(1.02);
  transition: 0.2s linear;
}

.other-articles-bg {
  padding-top: 25px;
  background-color: #EB9E8C;
}
@media only screen and (max-width: 700px) {
  .other-articles-bg {
    padding-top: 0;
  }
}

.seo-grid {
  flex-direction: column !important;
}
.seo-grid p {
  line-height: 2.4;
}
@media only screen and (max-width: 700px) {
  .seo-grid {
    max-width: 90%;
    overflow-x: hidden;
    display: flex;
    flex-direction: row;
    position: relative;
  }
  .seo-grid figure {
    margin: 0px;
  }
}
.seo-grid .seo-grid-content {
  width: 100% !important;
}
.seo-grid .seo-grid-content .container {
  width: 100% !important;
}