/*
Theme Name: La Divina Cultura
Theme URI: https://ladivinacultura.it
Author: Eye Studios
Author URI: https://eyestudios.it
Description: Tema custom per La Divina Cultura
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ladivinacultura
*/

:root {
  --white: #FFFFFF;
  --black: #000000;
  --primary: #EE5622;
  --text-primary: #020A1C;
  --text-secondary: #657285;
  --text-title: #0F1729;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/manrope-v13-latin-regular.eot");
  src: local(""),
    url("assets/fonts/manrope-v13-latin-regular.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/manrope-v13-latin-regular.woff2") format("woff2"),
    url("assets/fonts/manrope-v13-latin-regular.woff") format("woff"),
    url("assets/fonts/manrope-v13-latin-regular.ttf") format("truetype"),
    url("assets/fonts/manrope-v13-latin-regular.svg#Manrope") format("svg");
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/manrope-v13-latin-700.eot");
  src: local(""),
    url("assets/fonts/manrope-v13-latin-700.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/manrope-v13-latin-700.woff2") format("woff2"),
    url("assets/fonts/manrope-v13-latin-700.woff") format("woff"),
    url("assets/fonts/manrope-v13-latin-700.ttf") format("truetype"),
    url("assets/fonts/manrope-v13-latin-700.svg#Manrope") format("svg");
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  src: url("assets/fonts/manrope-v13-latin-800.eot");
  src: local(""),
    url("assets/fonts/manrope-v13-latin-800.eot?#iefix") format("embedded-opentype"),
    url("assets/fonts/manrope-v13-latin-800.woff2") format("woff2"),
    url("assets/fonts/manrope-v13-latin-800.woff") format("woff"),
    url("assets/fonts/manrope-v13-latin-800.ttf") format("truetype"),
    url("assets/fonts/manrope-v13-latin-800.svg#Manrope") format("svg");
}

body,
html {
  overflow-x: hidden !important;
}

/* Prevent horizontal overflow */
*,
*::before,
*::after {
  box-sizing: border-box;
}

main,
footer,
nav,
section {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Manrope, sans-serif;
  margin: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: var(--bs-text-primary);
  margin: 0;
}

strong {
  font-weight: 700;
}

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

.no-scroll {
  overflow-y: hidden;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.container {
  padding: 0 16px;
  margin: 0 auto;
}

/** STYLES **/
.nav-title {
  display: none;
}

.nav-categories {
  background-color: var(--primary);
  padding: 16px;
}

.nav-categories .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-categories .nav-container ul {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 16px;
}

.nav-categories .nav-container .nav-cat {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  transition: color 0.1s linear;
}

.nav-categories .nav-container .nav-cat:hover {
  color: #de5959;
}

.nav-categories .nav-container .nav-spacer {
  background-color: var(--white);
  height: 14px;
  width: 1px;
  opacity: 1;
  margin: 0 24px;
  display: none;
}

.nav-cat-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 24px;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.nav-latest {
  display: none;
}

.nav-searchmenu {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-icon {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  padding: 2px;
}

.search-icon:hover {
  cursor: pointer;
}

.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10vh;
}

.search-overlay.active {
  display: flex;
}

.search-box {
  width: 90%;
  max-width: 650px;
  background: #fff;
  padding: 0;
  border-radius: 12px;
}

#live-search-input {
  outline: none;
  border: none;
  background: transparent;
  font-weight: 500;
  height: 2em;
  padding: 0px;
  width: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: rgb(51, 51, 51);
  line-height: 2em;
  vertical-align: baseline;
  font-size: 16px;
}

#live-search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

#live-search-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 40px);
  gap: 1px;
  padding: 0;
  margin: 0 0 0 20px;
  max-height: 65vh;
  overflow-y: auto;
  overflow-x: hidden;
}

#live-search-results a {
  text-decoration: none;
}

#live-search-results a:hover h4 {
  text-decoration: underline;
}

.search-box-item {
  display: flex;
  padding: 16px 20px;
  text-decoration: none;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.search-box-title {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.search-box-link {
  color: var(--text-secondary);
  font-size: 12px;
  margin: 0;
}

.search-box-top {
  width: calc(100% - 40px);
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  gap: 12px;
}

.search-icon-small {
  width: 18px;
  height: 18px;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  padding: 8px;
}

.burger-menu span {
  display: block;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 100%;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

.mobile-logo {
  height: 24px;
  width: auto;
}

footer {
  background-color: var(--text-primary);
  padding: 42px 24px;
}

.footer-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.footer-sep {
  display: none;
}

.footer-icon {
  width: 18px;
  height: 18px;
}

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

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-section ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li a {
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-cat {
  color: var(--white);
  font-size: 14px;
}

.footer-section .news-header-left .footer-cat {
  font-size: 16px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: #CBD5E159;
  margin: 50px auto 0 auto;
}

.footer-gradient {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--token-fb863e8c-d42f-4a30-98b1-c74584c6a5f5, rgb(204, 0, 0)) 30%, var(--token-fb863e8c-d42f-4a30-98b1-c74584c6a5f5, rgb(204, 0, 0)) 70%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  width: 100%;
  height: 5px;
  margin-top: 48px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.latest-post {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
}

.latest-post-img {
  order: 1;
  max-width: 100%;
  border-radius: 8px;
}

.latest-post-content {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.latest-post-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.latest-post-cat {
  width: fit-content;
  padding: 4px 12px;
  font-size: 14px;
  color: var(--primary);
  background-color: #CC00000D;
  border-radius: 4px;
  border: 1px solid rgba(204, 0, 0, 0.1);
}

.latest-post-date {
  font-size: 14px;
  color: var(--text-secondary);
}

.latest-post-title {
  color: var(--text-title);
  font-size: 24px;
  line-height: 31.92px;
  font-weight: 400;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-post-excerpt {
  color: var(--text-primary);
  font-size: 16px;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-post:hover h2 {
  text-decoration: underline;
}

.latest-news {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.home-cols {
  flex-direction: column;
  width: auto;
  height: min-content;
  display: flex;
  gap: 48px;
  padding: 24px 16px;
  margin: 0 auto;
}

.news-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  height: min-content;
  padding: 0 4px 0 2px;
  position: relative;
}

.news-header-left {
  display: flex;
  gap: 8px;
  align-items: center;
}

.news-header-sep {
  height: 20px;
  width: 4px;
  background-color: var(--primary);
}

.news-cat {
  color: var(--text-primary);
  font-size: 14px;
  white-space: nowrap;
  font-weight: 400;
}

.news-header-line {
  background-color: rgba(203, 213, 225, 0.35);
  height: 1px;
  width: 100%;
  opacity: 1;
}

.news-header-all {
  color: var(--text-primary);
  display: flex;
  gap: 4px;
  text-decoration: none;
}

.news-arrow-container {
  width: 10px;
  height: 10px;
}

.news-header-all:hover {
  text-decoration: underline;
}

.news-header-all svg {
  height: 22px;
  width: auto;
}

.news-header-all p {
  color: var(--text-primary);
  font-size: 14px;
  white-space: nowrap;
}

.latest-news-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.latest-news-container,
.top-story-container,
.big-category-small-container,
.category-small,
.small-category-small-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-decoration: none;
}

.latest-news-container:hover h3,
.latest-news-container:hover h2,
.top-story-container:hover h3,
.top-story-container:hover h2,
.big-category-small-container:hover h2,
.category-small:hover h3,
.small-category-small-container:hover h3 {
  text-decoration: underline;
}

.latest-news-img {
  width: 125px !important;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.latest-news-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.latest-news-header p {
  font-size: 12px;
  color: var(--text-secondary);
}

.latest-news-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.latest-news-title {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 400;
}

.top-stories {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-story-big {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  width: 100%;
  height: 300px;
  position: relative;
}

.top-story-big article {
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.top-story-big article .latest-news-header p,
.category-big article .latest-news-header p {
  color: #FFFFFF99;
}

.top-story-big article h2,
.category-big article h2 {
  color: var(--white);
}

.category-big:hover h2 {
  text-decoration: underline;
}

.top-stories-small-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: auto;
}

.home-left-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.home-right-col {
  display: none;
}

.home-cols-inverted {
  flex-direction: column;
  width: auto;
  height: min-content;
  display: flex;
  gap: 24px;
  margin: 0 auto;
}

.home-left-col-inverted {
  display: flex;
  flex-direction: column;
  gap: 24px;
  order: 1;
}

.home-right-col-inverted {
  display: flex;
  flex-direction: column;
  gap: 24px;
  order: 2;
}

.home-right-col-inverted img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.home-right-col-inverted p {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
}

/* About page sections */
.about-sticky-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.about-sticky-section h3 {
  color: var(--text-title);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.about-sticky-section p {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-content p {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.about-hero-image {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.category-big {
  height: 300px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  position: relative;
}

.category-big article {
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.big-category-small-container .latest-news-img {
  width: 125px !important;
  height: 100px !important;
}

.category-small .latest-news-img {
  height: 200px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.small-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.small-category-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.small-category-col:not(:last-of-type):not(:first-of-type) {
  margin-top: 24px;
  margin-bottom: 24px;
}

.small-category-news {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.small-category-news .latest-news-text {
  width: 100%;
}

.small-category-news .latest-news-img {
  margin-bottom: 12px;
  width: 100% !important;
}

.small-category-sep {
  display: none;
}

.big-category-container {
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-copy {
  color: #CBD5E1;
  font-size: 14px;
}

.footer-copy-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.footer-copy-links {
  display: flex;
  gap: 16px;
}

.footer-copy-links a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-copy-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.wp-pagenavi .pages {
  padding: 0 !important;
}

.pagination {
  margin: 0 auto;
}

.wp-pagenavi {
  margin: 0 !important;
  padding: 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  border: none !important;
  color: var(--black) !important;
  padding: 4px 12px !important;
  transition: 0.1s linear;
  margin: 0 !important;
  font-size: 1.125rem !important;
}

.wp-pagenavi span.current {
  color: var(--primary) !important;
  border: none !important;
  padding: 4px 12px;
  border-radius: 3px;
  background-color: #CBD5E159;
}

.wp-pagenavi a:hover {
  border-radius: 3px !important;
  background-color: #CBD5E159;
}

.wp-pagenavi .pages {
  display: block !important;
  color: var(--black) !important;
  font-size: 1rem !important;
  margin-bottom: 0.875rem !important;
}

.page-banner {
  background-color: rgb(241, 245, 249);
}

.page-banner .page-banner-container {
  padding: 16px;
}

.page-banner .page-banner-container .big-text {
  display: none;
}

.article {
  width: 100%;
}

.article-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article-title {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 400;
}

.article-sep {
  width: 100%;
  height: 1px;
  background-color: #CBD5E159;
  margin: 16px auto;
}

.article-thumb {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 32px auto;
  border-radius: 8px;
}

.article-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-info-container p {
  font-size: 14px;
  color: var(--text-secondary);
}

.article-info-container {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.article-red-bullet {
  color: var(--primary) !important;
  display: none;
}

.article-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.article-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.article-author p {
  font-size: 14px;
  color: var(--text-primary);
}

article.article hr {
  color: #CBD5E159;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6,
.article-content p {
  margin: revert;
  color: var(--text-primary);
}

figure figcaption {
  font-style: italic;
}

.article-share.mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.article-share-title {
  font-size: 14px;
  color: var(--text-secondary);
}

.article-share.desktop {
  display: none;
  margin-top: 24px;
}

.article-sep-big {
  margin: 12px 0;
}

.article-related-cat {
  margin-bottom: 24px;
}

@media (max-width: 1399px) {
  .nav-cat-list {
    flex-direction: column;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-cat-list.show {
    max-height: calc(100% - 68px);
    height: 100%;
    opacity: 1;
    top: 68px;
  }

  .burger-menu {
    display: flex;
  }
}

@media (min-width: 768px) {

  .container,
  .footer-content,
  .footer-line {
    width: 448px;
  }

  .article-share.mobile {
    flex-direction: row;
  }

  .article-share-title {
    margin-top: 32px;
  }

}

@media (min-width: 1400px) {

  .nav-latest,
  .nav-categories .nav-container .nav-spacer {
    display: block;
  }

  .nav-cat-list {
    padding: 0;
  }

  .nav-categories {
    padding: 9px 0;
  }

  .nav-categories .nav-container {
    justify-content: center;
  }

  .mobile-logo {
    display: none;
  }

  .nav-categories .nav-container ul {
    gap: 24px;
  }

  .nav-categories .nav-container .nav-cat {
    color: var(--white);
  }

  .nav-title {
    background-color: var(--white);
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-title img {
    height: 40px;
  }

  .home-cols {
    flex-direction: row;
    gap: 24px;
    position: relative;
  }

  .home-left-col {
    flex-flow: column;
    flex: 3 0 0;
    place-content: flex-start;
    align-items: flex-start;
    width: 1px;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
  }

  .home-right-col {
    position: sticky;
    top: 16px;
    flex-flow: column;
    flex: 1 0 0;
    place-content: flex-start;
    align-self: stretch;
    align-items: flex-start;
    gap: 12px;
    width: 1px;
    height: fit-content;
    padding: 0;
    display: flex;
  }

  .home-cols-inverted {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    position: relative;
  }

  .home-left-col-inverted {
    position: sticky;
    top: 16px;
    flex-flow: column;
    flex: 1 0 0;
    place-content: flex-start;
    align-self: stretch;
    align-items: flex-start;
    gap: 12px;
    width: 1px;
    height: fit-content;
    padding: 0;
    display: flex;
    order: 1;
  }

  .home-right-col-inverted {
    flex-flow: column;
    flex: 3 0 0;
    place-content: flex-start;
    align-items: flex-start;
    width: 1px;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    order: 3;
    gap: 42px;
  }

  .home-sep-col-inverted {
    flex: none;
    align-self: stretch;
    width: 1px;
    height: auto;
    position: relative;
    order: 2;
  }

  .home-sep-col-inverted div {
    background-color: rgba(203, 213, 225, 0.35);
    height: 100%;
    width: 100%;
    opacity: 1;
  }


  .home-sep-col {
    flex: none;
    align-self: stretch;
    width: 1px;
    height: auto;
    position: relative;
  }

  .home-sep-col div {
    background-color: rgba(203, 213, 225, 0.35);
    height: 100%;
    width: 100%;
    opacity: 1;
  }

  .home-left-col-inverted .about-sticky-section:not(:last-child) {
    margin-bottom: 24px;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 1320px;
  }

  .footer-right {
    flex-direction: row;
    gap: 80px;
  }

  .footer-copy-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .container {
    width: 1320px;
    margin: 0 auto;
    padding: 48px 0;
  }

  .latest-post {
    flex-direction: row;
    gap: 10px;
  }

  .latest-post-img {
    order: 2;
    max-width: 604px;
  }

  .latest-post-content {
    order: 1;
  }

  .latest-post-title {
    font-size: 30px;
    line-height: 36px;
  }

  .news-cat {
    font-size: 16px;
  }

  .news-header-all p {
    color: var(--text-primary);
    font-size: 16px;
  }

  .latest-news-content {
    flex-direction: row;
    gap: 24px;
  }

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

  .latest-news-container {
    flex-direction: column;
    gap: 12px;
    width: 33.3%;
  }

  .category-grid .latest-news-container {
    width: auto;
  }

  .top-story-container {
    flex-direction: column;
    gap: 12px;
  }

  .latest-news-img {
    width: 100% !important;
    height: 200px;
  }

  .latest-news-title {
    font-size: 18px;
  }

  .top-stories {
    flex-direction: row;
    background-color: #F7FAFC;
    border-radius: 8px;
    padding: 24px;
  }

  .top-story-big article {
    bottom: 24px;
    left: 24px;
  }

  .top-stories-small-container {
    padding: 24px;
    background-color: var(--white);
    border-radius: 6px;
  }

  .top-story-big {
    width: 531px;
    height: 428px;
  }

  .featured-stories {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .featured-stories-container {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #CBD5E159;
  }

  .featured-stories-container:hover h3 {
    text-decoration: underline;
  }

  .featured-stories-container .latest-news-img {
    width: 125px !important;
    height: 100px;
  }

  .featured-stories-container .latest-news-header {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }

  .featured-stories-container .latest-news-header p:nth-of-type(2) {
    font-size: 10px;
  }

  .news-header.featured {
    justify-content: space-between;
  }

  .featured-stories-container article {
    font-size: 16px;

  }

  .featured-stories-container article h3 {
    font-size: 16px;
  }

  .category-big {
    height: 628px;
    width: 864px;
  }

  .small-categories {
    flex-direction: row;
    gap: 24px;
  }

  .small-category-col {
    width: 33.3%;
  }

  .small-category-sep {
    display: block;
    width: 1px;
    height: auto;
    background-color: #CBD5E159;
  }

  .small-category-col:not(:last-of-type):not(:first-of-type) {
    margin-top: 0;
    margin-bottom: 0;
  }

  footer {
    padding: 80px 24px;
  }

  .footer-content {
    width: 1320px;
    flex-direction: row;
  }

  .footer-sep {
    display: block;
    height: 100%;
    width: 1px;
    background-color: #CBD5E159;
  }

  .footer-line {
    width: 1320px;
    margin-top: 100px;
  }

  .page-banner .page-banner-container {
    width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }

  .page-banner .page-banner-container .big-text {
    display: block;
    mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.2) 46.2697%, rgb(0, 0, 0) 100%);
  }

  .page-banner .page-banner-container .big-text p {
    font-size: 70px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 0.6px;
    -webkit-text-stroke-color: rgba(101, 114, 133, 0.6);
  }

  .article-title {
    color: var(--text-primary);
    font-size: 32px;
  }

  .article-thumb {
    height: 600px;
  }

  .article-info {
    flex-direction: row;
    align-items: center;
  }

  .article-red-bullet {
    display: block;
  }

  .article-content-container {
    position: relative;
  }

  .article-content {
    width: 797px;
    margin-left: auto;
  }

  .article-share {
    position: sticky;
    top: 16px;
    left: 0;
    width: 0;
    float: left;
  }

  .article-share.mobile {
    display: none;
  }

  .article-share.desktop {
    display: block;
  }

  .heateor_sss_svg {
    transition: background-color 0.2s linear;
  }

  .heateor_sss_sharing_ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .article-content p {
    font-size: 18px;
  }

  .article-content>p:first-of-type {
    margin-top: 0;
  }

  .nav-searchmenu {
    order: 3;
    margin-left: 120px;
  }

  .nav-container {
    width: fit-content;
    margin: 0 auto;
  }

  #live-search-results {
    max-height: 483px;
  }

  .about-hero-image {
    height: 500px;
  }
}