.menu-button {
  border: 0;
  background: transparent;
}

.logo-img {
  max-width: 200px;
  max-height: 96px;
  object-fit: contain;
}

.nav-menu.is-open {
  display: flex;
}

.post-card-link,
.top-blog-img-wrapper,
.top-blog-category,
.read-more,
.travel-item,
._2col-blogs-item,
.education-title-wrapper,
.entertanment-img-wrapper,
.footer-link {
  text-decoration: none;
}

.read-more {
  cursor: pointer;
  display: inline-block;
}

.read-more .arrow,
.read-more .arrow img,
.top-blog-arrow,
.read-more .read-more-text {
  transition: background-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.read-more:hover .arrow,
.read-more:focus-visible .arrow,
.top-blog-read-box:hover .read-more .arrow,
.travel-item:hover .read-more .arrow {
  background-color: #ffd900;
  transform: translate3d(4px, 0, 0);
}

.read-more:hover .arrow img,
.read-more:focus-visible .arrow img,
.top-blog-read-box:hover .read-more .arrow img,
.travel-item:hover .read-more .arrow img {
  transform: rotate(90deg) !important;
}

.read-more-education:hover .top-blog-arrow,
.read-more-education:focus-visible .top-blog-arrow,
.education-item:hover .top-blog-arrow {
  transform: rotate(90deg) !important;
}

.read-more:hover .read-more-text,
.read-more:focus-visible .read-more-text {
  background-color: #fff;
}

.top-blog-img,
.blog-img,
.about-img,
.default-image,
.post-module-img,
.category-post-image,
.single-post-image {
  object-fit: cover;
}

.about-img,
.default-image {
  width: 100%;
  display: block;
}

.contact-cards {
  margin-top: 50px;
}

.category-detail-title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.grungy-load-animate {
  animation: grungyFadeRise 700ms ease forwards;
}

.grungy-delay-1 {
  animation-delay: 120ms;
}

.grungy-delay-2 {
  animation-delay: 240ms;
}

.grungy-delay-3 {
  animation-delay: 360ms;
}

@keyframes grungyFadeRise {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fallback-card {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebe3d0;
  color: #17130f;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.post-module-card {
  position: relative;
}

.post-module-img {
  width: 100%;
  height: 280px;
  display: block;
}

.post-module-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: #6f6558;
  font-size: 14px;
}

.post-module-title {
  margin-top: 12px;
  margin-bottom: 14px;
}

.post-module-title a {
  color: inherit;
  text-decoration: none;
}

.sidebar-list {
  display: grid;
  gap: 18px;
}

.sidebar-post {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.sidebar-post img {
  width: 92px;
  height: 78px;
  object-fit: cover;
}

.sidebar-post-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.category-hero-title,
.single-post-title {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.category-layout,
.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
}

.category-post-card {
  color: inherit;
  text-decoration: none;
}

.category-post-image {
  width: 100%;
  height: 230px;
  display: block;
}

.single-post-image {
  width: 100%;
  max-height: 560px;
  display: block;
  margin-bottom: 32px;
}

.single-post-img {
  display: block;
}

.article-content {
  font-size: 18px;
  line-height: 1.8;
}

.article-content img {
  max-width: 100%;
  height: auto;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  padding: 0;
  list-style: none;
}

.page-link,
.page-item span {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #17130f;
  color: #17130f;
  text-decoration: none;
}

.page-item.active .page-link {
  background: #17130f;
  color: #fff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-link img {
  width: 44px;
  height: 44px;
}

@media screen and (max-width: 991px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    background: #f8f1df;
    border-bottom: 2px solid #17130f;
    padding: 16px;
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-layout,
  .single-post-layout {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .post-grid {
    grid-template-columns: 1fr;
  }

  .post-module-img,
  .category-post-image {
    height: 240px;
  }
}
