@import "../../fonts/fonts.css";
:root {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 16px;
}
.content {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}
.content::before {
  content: '';
  background-image: url("/wp-content/themes/ekor/assets/img/blog-pattern.svg");
  background-repeat: no-repeat;
  width: 283px;
  height: 150px;
  display: block;
  position: absolute;
  top: 15%;
  left: -50px;
}
@media (max-width: 576px) {
  .content::before {
    display: none;
  }
}
.content::after {
  content: '';
  background-image: url("/wp-content/themes/ekor/assets/img/blog-pattern.svg");
  background-repeat: no-repeat;
  width: 283px;
  height: 150px;
  display: block;
  position: absolute;
  top: 40%;
  right: -100px;
}
@media (max-width: 576px) {
  .content::after {
    display: none;
  }
}
.content .container {
  position: relative;
  z-index: 1;
}
.post__breadcrumbs {
  padding-bottom: 20px;
  font-size: 14px;
  color: #8A8A8A;
}
.post__breadcrumbs a {
  color: #8A8A8A;
  transition: 0.3s;
}
.post__breadcrumbs a:hover {
  color: #358E03;
}
@media (max-width: 1200px) {
  .post__breadcrumbs {
    padding-bottom: 40px;
  }
}
.post__title {
  font-family: 'Rubik';
  font-weight: 600;
  font-size: 36px;
  color: #0B0C0D;
  line-height: 1.3;
  padding-bottom: 20px;
}
.post__tags {
  column-gap: 20px;
  row-gap: 10px;
  font-weight: 600;
  font-size: 18px;
}
.post__tag {
  color: #8A8A8A;
  transition: 0.3s;
}
.post__tag:hover {
  color: #646464;
}
.post__tag:focus {
  color: #358E03;
}
.post__header-meta {
  padding: 20px 0 50px;
  row-gap: 20px;
}
.post__author {
  column-gap: 20px;
}
.post__author-image {
  display: inline-block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 5%;
  background-color: white;
}
.post__author-name {
  color: #0B0C0D;
  font-weight: 700;
  font-size: inherit;
}
.post__author-role {
  font-size: 13px;
  color: #71777F;
}
.post__readtime {
  font-size: 14px;
  color: #0B0C0D;
  padding-left: 25px;
}
.post__readtime::before {
  content: "";
  background-image: url("/wp-content/themes/ekor/assets/img/opened-book.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s;
  filter: invert(1);
}
.post__banner-image {
  object-fit: cover;
  width: 100%;
  max-height: 350px;
  border-radius: 10px;
}
.post__text {
  padding: 40px 0;
  color: #0B0C0D;
}
.post__text p {
  line-height: 28px;
}
.post__text strong {
  font-weight: 500;
}
.post__footer {
  border-top: 1px solid #358E03;
  border-bottom: 1px solid #358E03;
  padding: 20px 0;
  row-gap: 10px;
}
.post__published {
  font-size: 14px;
  color: #71777F;
}
.post__category {
  color: #0B0C0D;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
.post__category:hover {
  color: #358E03;
}
.post__delimeter {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background-color: #C0C0C0;
  margin: 0 7px;
}
.post__date {
  font-size: 14px;
  color: #71777F;
}
.post__social {
  column-gap: 15px;
}
.post__share {
  font-size: 12px;
  font-weight: 500;
  color: #0B0C0D;
}
.post__social-links {
  column-gap: 10px;
}
.post__social-link {
  width: 20px;
  height: 20px;
  color: #358E03;
  cursor: pointer;
}
.post__social-link:hover {
  color: #358E03;
}
.post__social-link:hover .post__social-img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(79%) saturate(4082%) hue-rotate(70deg) brightness(95%) contrast(98%);
}
.post__social-link:focus .post__social-img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(50%) saturate(7478%) hue-rotate(71deg) brightness(97%) contrast(98%);
}
.post__social-img {
  transition: 0.3s;
}
.post__share-text {
  font-weight: 500;
  font-size: 15px;
  right: -40px;
  bottom: -55px;
}
.latest {
  padding-bottom: 80px;
}
.latest__title {
  font-family: 'Rubik';
  font-weight: 600;
  font-size: 28px;
  color: #141414;
  padding-bottom: 40px;
}
@media (max-width: 1200px) {
  .latest__title {
    padding-bottom: 20px;
  }
}
.latest__block-inner {
  border-radius: 30px;
  box-shadow: 0px 0px 20px 12px rgba(153, 153, 153, 0.3);
  overflow: hidden;
}
.latest__block-inner:hover .latest__block-desc {
  background-color: #358E03;
}
.latest__block-inner:hover .latest__block-title {
  color: white;
}
.latest__block-inner:hover .latest__block-text {
  color: white;
}
.latest__block-inner:hover .latest__block-meta {
  border-bottom-color: white;
}
.latest__block-image {
  width: 100%;
  object-fit: cover;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .latest__block-image {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .latest__block-image {
    height: 250px;
  }
}
.latest__block-meta {
  inset: auto 0 0 0;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 3px solid #358E03;
  column-gap: 20px;
  row-gap: 10px;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .latest__block-meta {
    padding: 15px 20px;
  }
}
@media (max-width: 576px) {
  .latest__block-meta {
    padding: 15px 30px;
  }
}
.latest__block-date {
  padding-left: 25px;
  font-size: 13px;
}
.latest__block-date::before {
  content: "";
  background-image: url("/wp-content/themes/ekor/assets/img/tabler_clock.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}
.latest__block-desc {
  padding: 40px;
  row-gap: 30px;
  transition: 0.3s;
  background-color: white;
}
@media (max-width: 1200px) {
  .latest__block-desc {
    padding: 20px;
    row-gap: 20px;
  }
}
@media (max-width: 576px) {
  .latest__block-desc {
    padding: 20px 30px;
    row-gap: 20px;
  }
}
.latest__block-title {
  font-family: 'Rubik';
  font-weight: 600;
  font-size: 26px;
  line-height: 1.3;
  color: #141414;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .latest__block-title {
    font-size: 18px;
    line-height: 1.2;
  }
}
.latest__block-text {
  font-size: 15px;
  color: #404040;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .latest__block-text {
    font-size: 14px;
  }
}
.latest__block-link {
  font-family: 'Rubik';
  font-size: 16px;
  font-weight: 600;
  color: #358E03;
  width: fit-content;
  padding-right: 35px;
  transition: 0.3s;
}
.latest__block-link::after {
  content: "";
  background-image: url("/wp-content/themes/ekor/assets/img/read-next-arrow.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  transition: 0.3s;
}
.related {
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.related::before {
  content: '';
  background-image: url("/wp-content/themes/ekor/assets/img/blog-pattern.svg");
  background-repeat: no-repeat;
  width: 283px;
  height: 150px;
  display: block;
  position: absolute;
  top: 5%;
  left: -20px;
  z-index: -1;
}
@media (max-width: 576px) {
  .related::before {
    display: none;
  }
}
.related::after {
  content: '';
  background-image: url("/wp-content/themes/ekor/assets/img/blog-pattern.svg");
  background-repeat: no-repeat;
  width: 283px;
  height: 150px;
  display: block;
  position: absolute;
  bottom: 5%;
  right: -80px;
  z-index: -1;
}
@media (max-width: 576px) {
  .related::after {
    display: none;
  }
}
.related__header {
  padding-bottom: 40px;
  row-gap: 10px;
}
@media (max-width: 1200px) {
  .related__header {
    padding-bottom: 20px;
  }
}
.related__title {
  font-family: 'Rubik';
  font-weight: 600;
  font-size: 28px;
  color: #141414;
}
.related__read-all {
  font-family: 'Rubik';
  font-weight: 600;
  font-size: 18px;
  color: #358E03;
  padding-right: 35px;
}
.related__read-all:hover {
  color: #358E03;
}
.related__read-all::after {
  content: "";
  background-image: url(/wp-content/themes/ekor/assets/img/read-next-arrow.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
}
.related__block-inner {
  border-radius: 30px;
  box-shadow: 0px 0px 20px 12px rgba(153, 153, 153, 0.3);
  overflow: hidden;
}
.related__block-inner:hover .related__block-desc {
  background-color: #358E03;
}
.related__block-inner:hover .related__block-title {
  color: white;
}
.related__block-inner:hover .related__block-text {
  color: white;
}
.related__block-inner:hover .related__block-link {
  color: white;
}
.related__block-inner:hover .related__block-link::after {
  filter: brightness(0) invert(1);
}
.related__block-inner:hover .related__block-meta {
  border-bottom-color: white;
}
.related__block-image {
  width: 100%;
  object-fit: cover;
  height: 420px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .related__block-image {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .related__block-image {
    height: 250px;
  }
}
.related__block-meta {
  inset: auto 0 0 0;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 3px solid #358E03;
  column-gap: 20px;
  row-gap: 10px;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .related__block-meta {
    padding: 15px 20px;
  }
}
@media (max-width: 576px) {
  .related__block-meta {
    padding: 15px 30px;
  }
}
.related__block-date {
  padding-left: 25px;
}
.related__block-date::before {
  content: "";
  background-image: url("/wp-content/themes/ekor/assets/img/tabler_clock.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}
.related__block-read-and-comments {
  column-gap: 20px;
}
.related__block-read {
  padding-left: 25px;
}
.related__block-read::before {
  content: "";
  background-image: url("/wp-content/themes/ekor/assets/img/opened-book.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}
.related__block-comments {
  padding-left: 25px;
}
.related__block-comments::before {
  content: "";
  background-image: url("/wp-content/themes/ekor/assets/img/comment.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}
.related__block-desc {
  padding: 40px;
  row-gap: 30px;
  transition: 0.3s;
  background-color: white;
}
@media (max-width: 1200px) {
  .related__block-desc {
    padding: 20px;
    row-gap: 20px;
  }
}
@media (max-width: 576px) {
  .related__block-desc {
    padding: 20px 30px;
    row-gap: 20px;
  }
}
.related__block-title {
  font-family: 'Rubik';
  font-weight: 600;
  font-size: 26px;
  line-height: 1.3;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .related__block-title {
    font-size: 18px;
    line-height: 1.2;
  }
}
.related__block-text {
  font-size: 15px;
  color: #404040;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .related__block-text {
    font-size: 14px;
    line-height: 1.2;
  }
}
.related__block-link {
  font-family: 'Rubik';
  font-size: 16px;
  font-weight: 600;
  color: #358E03;
  width: fit-content;
  padding-right: 35px;
  transition: 0.3s;
}
.related__block-link::after {
  content: "";
  background-image: url("/wp-content/themes/ekor/assets/img/read-next-arrow.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  transition: 0.3s;
}
