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

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
  font-size: 15px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #c0392b; }
img { display: block; width: 100%; height: auto; object-fit: cover; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ── Top Bar ── */
.top-bar {
  background: #1a1a1a;
  color: #aaa;
  font-size: 12px;
  padding: 6px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-right a { color: #aaa; margin-left: 16px; }
.top-bar-right a:hover { color: #fff; }
.separator { margin: 0 8px; }

/* ── Header ── */
.site-header {
  background: #fff;
  border-bottom: 3px solid #c0392b;
  padding: 14px 0;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 32px; font-weight: 700; letter-spacing: -1px; font-family: Georgia, serif; color: #1a1a1a; }
.logo-red { color: #c0392b; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.btn-subscribe {
  background: #c0392b; color: #fff; border: none;
  padding: 8px 18px; border-radius: 4px; font-weight: 600;
  font-size: 13px; cursor: pointer;
}
.btn-subscribe:hover { background: #a93226; }
.btn-search { background: none; border: none; font-size: 20px; cursor: pointer; color: #555; }

/* ── Nav ── */
.main-nav {
  background: #c0392b;
  position: sticky; top: 0; z-index: 100;
}
.nav-inner { overflow-x: auto; }
.nav-list { display: flex; list-style: none; gap: 0; white-space: nowrap; }
.nav-list li a {
  display: block; color: #fff; font-size: 13px; font-weight: 600;
  padding: 11px 14px; text-transform: uppercase; letter-spacing: 0.3px;
  transition: background 0.15s;
}
.nav-list li a:hover, .nav-list li a.active { background: rgba(0,0,0,0.2); color: #fff; }

/* ── Ticker ── */
.ticker-wrap {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 0;
  overflow: hidden;
}
.ticker-inner { display: flex; align-items: center; gap: 12px; }
.ticker-label {
  background: #c0392b; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 2px; white-space: nowrap; flex-shrink: 0;
}
.ticker-content { overflow: hidden; flex: 1; }
.ticker-content span {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px; color: #333;
  animation: ticker 35s linear infinite;
}
@keyframes ticker {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ── Main Content ── */
.main-content { padding: 24px 0 40px; }

/* ── Hero Section ── */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  margin-bottom: 32px;
}

.hero-card { display: block; }
.hero-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 4px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.hero-card:hover .hero-img { transform: scale(1.02); }
.hero-tag {
  position: absolute; top: 12px; left: 12px;
  background: #c0392b; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
}
.hero-body { padding: 16px 0; }
.hero-title { font-family: Georgia, serif; font-size: 26px; font-weight: 700; line-height: 1.3; color: #1a1a1a; margin-bottom: 10px; }
.hero-card:hover .hero-title { color: #c0392b; }
.hero-excerpt { font-size: 15px; color: #555; line-height: 1.6; margin-bottom: 12px; }
.hero-meta { font-size: 12px; color: #888; display: flex; gap: 6px; align-items: center; }
.meta-dot { color: #ccc; }

.hero-sidebar { display: flex; flex-direction: column; gap: 0; border-left: 1px solid #e8e8e8; padding-left: 20px; }
.side-card { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
.side-card:last-child { border-bottom: none; }
.side-card img { width: 100px; min-width: 100px; height: 68px; object-fit: cover; border-radius: 3px; }
.side-card-body { flex: 1; }
.side-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: #c0392b; display: block; margin-bottom: 4px; }
.side-card-body h3 { font-size: 13.5px; font-weight: 600; line-height: 1.4; color: #1a1a1a; }
.side-card-body h3 a:hover { color: #c0392b; }

/* ── Section Headers ── */
.news-section { margin-bottom: 32px; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid #c0392b; padding-bottom: 8px; margin-bottom: 16px;
}
.section-title { font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.section-title span { position: relative; }
.view-all { font-size: 12px; color: #c0392b; font-weight: 600; }
.view-all:hover { text-decoration: underline; color: #c0392b; }

/* ── News Grid ── */
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.news-card { background: #fff; border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s; }
.news-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.news-card img { width: 100%; height: 180px; object-fit: cover; }
.news-card-featured img { height: 220px; }
.news-card-body { padding: 14px; }
.cat-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 2px 7px; border-radius: 2px; display: inline-block; margin-bottom: 8px; }
.cat-world { background: #fdecea; color: #c0392b; }
.cat-uae   { background: #e8f5e9; color: #2e7d32; }
.cat-biz   { background: #e3f2fd; color: #1565c0; }
.news-card-body h3 { font-size: 14.5px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; color: #1a1a1a; }
.news-card-body h3:hover, .news-card a:hover h3 { color: #c0392b; }
.news-card-body p { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 8px; }
.card-meta { font-size: 11px; color: #999; display: flex; justify-content: space-between; }

/* ── Two Column Layout ── */
.two-col-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.col-section { margin-bottom: 0; }

.list-articles { display: flex; flex-direction: column; gap: 0; }
.list-card { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; background: #fff; padding: 12px; }
.list-card:not(:last-child) { border-bottom: 1px solid #efefef; }
.list-card img { width: 90px; min-width: 90px; height: 62px; object-fit: cover; border-radius: 3px; }
.list-card-body { flex: 1; }
.list-card-body h3 { font-size: 13.5px; font-weight: 600; line-height: 1.4; color: #1a1a1a; margin: 4px 0; }
.list-card-body h3 a:hover { color: #c0392b; }
.list-meta { font-size: 11px; color: #999; }

/* ── Opinion ── */
.opinion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.opinion-card { background: #fff; border-radius: 4px; padding: 18px; display: flex; gap: 14px; border-top: 3px solid #c0392b; }
.opinion-author-img img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; min-width: 56px; }
.opinion-author-name { font-size: 12px; font-weight: 700; color: #c0392b; display: block; margin-bottom: 4px; }
.opinion-body h3 { font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; color: #1a1a1a; }
.opinion-body h3 a:hover { color: #c0392b; }
.opinion-body p { font-size: 12px; color: #777; line-height: 1.5; }

/* ── Footer ── */
.site-footer { background: #1a1a1a; color: #ccc; margin-top: 40px; padding: 36px 0 0; }
.footer-inner { display: flex; gap: 48px; align-items: flex-start; padding-bottom: 32px; border-bottom: 1px solid #333; }
.footer-logo { font-size: 28px; font-weight: 700; font-family: Georgia, serif; min-width: 120px; }
.footer-logo span { color: #c0392b; }
.footer-links { display: flex; gap: 48px; flex: 1; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #fff; font-weight: 700; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: #aaa; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { padding: 14px 0; text-align: center; font-size: 12px; color: #666; }

/* ── Article Page ── */
.article-main { padding: 24px 0 48px; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
.article-breadcrumb { font-size: 12px; color: #888; margin-bottom: 16px; }
.article-breadcrumb a { color: #888; }
.article-breadcrumb a:hover { color: #c0392b; }

.art-cat-tag {
  background: #c0392b; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; display: inline-block; margin-bottom: 14px;
}
.article-title { font-family: Georgia, serif; font-size: 32px; font-weight: 700; line-height: 1.25; color: #1a1a1a; margin-bottom: 14px; }
.article-deck { font-size: 17px; color: #555; line-height: 1.6; margin-bottom: 18px; font-style: italic; border-left: 3px solid #c0392b; padding-left: 14px; }
.article-meta { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; margin-bottom: 20px; }
.article-author { display: flex; gap: 10px; align-items: center; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.author-name { font-size: 13px; font-weight: 600; color: #1a1a1a; display: block; }
.article-date { font-size: 12px; color: #888; display: block; }
.share-btn { background: #c0392b; color: #fff; border: none; padding: 7px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; }

.article-figure { margin: 0 0 24px; }
.article-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: 4px; }
.article-figure figcaption { font-size: 12px; color: #888; margin-top: 6px; line-height: 1.5; }

.article-content { font-size: 16px; line-height: 1.8; color: #2a2a2a; }
.article-lead { margin-bottom: 18px; }
.article-content p { margin-bottom: 18px; }
.article-content h2 { font-family: Georgia, serif; font-size: 22px; font-weight: 700; color: #1a1a1a; margin: 28px 0 14px; padding-bottom: 8px; border-bottom: 2px solid #f0f0f0; }
.article-content ul { margin: 0 0 18px 22px; }
.article-content ul li { margin-bottom: 8px; }

.article-tags { margin-top: 28px; padding-top: 16px; border-top: 1px solid #e8e8e8; font-size: 13px; }
.tag { display: inline-block; background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 20px; padding: 4px 12px; margin: 4px 4px 4px 0; font-size: 12px; color: #555; }
.tag:hover { background: #fdecea; border-color: #c0392b; color: #c0392b; }

/* ── Sidebar ── */
.article-sidebar { position: sticky; top: 50px; }
.sidebar-section { background: #fff; border-radius: 4px; padding: 16px; margin-bottom: 20px; }
.sidebar-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #1a1a1a; border-bottom: 2px solid #c0392b; padding-bottom: 8px; margin-bottom: 14px; }
.most-read-list { padding-left: 18px; }
.most-read-list li { font-size: 13px; line-height: 1.5; margin-bottom: 12px; color: #333; }
.most-read-list li a:hover { color: #c0392b; }
.ad-placeholder { background: #f5f5f5; text-align: center; color: #aaa; font-size: 12px; padding: 60px 20px; border: 1px dashed #ddd; border-radius: 4px; }
.related-list { display: flex; flex-direction: column; gap: 12px; }
.related-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #333; line-height: 1.4; }
.related-item img { width: 70px; min-width: 70px; height: 50px; object-fit: cover; border-radius: 3px; }
.related-item:hover { color: #c0392b; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-sidebar { border-left: none; border-top: 1px solid #e8e8e8; padding-left: 0; padding-top: 16px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card-featured { grid-column: span 2; }
  .two-col-layout { grid-template-columns: 1fr; }
  .opinion-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 20px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { grid-column: span 1; }
  .top-bar-right { display: none; }
  .article-title { font-size: 24px; }
}
