/* READ ARTICLE PAGE */
/* .article {
  padding-top: 75px;
} */

.article__header {
  display: grid;
  gap: 24px;
  place-items: center;
}

@media screen and (min-width: 1314px) {
  .article__header {
    grid-template-columns: 60% 40%;
    padding-left: 80px;
    padding-right: 80px;
  }
  .article__header-content-intro-title-heading {
    font-size: 3.4375rem;
  }

  .article__header-img {
    grid-area: 1 / 2 / 2 / 3;
    width: 100%;
    height: 430px;
  }
  .article__header-img img {
    top: 18%;
    left: 0;
    width: 94%;
  }
}

@media screen and (max-width: 1313px) {
  .article__header {
    padding-left: 0px;
    padding-right: 0px;
  }
  .article__header-content {
    text-align: -webkit-center;
  }

  .article__header-content-intro-title-heading {
    font-size: 2.4375rem;
  }

  .article__header-img {
    grid-area: 2 / 1 / 3 / 2;
    width: 100%;
    height: 320px;
  }

  .article__header-img img {
    top: 0;
    left: 10%;
    width: 80%;
  }
}

.article__header-content {
  grid-area: 1 / 1 / 2 / 2;
  width: 100%;
}

.article__header-content-intro-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  display: block;
}

.article__header-content-intro-title-heading {
  font-weight: 800;
  color: #1d5f5f;
}

.article__header-content-date {
  background: rgb(94 131 151);
  /* background: linear-gradient(to bottom, #2f80ed, #56ccf2); */
  background: linear-gradient(to bottom, #eced2f, #f29d56);
  color: #fafafa;
  align-self: flex-start;
  padding: 0.25em 0.75em;
  border-radius: 1em;
  width: max-content;
}

.article__header-img {
  position: relative;
  display: block;
  margin: 0 auto;
}

.article__header-img img {
  display: block;
  position: absolute;
  border-radius: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  filter: drop-shadow(2px 4px 6px black);
}

@media screen and (min-width: 1314px) {
  .article__wrapper-content {
    flex-direction: row;
    padding-left: 80px;
    padding-right: 80px;
  }

  .article__content {
    border: solid #527f80;
  }
}

@media screen and (max-width: 1313px) {
  .article__wrapper-content {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
  }
  .article__content {
    border: none;
  }
}

@media screen and (max-width: 720px) {
  section.article__content {
    margin-top: 0;
  }
  .article__header-img {
    height: 240px;
  }
}

@media screen and (max-width: 500px) {
  .article__header-img {
    height: 164px;
  }
}

.article__wrapper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 32px;
}

.article__content {
  border-right-width: 1px;
  border-top-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
}

.article__content-text {
  color: #3b6f64;
  line-height: 1.5rem;
}

.article__content-text p {
  margin-bottom: 32px;
  font-weight: normal;
  font-size: 0.9375rem/1.8;
}

.article__content-text h2 {
  font-size: 2.125rem;
  font-weight: 800;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(94.97deg, #4c7796 24%, #009688d1 68%);
  color: #4c7796;
  line-height: 2.5rem;
}

.article__content-text h3 {
  font-size: 1.4375rem;
  color: #737373;
}

aside {
  position: -webkit-sticky;
  position: sticky;
  top: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 1314px) {
  aside {
    width: 388px;
  }
}

@media screen and (max-width: 1313px) {
  aside {
    width: 100%;
  }
}

aside > h2 {
  color: #4c7796;
  font-size: 2.3em;
  text-align: center;
}

.o-articles__list {
  display: grid;
  grid-gap: 1px 24px;
  /* grid-auto-rows: 0; */
  margin-bottom: -31px;
  list-style: none;
  padding-inline-start: 0;
}

.o-articles__card {
  position: relative;
  margin-bottom: 31px;
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  background: white;
  justify-self: center;
}

@media screen and (min-width: 648px) {
  .card {
    width: 80%;
  }
}

.o-articles__card > .m-articlesCard__imageWrapper {
  width: 55%;
  height: 430px;
}

.o-articles__card {
  transition: all 300ms;
}

.o-articles__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.m-articlesCard__imageWrapper {
  display: flex;
  position: relative;
  width: 100%;
  background: rgb(94 131 151);
}

.card__image {
  width: inherit;
}

.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.m-articlesCard__date {
  font: 500 0.625rem/1.2 var(--heading-font);
  color: #3b4d6f;
}

.tag {
  align-self: flex-start;
  padding: 0.25em 0.75em;
  border-radius: 1em;
  font-size: 0.75rem;
}

.tag + .tag {
  margin-left: 0.5em;
}

.tag-blue {
  background: rgb(94 131 151);
  background: linear-gradient(to bottom, #2f80ed, #56ccf2);
  color: #fafafa;
}

.m-articlesCard__title {
  margin-bottom: 8px;
  font: 700 1.25rem/1.2 "Inter Variable", sans-serif;
  color: #1d5f5f;
  text-decoration: none;
}

.a-cta.-transparent.-gradient {
  color: #3887a6;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: right;
  text-decoration: none;
}

.m-articlesCard__cta {
  margin-top: auto;
}

.article__all-btn {
  background: linear-gradient(to bottom, #009688, #82cd60);
  padding: 0.25em 0.75em;
  border-radius: 1em;
  width: max-content;
  place-self: center;
  font-size: 1.2em;
  margin-top: 50px;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;

  a {
    color: white;
    text-decoration: none;
  }

  &:hover {
    transform: scale(1.1);
  }
}

.app-download-p {
  margin-bottom: 10px !important;
  color: #3987a6;
  font-size: 18px;
  a {
    color: #3987a6;
  }
}

.blog-table {
  overflow-x: auto;
  width: 100%;
}
.article__content {
  width: -webkit-fill-available;
}
