/*!
Theme Name: Popdust
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: popdust
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Popdust is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

html {
  --primary-font: "Roboto", sans-serif;
  --secondary-font: "IBM Plex Sans", sans-serif;
  --third-font: "PT Serif", serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
}
body {
  background-color: #f1f1f1;
}
input, button {
  border: none;
  outline: none;
  background-color: transparent;
}
button {
  cursor: pointer;
}
ul, ol, li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 45px;
}
h3 {
  font-size: 34px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h1, h2, h3, h4, h5 {
  font-family: var(--third-font);
}
p, button, a, input {
  font-size: 19px;
}
p, p a {
  font-family: var(--primary-font);
}
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, p a {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}
h1 > a:hover, h1 > a:focus, h2 > a:hover, h2 > a:focus, h3 > a:hover, h3 > a:focus, h4 > a:hover, h4 > a:focus, h5 > a:hover, h5 > a:focus, p a:hover, p a:focus {
  font-weight: 800;
}
button, a, input {
  font-family: var(--secondary-font);
}
.container {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 20px;
  width: 80%;
  max-width: 1240px;
  padding-block: 40px;
  margin-inline: auto;
}
.container--single {
  grid-template-columns: 1fr;
}
.alt-container {
  max-width: 1100px;
}
.alt-container .preview-post__tag {
  color: #1e2bd2;
  border: none;
}
.posts-feed {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.posts-feed--small {
  row-gap: 20px;
}
.posts-row-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 3px solid #242424;
  color: #000;
  font-family: var(--third-font);
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 400;
}
.section-title .icon {
  width: 19px;
  height: 26px;
}
.load-more-stories {
  max-width: 225px;
  padding: 16px 20px;
  margin: 20px auto 0px;
  background-color: #1F2BD2;
  border-radius: 48px;
  border: 2px solid #1F2BD2;
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 16px;
  line-height: 125%;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.load-more-stories:hover, .load-more-stories:focus {
  background-color: #fff;
  color: #1F2BD2;
}
@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    padding-inline: 15px;
  }
  .posts-row-feed {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .posts-row-feed {
    grid-template-columns: 1fr;
  }
  .posts-feed--small {
    row-gap: 35px;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-inline: 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
.header__container {
  display: grid;
  grid-auto-flow: column;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
}
.header__btn-menu, .header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
}
.header__btn-menu .icon, .header__search .icon {
  color: #000;
  font-size: 20px;
  transition: color 0.26s ease;
}
.header__btn-menu:hover .icon, .header__search:hover .icon {
  color: #fdd000;
}
.header__logo {
  width: 100%;
  max-width: 200px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.header__menu-wrapper, .header__socials {
  display: flex;
  margin-inline: auto;
}
.header__menu-wrapper {
  column-gap: 20px;
  height: 100%;
}
.header__menu-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 10px;
  font-family: var(--secondary-font);
  color: #000;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.26s ease;
}
.header__menu-link:hover {
  color: #fdd000;
}
.header__socials {
  column-gap: 5px;
}
.header__socials-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 100%;
}
.header__socials-link .icon {
  font-size: 19px;
  color: #000;
  transition: color 0.26s ease;
}
.header__socials-link:hover .icon {
  color: #fdd000;
}
@media screen and (max-width: 1200px) {
  .header__container {
    grid-template-columns: 60px 200px 1fr 60px;
    grid-template-rows: 60px 60px;
  }
  .header__menu {
    grid-row: 2;
    grid-column: 1/5;
    width: calc(100% + 40px);
    margin-left: -20px;
    border-top: 1px solid #ddd;
    overflow-x: auto;
  }
  .header__menu-wrapper {
    justify-content: space-around;
    column-gap: 0px;
    width: max-content;
    padding-inline: 20px;
  }
  .header__socials {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__container {
    grid-template-columns: 60px 1fr 60px;
  }
  .header__logo {
    margin-inline: auto;
  }
  .header__menu {
    grid-column: 1/4;
  }
  .header__socials {
    display: none;
  }
}
.search-header {
  position: relative;
  width: 60px;
  height: 60px;
}
.search-header:not(.show) .search-header__form {
  display: none;
}
.search-header.show .header__search {
  display: none;
}
.search-header__form {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 5;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  column-gap: 15px;
  height: 40px;
  background-color: #fff;
}
.search-header__input {
  background-color: #fff;
}
.search-header__submit, .search-header__close, .search-header__input {
  height: 100%;
}
.search-header__submit, .search-header__close {
  width: 40px;
}
.search-header__submit .icon, .search-header__close .icon {
  color: #000;
  font-size: 20px;
  transition: color 0.26s ease;
}
.search-header__submit:hover .icon, .search-header__close:hover .icon {
  color: #fdd000;
}
.footer {
  width: 100%;
  margin-top: 50px;
  background-color: #fff;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1240px;
  padding: 8px 16px;
  margin-inline: auto;
}
.footer__logo {
  width: 200px;
  height: 36px;
  object-fit: contain;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__menu {
  display: flex;
}
.footer__menu-link {
  display: block;
  padding: 13px;
  color: #000;
  font-family: var(--secondary-font);
  font-size: 13px;
  line-height: 31px;
  font-weight: 400;
  text-transform: uppercase;
}
.footer__menu-link:hover, .footer__menu-link:focus {
  color: #1E2BD2;
}
.footer__copyright {
  color: #000;
  font-family: var(--primary-font);
  font-size: 8px;
  line-height: 11px;
  font-weight: 400;
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
  }
  .footer__nav {
    align-items: center;
  }
  .footer__menu {
    flex-direction: column;
  }
  .footer__menu-link {
    padding: 7px;
    line-height: 22.4px;
    text-align: center;
  }
}
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
}
.menu:not(.show) {
  display: none;
}
.menu:not(.animate) .menu__list {
  transform: translateX(-100%);
}
.menu:not(.animate) .menu__close {
  opacity: 0;
}
.menu__close {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.1;
  transition: opacity 0.25s linear;
}
.menu__list {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 100%;
  padding-block: 12px;
  overflow-y: auto;
  background-color: #1a1a1a;
  transition: transform 0.25s linear;
}
.menu__item--divider {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid #333;
}
.menu__link {
  display: block;
  width: 100%;
  padding: 5px 20px;
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  transition: all 0.2s linear;
}
.menu__link:hover, .menu__link:focus {
  color: #fdd000;
  background-color: rgba(255, 255, 255, 0.1);
}
.menu__socials {
  column-gap: 6px;
  padding-bottom: 10px;
  margin-block: 15px 10px;
}
.menu__socials, .menu__item:last-child {
  border-bottom: 1px solid #333;
}
.menu__socials, .menu__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu__social-link {
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}
.menu__social-link:hover, .menu__social-link:focus {
  color: #fdd000;
}
.menu__social-link .icon {
  font-size: inherit;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .menu {
    top: 55px;
  }
  .menu__list {
    width: 100%;
  }
}
.homepage__posts-after-hero {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 15px;
  width: 80%;
  margin: 25px auto 0px;
}
@media screen and (max-width: 1024px) {
  .homepage__posts-after-hero {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .homepage__posts-after-hero {
    width: 100%;
    row-gap: 30px;
  }
}
.hero {
  position: relative;
  margin-top: 30px;
}
.hero__content {
  position: absolute;
  left: 20%;
  bottom: 50px;
  max-width: 800px;
  padding: 22px 37px;
  background-color: rgba(255, 255, 255, 0.73);
}
.hero__title {
  color: #242424;
  font-family: var(--third-font);
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 0.64px;
  margin-bottom: 10px;
}
.hero__title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__publish-time {
  color: #242424;
  font-family: var(--third-font);
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.hero__image {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1024px) {
  .hero__content {
    width: 100%;
    max-width: 100%;
    left: 0;
    bottom: 0;
    padding: 20px;
  }
}
.meta-author {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.meta-author__photo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
  border-radius: 100%;
}
.meta-author__name {
  position: relative;
  z-index: 4;
  color: #555555;
  font-family: var(--third-font);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  transition: color 0.3s ease;
}
.meta-author__name:hover, .meta-author__name:focus {
  color: #fdd000;
}
.single-author {
  display: flex;
  column-gap: 16px;
  padding: 16px;
  margin-inline: 40px;
  background-color: rgba(31, 43, 210, 0.0509803922);
}
.single-author__photo {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}
.single-author__name {
  color: #000;
  font-family: var(--third-font);
  font-size: 24px;
  line-height: 33px;
  font-weight: 700;
}
.single-author__description {
  color: #000;
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
}
.single-author__link {
  display: inline-block;
  margin-top: 10px;
  color: #000000;
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: inset 0 0px 0 white, inset 0 -9px 0 rgba(253, 208, 0, 0.5019607843);
}
.small-post {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 250px 1fr;
}
.small-post__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.small-post__content {
  min-height: 120px;
  padding: 35px 10px 20px 10px;
  border-radius: 5px;
  background-color: #ffffff;
}
.small-post__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.small-post__category, .small-post__publish-date {
  font-family: var(--third-font);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
.small-post__category {
  color: #f44941;
}
.small-post__publish-date {
  color: #a4a2a0;
}
.small-post__title {
  color: #242424;
  font-family: var(--third-font);
  font-size: 18px;
  line-height: 23.4px;
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
}
.small-post__link:hover {
  color: #1E2BD2;
}
.small-post__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .small-post {
    grid-template-rows: minmax(200px, 300px) 1fr;
  }
}
.post {
  position: relative;
  width: 100%;
  background-color: #fff;
}
.post__head {
  padding: 40px 40px 10px 40px;
}
.post__category {
  color: #000;
  font-family: var(--third-font);
  font-size: 15px;
  line-height: 0.9;
  font-weight: 700;
  text-transform: uppercase;
}
.post__head-tag {
  color: #D41C2C;
  font-family: var(--third-font);
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
}
.post__title {
  /* hyphens: auto; */
  word-break: keep-all;
  color: #000;
  font-family: var(--third-font);
  font-weight: 700;
  margin-top: 10px;
}
.post__title > a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}
.post__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.post__published-date {
  color: #555555;
  font-family: var(--third-font);
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
}
.post__image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}
.post__content {
  position: relative;
  margin-top: 30px;
  padding-inline: 40px;
  word-break: break-all;
}
.post__content.hidden-content::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 165px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 80%);
}
.post__content iframe {
  width: 100%;
  max-width: 100%;
}

.post__content h1, .post__content h2,
.post__content h3, .post__content h4,
.post__content h5, .post__content h6,
.post__content ul, .post__content ol {
  word-break: break-word;
  margin-block: 18px;
}

.post__content h2 {
  color: #000 !important;
  font-weight: 500 !important;
}
.post__content h3 {
  color: #000 !important;
  font-weight: 700 !important;
}

.post__content p, .post__content li, .post__content a {
  word-break: break-word;
}

.post__content p, .post__content li {
  word-break: break-word;
  color: #000 !important;
  font-family: var(--primary-font) !important;
  font-size: 19px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  margin-block: 18px !important;
}
.post__content a:not(.post__read-more):not(.elementor-button):not(.wp-block-button__link) {
  color: #000 !important;
  font-weight: 400 !important;
  box-shadow: inset 0 0px 0 white, inset 0 -9px 0 #fdd000 !important;
  text-decoration: none !important;
}

.post__content div[data-is-image="True"] > a:not(.post__read-more) {
  box-shadow: none !important;
}

.post__content a:not(.post__read-more):not(.elementor-button):hover {
  font-weight: 700 !important;
}
.post__content table td {
  padding: 0px !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.post__content .wp-block-button__link, 
.post__content table a:not(.post__read-more):not(.elementor-button):not(.wp-block-button__link) {
  display: block;
  padding: 12px 18px;
  border-radius: 40px;
  border: 2px solid #000;
  background-color: #000;
  color: #fff !important;
  font-family: var(--third-font);
  font-size: 19px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.post__content .wp-block-button__link:hover, .post__content .wp-block-button__link:focus,
.post__content table a:not(.post__read-more):not(.elementor-button):not(.wp-block-button__link):hover,
.post__content table a:not(.post__read-more):not(.elementor-button):not(.wp-block-button__link):focus {
  background-color: transparent;
  color: #000 !important;
}
.post__content img {
  max-width: 100%;
  max-height: 800px;
  object-fit: cover;
  object-position: center;
}
.post__content ul, .post__content ol, .post__content li {
  list-style: initial;
}
.post__read-more {
  position: absolute;
  left: calc(50% - 65px);
  bottom: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  min-width: 130px;
  height: 48px;
  padding-inline: 15px;
  background-color: #000;
  border-radius: 40px;
  border: 2px solid #000;
  transition: all 0.2s ease;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  letter-spacing: 0.32px;
}
.post__read-more:hover, .post__read-more:focus {
  background-color: #fff;
  color: #000;
}
.post__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px 30px 40px;
}
.post__tag {
  color: #1E2BD2;
  font-family: var(--third-font);
  font-size: 13px;
  line-height: 18.2px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.post__socials {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.post__social {
  width: 35px;
  height: 35px;
}
.post__social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.post__social-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.post__social-link:hover::after {
  opacity: 1;
}
.post__social-link.facebook {
  background-color: #1777f2;
}
.post__social-link.x {
  background-color: #000;
}
.post__social-link.reddit {
  background-color: #ff4300;
}
.post__social-link.pinterest {
  background-color: #ce1e1f;
}
.post__social-link .icon {
  color: #fff;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .post__head {
    padding: 20px 20px 10px;
  }
  .post__content {
    padding-inline: 0;
  }
  .post__content.hidden-content {
    padding-inline: 20px;
  }
  .post__footer {
    padding-inline: 20px;
  }
}
.sidebar {
  display: flex;
  flex-direction: column;
  column-gap: 15px;
  width: 100%;
  margin-top: 320px;
}
.single-page .sidebar {
  margin-top: 0;
}
.sidebar__posts {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .sidebar {
    grid-row: 2;
    margin-top: 40px !important;
  }
}
.sidebar-post {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px;
  column-gap: 10px;
  padding: 15px 10px;
}
.sidebar-post:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sidebar-post__text-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 14px;
}
.sidebar-post__image {
  width: 100%;
  max-height: 80px;
  object-fit: cover;
  object-position: center;
}
.sidebar-post__title {
  grid-column: 1/3;
}
.sidebar-post__title-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  font-family: var(--third-font);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
.sidebar-post__title-link:hover {
  color: #1E2BD2;
}
.sidebar-post__title-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
.sidebar-post__author, .sidebar-post__published-date {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.sidebar-post__author {
  color: #747474;
}
.sidebar-post__author-link {
  position: relative;
  z-index: 3;
  color: #1f1f1f;
}
.sidebar-post__author-link:hover {
  color: #1E2BD2;
}
.sidebar-post__published-date {
  color: #a4a2a0;
}
.breadcrumbs {
  display: flex;
  align-content: center;
  width: 80%;
  max-width: 1240px;
  padding-block: 10px;
  margin-inline: auto;
}
.single-page .breadcrumbs {
  padding-top: 40px;
}
.breadcrumbs__item + .breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  display: inline;
  padding-inline: 5px;
}
.single-page .breadcrumbs__item + .breadcrumbs__item::before {
  content: "→";
}
.breadcrumbs__link, .breadcrumbs__text {
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 19.6px;
  letter-spacing: 0.24px;
}
.breadcrumbs__link {
  color: #1E2BD2;
  font-weight: 700;
}
.breadcrumbs__text {
  color: #000;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    flex-wrap: wrap;
  }
}
.category {
  width: 92%;
  padding: 15px;
  margin: 15px auto;
  background-color: #fff;
  border-radius: 5px;
}
.category__name {
  color: #000;
  font-family: var(--third-font);
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.single-page {
  padding-bottom: 40px;
  margin-block: 30px;
  background-color: #fff;
}
.single-page .container--single {
  padding-block: 40px;
  margin-block: 0px;
}
@media screen and (max-width: 767px) {
  .single-page .container:not(.container--single) {
    padding-top: 0px;
  }
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding-inline: 40px;
  margin-block: 20px;
}
.post-tags__name {
  color: #000;
  font-family: var(--third-font);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-right: 2px;
}
.post-tags__link {
  display: block;
  padding: 4px 8px;
  margin: 0px 2px;
  background-color: #eeeeee;
  color: #000;
  font-family: var(--third-font);
  font-size: 12px;
  line-height: 125%;
  font-weight: 700;
}
.share-post {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-inline: 40px;
  margin-bottom: 40px;
}
.share-post__title, .share-post__social > span {
  color: #747474;
  font-family: var(--primary-font);
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
}
.share-post__socials {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.share-post__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: #fff;
  font-size: 19.5px;
  line-height: 35px;
}
.share-post__social.facebook, .share-post__social.x {
  width: auto;
  text-transform: capitalize;
}
.share-post__social.facebook .icon, .share-post__social.x .icon {
  width: 35px;
  text-align: center;
}
.share-post__social.facebook {
  background-color: #1777f2;
}
.share-post__social.x {
  background-color: #000;
}
.share-post__social.reddit {
  background-color: #ff4300;
}
.share-post__social.pinterest {
  background-color: #ce1e1f;
}
.share-post__social.flipboard {
  background-color: #f52828;
}
.share-post__social.linkedin {
  background-color: #0077b5;
}
.share-post__social.slack {
  background-color: #36C5F0;
}
.share-post__social.mail {
  background-color: #5e7286;
}
.share-post__social > span {
  display: inline-block;
  padding: 4px 10px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .share-post {
    align-items: flex-start;
    margin-inline: 10px;
  }
  .share-post__socials {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
.preview-post {
  display: grid;
}
.preview-post--horizontal {
  grid-template-columns: 250px 1fr;
  column-gap: 20px;
}
.preview-post--vertical {
  grid-template-columns: 1fr;
  grid-template-rows: 130px 1fr;
  row-gap: 10px;
}
.preview-post__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.preview-post--horizontal .preview-post__image {
  height: 186px;
}
.preview-post__content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.preview-post--horizontal .preview-post__content {
  grid-column: 2;
  padding-top: 20px;
}
.preview-post--vertical .preview-post__content {
  grid-row: 2;
}
.preview-post__tag {
  display: inline-block;
  width: max-content;
  border-bottom: 1px solid #D41C2C;
  color: #D41C2C;
  font-family: var(--third-font);
  font-size: 10px;
  line-height: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.preview-post__title {
  color: #000;
  font-family: var(--third-font);
  font-weight: 700;
}
.preview-post--horizontal .preview-post__title {
  font-size: 24px;
  line-height: 30px;
}
.preview-post--vertical .preview-post__title {
  font-size: 18px;
  line-height: 23.4px;
}
.preview-post__text {
  color: #555;
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 125%;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .preview-post--horizontal {
    grid-template-columns: 1fr;
  }
  .preview-post--horizontal .preview-post__content {
    grid-column: 1;
  }
  .preview-post--vertical, .preview-post--horizontal {
    grid-template-rows: 400px 1fr;
  }
}
.author {
  display: flex;
  column-gap: 50px;
  width: 80%;
  max-width: 1240px;
  margin: 50px auto 90px;
}
.author__photo {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}
.author__name {
  color: #000;
  font-family: var(--secondary-font);
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 700;
  padding-top: 12px;
}
@media screen and (max-width: 991px) {
  .author {
    width: 100%;
    padding-inline: 20px;
    flex-direction: column;
    justify-content: center;
  }
  .author__photo {
    width: 150px;
    height: 150px;
  }
}
.search {
  padding-inline: 30px;
}
.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 15px;
  padding-inline: 20px;
  margin: 15px auto;
  background-color: #fff;
  border-radius: 5px;
}
.search-form__input {
  width: 100%;
  height: 60px;
  padding: 16px 10px;
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  font-family: var(--secondary-font);
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}
.search-form__input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.search-form__submit {
  width: 120px;
  height: 60px;
  background-color: #000;
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 21px;
  line-height: 30px;
  font-weight: 400;
}
.search__container {
  max-width: 900px;
  padding-inline: 20px;
  margin: 15px auto;
}
@media screen and (max-width: 991px) {
  .search {
    padding: 15px;
  }
  .search-form, .search__container {
    width: 100%;
  }
  .search__container {
    padding-inline: 0px;
  }
}
.alt-header__container {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
}
.alt-header .header__btn-menu .icon,
.alt-header .header__menu-link,
.alt-header .header__socials-link .icon,
.alt-header .header__search .icon {
  font-size: 22px;
}
.alt-header .header__btn-menu .icon:hover, .alt-header .header__btn-menu .icon:focus,
.alt-header .header__menu-link:hover,
.alt-header .header__menu-link:focus,
.alt-header .header__socials-link .icon:hover,
.alt-header .header__socials-link .icon:focus,
.alt-header .header__search .icon:hover,
.alt-header .header__search .icon:focus {
  color: #fdd000;
}
.alt-header .header__btn-menu .icon .icon,
.alt-header .header__menu-link .icon,
.alt-header .header__socials-link .icon .icon,
.alt-header .header__search .icon .icon {
  color: inherit;
  font-size: inherit;
}
.alt-header .header__btn-menu, .alt-header .header__search {
  height: 70px;
}
.alt-header .header__menu {
  margin-inline: auto;
}
.alt-header .header__socials {
  margin-inline: 0px 20px;
}
@media screen and (max-width: 991px) {
  .alt-header .header__menu {
    display: none;
  }
  .alt-header .header__logo {
    margin-right: auto;
  }
}
.alt-single-post {
  width: 100%;
  padding-block: 20px 40px;
  background-color: #fff;
}
.alt-post {
  width: 100%;
  max-width: 900px;
  padding: 30px;
  margin-inline: auto;
}
.alt-post__meta {
  color: #878787;
  font-family: var(--third-font);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}
.alt-post__meta-category {
  color: #0090ff;
  text-transform: uppercase;
}
.alt-post__title {
  color: #242424;
  font-family: var(--third-font);
  font-size: 36px;
  line-height: normal;
  font-weight: 700;
  margin-top: 10px;
}
.alt-post__image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}
.alt-socials {
  display: flex;
  column-gap: 10px;
  margin-block: 20px;
}
.alt-socials__item {
  width: 60px;
  height: 60px;
}
.alt-socials__item.hidden {
  display: none;
}
.alt-socials__link, .alt-socials__more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 25px;
}
.alt-socials__link::after, .alt-socials__more::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.alt-socials__link:hover::after, .alt-socials__link:focus::after, .alt-socials__more:hover::after, .alt-socials__more:focus::after {
  opacity: 0.3;
}
.alt-socials__link .icon, .alt-socials__more .icon {
  color: inherit;
  font-size: inherit;
}
.alt-socials__link.facebook {
  background-color: #1777f2;
}
.alt-socials__link.x {
  background-color: #000;
}
.alt-socials__link.pinterest {
  background-color: #ce1e1f;
}
.alt-socials__link.mail {
  background-color: #5e7286;
}
.alt-socials__link.tumblr {
  background-color: #2c4762;
}
.alt-socials__link.reddit {
  background-color: #ff4300;
}
.alt-socials__more {
  background-color: #afafaf;
}
@media screen and (max-width: 991px) {
  .alt-socials__item {
    width: 40px;
    height: 40px;
  }
}
.alt-post__author {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-bottom: 10px;
  margin-block: 20px;
  border-bottom: 1px solid #d2d2d2;
}
.alt-post__author-photo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
}
.alt-post__author-name {
  color: #479ad2;
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 600;
}