:root {
  --bg-body: #fafafa;
  --bg-header: #2c3e50;
  --bg-header-sub: #34495e;
  --accent: #e74c3c;
  --text-main: #2c3e50;
  --text-muted: #7f8c8d;
  --card-bg: #ffffff;
  --border-soft: #ecf0f1;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.1);
  --radius-card: 0;
  --radius-pill: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* HEADER */

.topbar {
  background: var(--bg-header);
  color: #fff;
  padding: 4px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 4px solid var(--accent);
  font-family: 'Arial', sans-serif;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  font-family: 'Impact', sans-serif;
  color: #ffffff;
}

.brand-accent {
  color: var(--accent);
  font-weight: 700;
}

.brand-logo-icon {
  width: 0;
  height: 0;
  display: none;
}

.brand-logo-icon span {
  display: none;
}

.topbar-badges {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
}

.topbar-badge {
  padding: 2px 0;
  border-radius: 0;
  font-size: 11px;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.2s ease;
  color: #fff;
  padding-right: 16px;
  margin-right: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.topbar-badge:last-child {
  border-right: none;
}

.topbar-badge:hover {
  color: var(--accent);
  background: transparent;
  transform: none;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--accent);
  box-shadow: none;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.topbar-weather {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.topbar-search-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  background: transparent;
}

/* NAV */

.nav {
  background: #fff;
  color: var(--text-main);
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-main-link {
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  padding: 16px 24px;
  border-right: 1px solid #ddd;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Arial', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  white-space: nowrap;
}

.nav-link {
  opacity: 1;
  position: relative;
  padding: 16px 24px;
  border-right: 1px solid #ddd;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.2s ease;
  font-family: 'Arial', sans-serif;
}

.nav-link::after {
  display: none;
}

.nav-link:hover {
  background: #f8f9fa;
}

/* LAYOUT */

.page {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 0 20px 0;
}

.grid-main {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  margin-top: 40px;
}

@media (max-width: 960px) {
  .grid-main {
    grid-template-columns: 1fr;
  }
}

/* CARDS */

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 768px) {
  .hero-grid {
    gap: 30px;
  }
}

.card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom: 3px solid #000;
  padding-bottom: 30px;
  margin-bottom: 10px;
}

.card:hover {
  transform: none;
  box-shadow: none;
  border-color: #000;
}

.card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.card-img {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}

.card-img img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  filter: grayscale(0%);
}

.card:hover .card-img img {
  transform: none;
  filter: grayscale(0%);
}

.card-body {
  padding: 0;
}

.card-tag {
  font-size: 11px;
  font-weight: 900;
  color: var(--accent);
  background: transparent;
  display: inline-flex;
  padding: 0;
  border-radius: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
  font-family: 'Arial', sans-serif;
}

.card-title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: 'Georgia', serif;
}

.card-excerpt {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  font-family: 'Georgia', serif;
}

.card--hero {
  grid-row: auto;
}

.card--hero .card-img {
  height: 500px;
}

.card--hero .card-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.card--hero .card-excerpt {
  font-size: 18px;
}

/* RIGHT COLUMN */

.right-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-left: 1px solid #ddd;
  padding-left: 40px;
}

.section-heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  border-left: none;
  padding-left: 0;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  font-family: 'Arial', sans-serif;
}

.list-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border: none;
}

.list-news {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.list-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.list-item:hover {
  transform: none;
}

.list-thumb {
  border-radius: 0;
  overflow: hidden;
  height: auto;
  width: 100%;
  margin-bottom: 12px;
}

.list-thumb img {
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.list-item:hover .list-thumb img {
  filter: grayscale(0%);
}

.list-meta-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  font-family: 'Georgia', serif;
}

.list-meta-tag {
  font-size: 9px;
  font-weight: 900;
  color: var(--accent);
  background: transparent;
  display: inline-flex;
  padding: 0;
  border-radius: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'Arial', sans-serif;
}

/* MARKETS */

.markets {
  background: #000;
  border-radius: 0;
  box-shadow: none;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  border: none;
  color: #fff;
}

@media (max-width: 960px) {
  .markets {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .markets {
    gap: 20px;
  }
}

.markets-logo {
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.2em;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: 'Arial', sans-serif;
}

.market-item {
  font-size: 13px;
  font-family: 'Arial', sans-serif;
}

.market-label {
  font-weight: 700;
  margin-bottom: 4px;
  color: #999;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.market-value {
  font-size: 18px;
  font-weight: 900;
}

.market-change {
  display: inline-flex;
  margin-left: 8px;
  padding: 0;
  border-radius: 0;
  font-size: 12px;
  background: transparent;
  color: #4cd964;
  font-weight: 900;
}

/* SLIDER + GRID ALT */

.grid-below {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 960px) {
  .grid-below {
    grid-template-columns: 1fr;
  }
}

.slider {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: none;
}

.slider-main {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 600px;
}

.slider-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.slider-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
}

.slider-overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Georgia', serif;
}

.slider-overlay p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
  font-family: 'Georgia', serif;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 0;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  transition: background 0.2s ease;
}

.slider-arrow:hover {
  background: #fff;
  color: #000;
  transform: translateY(-50%) scale(1);
}

.slider-arrow.left {
  left: 20px;
}

.slider-arrow.right {
  right: 20px;
}

.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-top: 0;
}

.slider-dot {
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  padding: 8px 16px;
  border-right: 1px solid #ddd;
  transition: background 0.2s ease;
  font-family: 'Arial', sans-serif;
}

.slider-dot:hover {
  background: #f5f5f5;
}

.slider-dot.active {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: none;
}

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

@media (max-width: 640px) {
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* MOST SEARCHED */

.most-searched {
  background: #f5f5f5;
  border-radius: 0;
  box-shadow: none;
  padding: 30px 40px;
  margin-bottom: 0;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}

.most-searched-header {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  border-bottom: 2px solid #000;
  padding-bottom: 16px;
}

.most-searched-title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  font-family: 'Arial', sans-serif;
}

.most-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.most-tab {
  padding: 8px 20px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 1px solid #ddd;
  font-family: 'Arial', sans-serif;
}

.most-tab:hover {
  background: #e0e0e0;
}

.most-tab.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.most-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 30px;
  margin-top: 20px;
  font-size: 14px;
}

@media (max-width: 960px) {
  .most-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .most-list {
    grid-template-columns: 1fr;
  }
}

.most-item a {
  border-left: none;
  border-bottom: 2px solid #000;
  padding-left: 0;
  padding-bottom: 4px;
  display: inline-block;
  font-weight: 700;
  transition: color 0.2s ease;
  font-family: 'Georgia', serif;
}

.most-item a:hover {
  padding-left: 0;
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* CATEGORY PAGE */

.category-header {
  margin: 40px 0;
  border-left: none;
  padding-left: 0;
  border-bottom: 4px solid #000;
  padding-bottom: 20px;
}

.category-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: -0.02em;
  font-family: 'Georgia', serif;
}

.category-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  font-family: 'Georgia', serif;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

@media (max-width: 960px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* ARTICLE PAGE */

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 1fr);
  gap: 60px;
}

@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

.article-header {
  margin: 40px 0 30px;
  border-bottom: 4px solid #000;
  padding-bottom: 20px;
}

.article-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-family: 'Georgia', serif;
}

.article-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Arial', sans-serif;
}

.article-image {
  width: 100%;
  aspect-ratio: 16 / 9;          
  border-radius: 0;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 30px;
  box-shadow: none;
  border: none;
}

.article-image img {
  width: 100%;
  height: 100%;          
  object-fit: contain;    
  object-position: center;
  display: block;
  transition: filter 0.3s ease;
  filter: grayscale(0%);
}

.article-body p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.9;
  font-family: 'Georgia', serif;
}

.article-body p:first-child {
  font-weight: 700;
  font-size: 22px;
  color: var(--text-main);
  line-height: 1.6;
}

.article-image img {
  transition: filter 0.3s ease;
}

.article-image:hover img {
  transform: none;
  filter: grayscale(0%);
}

.article-image img {
  filter: blur(0) grayscale(0%);
  transform: scale(1);
}

.article-image img.loaded {
  filter: blur(0) grayscale(0%);
  transform: scale(1);
}

/* sidebar on article */

.sidebar-block {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border: none;
  border-left: 1px solid #ddd;
  padding-left: 30px;
}

.sidebar-title {
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  font-family: 'Arial', sans-serif;
}

/* FOOTER */

.footer {
  background: #000;
  color: #999;
  padding: 60px 20px;
  border-top: 4px solid var(--accent);
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  text-transform: none;
  color: #fff;
  font-family: 'Impact', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
  margin-bottom: 40px;
}

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 900;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  font-family: 'Arial', sans-serif;
}

.footer-links {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Georgia', serif;
}

.footer-links a {
  color: #999;
  opacity: 1;
  transition: color 0.2s ease;
  padding-left: 0;
  border-left: none;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 0;
  border-left: none;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Arial', sans-serif;
}

.footer-social {
  display: flex;
  gap: 20px;
  font-size: 18px;
}

.footer-social span {
  cursor: pointer;
  transition: color 0.2s ease;
  width: auto;
  height: auto;
  display: inline;
  border-radius: 0;
  background: transparent;
  border: none;
}

.footer-social span:hover {
  background: transparent;
  border: none;
  transform: none;
  color: #fff;
}

/* UTILS */

.hidden {
  display: none !important;
}