:root {
  --accent: #405fc6;
  --ink: #171717;
  --muted: #757575;
  --line: #e6e6e6;
  --paper: #fff;
  --soft: #f6f6f6;
  --radius: 2px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}
.header-main {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-branding {
  flex: none;
}
.custom-logo {
  max-width: 260px;
  max-height: 72px;
  width: auto;
}
.text-logo {
  font-size: 46px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -2px;
  color: #101010;
  -webkit-text-stroke: 1px #174eb6;
}
.text-logo span {
  font-weight: 800;
  color: #174eb6;
  -webkit-text-stroke: 0;
}
.header-ad {
  min-height: 56px;
  flex: 0 1 auto;
  width: auto;
  max-width: min(728px, 100%);
  margin-left: auto;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
  overflow: hidden;
}
.header-ad img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}
.header-ad-widget,
.header-ad-widget a {
  display: block;
  width: auto;
  max-width: 100%;
}
.header-ad-widget img {
  margin: auto;
}
.desktop-nav {
  border-top: 1px solid var(--line);
}
.desktop-nav > .container {
  display: flex;
  align-items: center;
}
.desktop-nav ul,
.mobile-nav ul,
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.desktop-nav > div > ul {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 45px;
  flex: 1;
}
.desktop-nav li {
  position: relative;
}
.desktop-nav a {
  font-size: 13.44px;
  font-weight: 800;
  text-transform: uppercase;
}
.desktop-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 10px 25px #0002;
}
.desktop-nav li:hover > .sub-menu {
  display: block;
}
.desktop-nav .sub-menu a {
  display: block;
  padding: 8px;
  font-weight: 400;
}
.menu-toggle,
.search-toggle {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
}
.desktop-search-toggle {
  display: grid;
  flex: none;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.search-toggle {
  font-size: 40px;
  line-height: 1;
}
.search-panel {
  display: none;
  padding-block: 16px;
}
.search-panel.is-open {
  display: block;
}
.search-form {
  display: flex;
  gap: 8px;
}
.search-form label {
  flex: 1;
}
.search-field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
}
.search-form button,
.read-more,
.load-more {
  border: 1px solid var(--line);
  background: #fff;
  padding: 11px 18px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.mobile-nav {
  display: none;
}
.ticker {
  display: flex;
  align-items: center;
  margin-block: 18px;
  border: 1px solid var(--line);
  height: 42px;
  overflow: hidden;
}
.ticker strong {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  white-space: nowrap;
}
.ticker-track {
  position: relative;
  flex: 1;
  height: 100%;
}
.ticker-track a {
  position: absolute;
  inset: 0;
  padding: 10px 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0;
  animation: ticker 20s infinite;
}
.ticker-track a:nth-child(2) {
  animation-delay: 4s;
}
.ticker-track a:nth-child(3) {
  animation-delay: 8s;
}
.ticker-track a:nth-child(4) {
  animation-delay: 12s;
}
.ticker-track a:nth-child(5) {
  animation-delay: 16s;
}
@keyframes ticker {
  0%,
  18% {
    opacity: 1;
  }
  20%,
  100% {
    opacity: 0;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 3px;
  margin-bottom: 34px;
  background: #222;
}
.hero-slider {
  min-width: 0;
  margin: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
  gap: 38px;
  align-items: stretch;
  margin-bottom: 38px;
}
.featured-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.featured-main .ticker {
  width: 100%;
  margin-top: 0;
  margin-bottom: 26px;
}
.hero-stage {
  position: relative;
  height: auto;
  min-height: 338px;
  flex: 1;
  overflow: hidden;
  background: #202020;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide .hero-image,
.hero-slide .hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide .hero-overlay {
  max-width: 620px;
  padding: 28px;
}
.hero-slide .hero-overlay h2 {
  font-size: clamp(24px, 2.35vw, 30px);
  font-weight: 700;
}
.hero-dots {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.hero-dot.is-active {
  background: #fff;
}
.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 3px;
  padding-top: 4px;
}
.hero-thumb {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
}
.hero-thumb img,
.hero-thumb .image-placeholder {
  width: 100%;
  height: 62px;
  object-fit: cover;
  opacity: 0.58;
  transition: 0.2s;
}
.hero-thumb span {
  position: absolute;
  inset: auto 8px 7px;
  display: -webkit-box;
  overflow: hidden;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.hero-thumb.is-active:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--accent);
}
.hero-thumb.is-active img,
.hero-thumb:hover img {
  opacity: 0.9;
}
.hero-sidebar {
  min-width: 0;
}
.hero-sidebar .tabs {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}
.hero-sidebar .tab-content.active {
  gap: 0;
}
.hero-side-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  margin-bottom: 13px;
}
.hero-side-card img,
.hero-side-card .image-placeholder {
  width: 108px;
  height: 72px;
  object-fit: cover;
}
.hero-side-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.hero-side-card .post-meta {
  margin-top: 7px;
  font-size: 9px;
}
.hero-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
}
.hero-1 {
  grid-column: 1;
  grid-row: 1/3;
}
.hero-2 {
  grid-column: 2;
  grid-row: 1;
}
.hero-3 {
  grid-column: 3;
  grid-row: 1;
}
.hero-4 {
  grid-column: 2;
  grid-row: 2;
}
.hero-5 {
  grid-column: 3;
  grid-row: 2;
}
.hero-image,
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.78));
}
.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  color: #fff;
  z-index: 2;
}
.hero-overlay h2 {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.hero-overlay h2 a,
.hero-overlay h2 a:visited,
.hero-overlay h2 a:hover,
.hero-overlay h2 a:focus {
  color: #fff;
  font-weight: 700;
}
.ticker-track a,
.ticker-track a:visited,
.section-heading h2,
.lead-card h3 a,
.lead-card h3 a:visited,
.mini-card h3 a,
.mini-card h3 a:visited,
.archive-card h2 a,
.archive-card h2 a:visited,
.hero-side-card h3 a,
.hero-side-card h3 a:visited,
.popular-widget li a,
.popular-widget li a:visited,
.widget-title,
.article-header h1,
.related-grid h3 a,
.related-grid h3 a:visited,
.footer-title,
.comments-area h2 {
  color: #111;
}
.ticker-track a:hover,
.ticker-track a:focus,
.lead-card h3 a:hover,
.lead-card h3 a:focus,
.mini-card h3 a:hover,
.mini-card h3 a:focus,
.archive-card h2 a:hover,
.archive-card h2 a:focus,
.hero-side-card h3 a:hover,
.hero-side-card h3 a:focus,
.popular-widget li a:hover,
.popular-widget li a:focus,
.related-grid h3 a:hover,
.related-grid h3 a:focus {
  color: #111;
}
.hero-1 .hero-overlay h2 {
  font-size: 31px;
}
.category-label {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 4px 9px;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 9px;
  color: #999;
  font-size: 11px;
  text-transform: uppercase;
}
.post-meta a {
  color: var(--accent);
  font-weight: 700;
}
.hero-overlay .post-meta,
.hero-overlay .post-meta a {
  color: #fff;
}
.portal-layout,
.archive-layout,
.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
  gap: 38px;
  align-items: start;
}
.portal-main,
.archive-main,
.single-main {
  min-width: 0;
  max-width: 100%;
}
.home-section {
  padding-bottom: 34px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.section-heading {
  position: relative;
  margin: 0 0 22px;
  border-bottom: 2px solid var(--line);
}
.section-heading:after {
  content: "";
  display: block;
  width: 62px;
  border-bottom: 3px solid var(--accent);
  transform: translateY(2px);
}
.section-heading h2 {
  display: inline-block;
  margin: 0;
  padding: 0 0 9px;
  font-size: 21px;
}
.section-heading h2::first-letter {
  color: var(--ink);
}
.section-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px 24px;
}
.lead-card {
  grid-row: span 4;
}
.lead-card > a:first-child,
.lead-card > a:first-child img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.lead-card .category-label {
  margin-top: -13px;
  position: relative;
  margin-left: 14px;
}
.lead-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin: 10px 0 4px;
}
.lead-card p,
.archive-card p {
  color: #666;
  margin: 12px 0 16px;
}
.mini-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 13px;
  align-items: start;
}
.mini-card img,
.mini-card .image-placeholder {
  width: 110px;
  height: 75px;
  object-fit: cover;
}
.mini-card h3 {
  font-size: 14px;
  line-height: 1.3;
  margin: 2px 0;
}
.mini-card .post-meta {
  font-size: 10px;
}
.image-placeholder {
  background: linear-gradient(135deg, #eee, #ddd);
}
.load-more {
  display: block;
  width: max-content;
  margin: 24px auto 0;
}
.sidebar {
  position: relative;
}
.widget {
  margin-bottom: 34px;
}
.widget-title {
  font-size: 20px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 10px;
}
.popular-widget ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.popular-widget li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.popular-widget li span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f1f1;
  color: #888;
  font-style: italic;
}
.popular-widget li a {
  font-weight: 700;
  line-height: 1.3;
}
.trensehat-list-widget ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.trensehat-list-widget li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.trensehat-list-widget .item-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f1f1;
  color: #888;
  font-style: italic;
}
.trensehat-list-widget .item-title {
  color: #101010;
  font-weight: 700;
  line-height: 1.3;
}
.trensehat-list-widget .item-title:hover,
.trensehat-list-widget .item-title:focus {
  color: var(--accent);
}
.trensehat-list-widget .item-meta {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}
.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.tabs button {
  padding: 13px 8px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: #fff;
}
.tabs button.active {
  border-color: var(--accent);
  font-weight: 700;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: grid;
  gap: 16px;
}
.archive-layout,
.single-layout {
  padding-block: 38px;
}
.archive-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.archive-thumb img,
.archive-thumb .image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.archive-card h2 {
  font-size: 21px;
  line-height: 1.25;
  margin: 8px 0;
}
.navigation.pagination {
  margin: 30px 0;
}
.nav-links {
  display: flex;
  gap: 6px;
}
.page-numbers {
  padding: 8px 12px;
  border: 1px solid var(--line);
}
.page-numbers.current {
  background: var(--accent);
  color: #fff;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  color: #888;
  font-size: 12px;
  white-space: nowrap;
  max-width: 100%;
}
.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-header h1 {
  font-size: 36px;
  line-height: 1.12;
  margin: 10px 0;
  overflow-wrap: anywhere;
}
.single-featured {
  margin: 26px 0;
}
.single-featured img {
  width: 100%;
}
.single-featured figcaption {
  color: #888;
  font-size: 12px;
  margin-top: 7px;
}
.article-content {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.article-content h2,
.article-content h3 {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.3;
  margin-top: 1.8em;
}
.article-content a {
  color: var(--accent);
  text-decoration: underline;
}
.article-content img {
  margin-block: 24px;
  max-width: 100%;
  height: auto;
}
.article-content iframe,
.article-content video,
.article-content embed,
.article-content object {
  max-width: 100%;
}
.article-content table,
.article-content pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}
.article-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-block: 18px;
  border-block: 1px solid var(--line);
  color: #777;
  font-size: 12px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tags a {
  background: var(--soft);
  padding: 4px 8px;
}
.author-box {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  padding: 20px;
  border: 1px solid var(--line);
}
.author-box img {
  border-radius: 50%;
}
.author-box p {
  margin: 5px 0;
  color: #666;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-grid img,
.related-grid .image-placeholder {
  aspect-ratio: 16/10;
  object-fit: cover;
}
.related-grid h3 {
  font-size: 15px;
  line-height: 1.35;
}
.comments-area {
  margin-top: 38px;
}
.comment-list {
  padding-left: 22px;
}
.comment-list li {
  margin-bottom: 20px;
}
.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 10px;
}
.submit {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 11px 20px;
}
.page-main {
  max-width: 900px;
  padding-block: 40px;
}
.error-404 {
  text-align: center;
  padding-block: 80px;
}
.error-404 > strong {
  font-size: 100px;
  color: var(--accent);
}
.error-404 .search-form {
  max-width: 600px;
  margin: 25px auto;
}
.site-footer {
  margin-top: 44px;
  background: #f5f5f5;
  color: #666;
}
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  padding-block: 44px;
}
.footer-title {
  margin-top: 0;
  color: var(--ink);
  font-size: 17px;
}
.footer-widget ul {
  list-style: none;
  padding: 0;
}
.footer-widget li {
  padding: 7px 0;
  border-bottom: 1px solid #ddd;
}
.footer-bottom {
  border-top: 1px solid #ddd;
}
.footer-inner {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-inner ul {
  display: flex;
  gap: 24px;
}
.empty-state {
  padding: 45px 0;
}
.alignwide {
  max-width: var(--container);
  margin-left: 50%;
  transform: translateX(-50%);
  width: calc(100vw - 32px);
}
@media (max-width: 900px) {
  .header-main {
    height: 104px;
    background: #050505;
    width: 100%;
    padding-inline: 22px;
    position: relative;
  }
  .header-ad,
  .desktop-nav,
  .desktop-search-toggle {
    display: none;
  }
  .site-branding {
    position: absolute;
    left: 50%;
    width: 52%;
    margin: 0;
    transform: translateX(-50%);
    text-align: center;
  }
  .custom-logo {
    max-width: 180px;
    max-height: 54px;
    margin-inline: auto;
  }
  .text-logo {
    color: #fff;
    font-size: 44px;
  }
  .menu-toggle,
  .search-toggle {
    display: block;
    color: #fff;
    flex: none;
  }
  .menu-toggle {
    position: absolute;
    left: 22px;
  }
  .search-toggle {
    position: absolute;
    right: 22px;
  }
  .menu-toggle {
    width: 34px;
    padding: 4px 0;
  }
  .menu-toggle span {
    display: block;
    height: 4px;
    border-radius: 2px;
    background: #fff;
    margin: 5px 0;
  }
  .mobile-nav {
    position: absolute;
    top: 104px;
    left: 0;
    width: min(360px, 88vw);
    background: #111;
    color: #fff;
    box-shadow: 6px 12px 30px #0004;
    transform: translateX(-105%);
    transition: 0.2s;
    display: block;
  }
  .mobile-nav.is-open {
    transform: none;
  }
  .mobile-nav a {
    display: block;
    padding: 13px 20px;
    border-bottom: 1px solid #333;
  }
  .mobile-nav .sub-menu a {
    padding-left: 38px;
  }
  .search-panel {
    position: absolute;
    background: #fff;
    left: 0;
    right: 0;
    box-shadow: 0 10px 20px #0002;
  }
  .portal-layout,
  .archive-layout,
  .single-layout {
    grid-template-columns: 1fr;
  }
  .featured-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .featured-main .ticker {
    margin-bottom: 18px;
  }
  .featured-main,
  .hero-slider {
    display: block;
  }
  .sidebar {
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 280px 180px;
  }
  .hero-stage {
    height: 380px;
  }
  .hero-1 {
    grid-column: 1/3;
    grid-row: auto;
  }
  .hero-2 {
    grid-column: auto;
  }
  .hero-5 {
    display: none;
  }
  .article-header h1 {
    font-size: 36px;
  }
  .footer-inner {
    flex-direction: column;
    justify-content: center;
  }
  .footer-inner ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  body {
    font-size: 14px;
  }
  .container {
    width: calc(100% - 28px);
  }
  .header-main {
    height: 88px;
  }
  .mobile-nav {
    top: 88px;
  }
  .text-logo {
    font-size: 36px;
  }
  .custom-logo {
    max-width: 150px;
    max-height: 46px;
  }
  .search-toggle {
    font-size: 34px;
  }
  .ticker {
    margin-block: 16px;
  }
  .ticker strong {
    max-width: 56px;
    padding: 0 9px;
    font-size: 0;
  }
  .ticker strong:first-letter {
    font-size: 16px;
  }
  .hero-grid {
    display: flex;
    overflow-x: auto;
    gap: 3px;
    background: #222;
    scroll-snap-type: x mandatory;
  }
  .hero-slider {
    width: 100%;
    margin-bottom: 30px;
  }
  .hero-stage {
    height: 275px;
  }
  .hero-slide .hero-overlay {
    right: auto;
    width: 78%;
    max-height: 50%;
    padding: 16px 18px;
    overflow: hidden;
  }
  .hero-slide .hero-overlay h2 {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 6px;
    font-size: 20px;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .hero-slide .hero-overlay .post-meta {
    display: none;
  }
  .hero-dots {
    right: 10px;
    bottom: 10px;
    gap: 5px;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  .hero-thumbs {
    overflow-x: auto;
    grid-template-columns: repeat(8, 76px);
  }
  .hero-thumb img,
  .hero-thumb .image-placeholder {
    height: 58px;
  }
  .hero-sidebar {
    margin-top: 4px;
  }
  .hero-card {
    flex: 0 0 88%;
    height: 270px;
    scroll-snap-align: start;
  }
  .hero-5 {
    display: block;
  }
  .hero-1 .hero-overlay h2,
  .hero-overlay h2 {
    font-size: 22px;
  }
  .hero-overlay {
    padding: 18px;
  }
  .portal-layout {
    display: block;
  }
  .section-grid {
    display: block;
  }
  .lead-card {
    margin-bottom: 25px;
  }
  .mini-card {
    grid-template-columns: 126px 1fr;
    padding: 14px 0;
    border-top: 1px solid #f1f1f1;
  }
  .mini-card img,
  .mini-card .image-placeholder {
    width: 126px;
    height: 86px;
  }
  .section-heading h2 {
    font-size: 23px;
  }
  .archive-layout,
  .single-layout {
    padding-block: 25px;
  }
  .single-layout {
    width: calc(100% - 28px);
    gap: 26px;
  }
  .single-main,
  .single-main article,
  .article-header,
  .article-content,
  .single-featured {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .breadcrumbs {
    margin-bottom: 14px;
    font-size: 10px;
  }
  .article-header .category-label {
    font-size: 9px;
  }
  .archive-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
  .archive-card h2 {
    font-size: 20px;
    line-height: 1.25;
    margin: 7px 0 2px;
  }
  .archive-card .category-label {
    font-size: 9px;
  }
  .archive-card .post-meta {
    gap: 7px;
    font-size: 9px;
  }
  .archive-card p,
  .archive-card .read-more {
    display: none;
  }
  .archive-thumb img,
  .archive-thumb .image-placeholder {
    aspect-ratio: 16/9;
  }
  .article-header h1 {
    margin: 8px 0;
    font-size: 25px;
    line-height: 1.18;
  }
  .article-content {
    font-size: 16px;
    line-height: 1.7;
  }
  .article-header .post-meta {
    gap: 6px;
    margin-top: 8px;
    font-size: 9px;
  }
  .single-featured {
    margin: 18px 0 22px;
  }
  .article-content h2 {
    font-size: 21px;
  }
  .article-content h3 {
    font-size: 18px;
  }
  .article-content p,
  .article-content li {
    overflow-wrap: anywhere;
  }
  .author-box {
    align-items: flex-start;
    padding: 16px;
  }
  .author-box img {
    width: 56px;
    height: 56px;
  }
  .sidebar,
  .widget,
  .widget img {
    max-width: 100%;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .related-grid article:last-child {
    display: none;
  }
  .footer-inner ul {
    gap: 10px 18px;
  }
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .article-footer {
    flex-direction: column;
  }
}
