/* Euronews Exact Visual Design Recreation */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Euronews Exact Brand Colors */
  --euronews-blue: #0172f0;
  /* Neon blue */
  --euronews-green: #99cc33;
  /* Brand green accent */
  --dark-bg: #1e1e1e;
  --darker-bg: #0a0a0a;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --border-color: #e0e0e0;
  --breaking-red: #ff3b3b;

  /* Footer CSS Variables */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-grey-1: #f8f9fa;
  --color-grey-2: #eef2f3;
  --color-grey-3: #e0e0e0;
  --color-grey-4: #d1d1d1;
  --color-grey-9: #888888;
  --color-grey-12: #333333;
  --color-primary-neon-blue: #0172f0;
  --color-primary-neon-blue-light: #33ddff;
  --color-primary-dark-blue: #003d5c;

  /* Font Sizes */
  --font-12: 12px;
  --font-14: 14px;
  --font-18: 18px;

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  /* Other */
  --global-base-unit: 8px;
  --transition-button: all 0.3s ease;
}

body {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Top Service Bar - Exact Euronews Style */
.top-service-bar {
  background: #e6eaeb;
  border-bottom: 1px solid #d0d0d0;
  display: none!important;
}


.top-service-bar .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

.service-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.service-links a,
.service-links span {
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-links a:hover {
  color: var(--euronews-blue);
}

.service-links a:hover {
  opacity: 1;
  color: var(--euronews-blue);
}

.service-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.go-to-nav-btn {
  border: 2px solid var(--euronews-blue);
  color: var(--euronews-blue);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
}

.go-to-nav-btn:hover {
  background: var(--euronews-blue);
  color: white;
}

/* Main Header - Exact Euronews Style */
.euronews-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e0e0e0;
}

.euronews-header .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Euronews Logo */
.euronews-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 24px;
}

.euronews-logo img {
  width: 72px;
  height: 72px;
  display: block;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
  margin-right: 16px;
  color: #1a1a1a;
}

/* Header Left - Menu + Logo */
.header-left {
  display: flex;
  align-items: center;
}

/* Main Navigation - Exact Euronews Style */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.main-navigation a {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0;
  padding: 26px 0;
  position: relative;
  white-space: nowrap;
}

.main-navigation a:hover {
  color: var(--euronews-blue);
}

.main-navigation a.active {
  color: var(--euronews-blue);
  font-weight: 600;
}

.main-navigation a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--euronews-blue);
}

/* Header Actions - Right Side */
.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.login-link {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.login-link:hover {
  color: var(--euronews-blue);
}

.live-btn {
  background: #e63946;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  border: none;
  cursor: pointer;
}

.live-btn:hover {
  background: #d62828;
}

/* Breadcrumbs */
.breadcrumbs {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
}

.breadcrumbs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.breadcrumbs a {
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a:hover {
  color: var(--euronews-blue);
}

.breadcrumbs span {
  color: #999;
}

/* Breaking News Ticker */
.breaking-ticker {
  background: var(--breaking-red);
  padding: 10px 0;
  overflow: hidden;
}

.breaking-ticker .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.breaking-badge {
  background: var(--white);
  color: var(--breaking-red);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  flex-shrink: 0;
}

.breaking-content {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

/* Content Container */
.content-wrapper {
  background: var(--light-gray);
  min-height: 100vh;
}

.main-content {
  max-width: 1400px;
  margin: 0 auto;
  /* padding: 40px 20px; */
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

/* Article Section */
.article-section {
  background: var(--white);
  padding: 40px;
  border-radius: 0;
}

/* Category Badge */
.category-badge {
  display: inline-block;
  background: var(--euronews-blue);
  color: var(--white);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Article Title */
.article-main-title {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

/* Article Meta */
.article-meta-info {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
  font-size: 13px;
  color: var(--text-gray);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Social Sharing */
.social-sharing {
  display: flex;
  gap: 10px;
  padding: 25px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin: 30px 0;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ccc;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--euronews-blue);
  transform: translateY(-2px);
}

.social-btn img {
  width: 20px;
  height: 20px;
}

/* Article Body Content */
.article-body {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.article-body p {
  margin-bottom: 22px;
}

.article-body strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 20px;
  line-height: 1.3;
  color: var(--text-dark);
}

/* Article Image */
.article-figure {
  margin: 40px 0;
}

.article-figure img {
  width: 100%;
}

.article-figure figcaption {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
}

/* Video Player */
.video-container {
  margin: 40px 0;
  background: #000;
}

.video-container video {
  width: 100%;
  display: block;
}

/* Info Box */
.info-box {
  background: var(--light-gray);
  border-left: 5px solid var(--euronews-blue);
  padding: 30px;
  margin: 40px 0;
}

.info-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box li {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}

.info-box li:last-child {
  border-bottom: none;
}

.info-box li b {
  color: var(--euronews-blue);
  margin-right: 10px;
  font-size: 18px;
}

/* Registration Form - Meta Style Preserved */
.registration-form {
  max-width: 500px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: var(--white);
}

.registration-form__title {
  font-size: 28px;
  font-weight: 600;
  background-color: #0172f0;
  color: var(--white);
  text-align: center;
  padding: 20px 10px;
  margin: 0;
  border-radius: 10px 10px 0 0;
}

.registration-form__inner {
  padding: 20px;
  background: #0172f0;
  border-radius: 0 0 10px 10px;
}

.registration-form__inner h2 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
  text-align: center;
}

.registration-form__inner p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

.inputs-form {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.inputs-form__input {
  width: 100%;
  position: relative;
}

.inputs-form__input input {
  width: 100%;
  outline: 0;
  height: 50px;
  padding: 0 15px;
  border: 2px solid #e2e5e7;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s all;
}

.inputs-form__input input:focus {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
  border-color: #0172f0;
}

.inputs-form__btn {
  width: 100%;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 20px;
  border-radius: 8px;
  background-color: var(--white);
  border: 2px solid var(--white);
  color: #0172f0;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.5s all;
}

.inputs-form__btn:hover {
  background: transparent;
  color: var(--white);
  border: 2px solid white;
  transform: scale(1.02);
}

.trust {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.trust-item img,
.trus-item img {
  max-width: 150px;
}

/* Sidebar */
.sidebar-content {
  position: sticky;
  top: 80px;
}

.sidebar-module {
  background: var(--white);
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
}

.sidebar-module h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--euronews-blue);
  color: var(--text-dark);
}

.sidebar-article {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-article:last-child {
  border-bottom: none;
}

.sidebar-article:hover {
  background: var(--light-gray);
  margin: 0 -15px;
  padding: 15px;
}

.sidebar-article h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.sidebar-article h4:hover {
  color: var(--euronews-blue);
}

.sidebar-article p {
  font-size: 13px;
  color: var(--text-gray);
}

.sidebar-article img {
  width: 100%;
  margin-bottom: 12px;
}

/* Comments */
.comments-area {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 3px solid var(--border-color);
}

.comments-area h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.comment-item {
  background: var(--light-gray);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid var(--euronews-blue);
}

.comment-author {
  font-weight: 700;
  color: var(--euronews-blue);
  font-size: 15px;
  margin-bottom: 5px;
}

.comment-time {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.comment-content {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Footer */
.euronews-footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 50px 0 25px;
  margin-top: 80px;
  border-top: 4px solid var(--euronews-blue);
}

.euronews-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.euronews-footer p {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
}

.euronews-footer a {
  color: #999;
}

.euronews-footer a:hover {
  color: var(--euronews-blue);
}

/* Product Name */
.productname {
  color: var(--euronews-blue);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
  }

  .sidebar-content {
    position: static;
  }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }

  .article-main-title {
    font-size: 32px;
  }

  .article-section {
    padding: 20px;
  }
}

/* Footer Additional Styles */
.c-footer-sitemap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-cta {
  color: var(--color-primary-neon-blue);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.c-cta:hover {
  opacity: 0.8;
}

.u-chevron-ie-a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--color-primary-neon-blue);
  margin-left: 8px;
  vertical-align: middle;
}

.c-social-share__item {
  list-style: none;
  margin-right: 4px;
  margin-bottom: 4px;
}

/* Utility Classes */
.hide {
  display: none;
}

.iti {
  width: 100%;
}

.u-position-relative {
  position: relative;
}