/* ===== News Center Page (Design Match) ===== */

.news-page {
  background: #000;
}

/* Hero */
.news-hero-section {
  padding: 3.5rem 0 3rem;
}

.news-main-title {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.news-main-sub {
  color: var(--text-secondary);

  font-weight: 300;
  max-width: 520px;
  line-height: 1.6;
}

/* Featured Carousel */
.featured-carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: transparent;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}

.featured-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.featured-carousel::-webkit-scrollbar {
  display: none;
}

.featured-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 100%;
  opacity: 0.72;
  transition: opacity 0.25s ease;
}

.featured-slide.active {
  opacity: 1;
}

.globe-visual {
  min-height: 320px;
  height: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(0, 82, 255, 0.15) 0%, #050508 60%);
}

.featured-visual {
  min-height: 320px;
  height: 100%;
  background: transparent;
  display: block;
  position: relative;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Wallet + coins visual */
.wallet-visual {
  background: radial-gradient(circle at 50% 60%, #1a1a22 0%, #050508 70%);
}

.wallet-body {
  width: 200px;
  height: 130px;
  background: linear-gradient(145deg, #2a2a30 0%, #0d0d12 100%);
  border-radius: 12px 12px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}

.wallet-body::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.coin {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8e8ec, #a0a0a8);
  color: #333;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: coin-float 3s ease-in-out infinite;
}

.coin-1 { top: 18%; left: 42%; animation-delay: 0s; }
.coin-2 { top: 8%; left: 52%; animation-delay: 0.5s; }
.coin-3 { top: 28%; left: 55%; animation-delay: 1s; }

@keyframes coin-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.globe-visual i {
  font-size: 5rem;
  color: var(--blue-light);
  opacity: 0.7;
}

.globe-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.3) 0%, transparent 70%);
  filter: blur(40px);
}

.featured-content {
  padding: 0.5rem 0 0.5rem 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-logo {
  margin-bottom: 1.25rem;
}

.featured-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--text-muted);
}

.featured-headline {
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 2rem;
}

.featured-text {
  color: var(--text-secondary);

  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.btn-learn-more {
  display: inline-block;
  width: fit-content;
  background: var(--blue-primary);
  color: #fff;
  border: #ffffff solid 1px;
  border-radius: 6px;
  padding: 0.55rem 2.6rem;
  font-weight: 500;
}

.btn-learn-more:hover {
  background: var(--blue-light);
  color: #fff;
}

.btn-learn-sm {
  padding: 0.45rem 1.1rem;

}

.carousel-hint {
  margin-top: 0.85rem;

  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.featured-carousel-dots {
  display: none;
}

.featured-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.featured-carousel-dot.active {
  background: var(--blue-primary);
  transform: scale(1.15);
}

.featured-carousel-dot:focus-visible {
  outline: 2px solid rgba(0, 82, 255, 0.6);
  outline-offset: 2px;
}

.hint-arrow {
  color: var(--text-secondary);
}

/* Industry Insights */
.insights-section {
  padding: 5rem 0;
}

.insights-header {
  margin-bottom: 2rem;
}

.insights-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.insights-sub {
  color: var(--text-secondary);

  font-weight: 300;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  grid-template-areas:
    "large small1"
    "small2 small3";
}

.insights-grid .insight-card:nth-child(1) { grid-area: large; }
.insights-grid .insight-card:nth-child(2) { grid-area: small1; }
.insights-grid .insight-card:nth-child(3) { grid-area: small2; }
.insights-grid .insight-card:nth-child(4) { grid-area: small3; }

.insight-sm {
  align-self: start;
  padding: 1.5rem 1.5rem;
}

.insight-card {
  background: #1a1a1f;
  border: none;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: background-color 0.2s;
}

.insight-card:hover {
  background: #222228;
}

.insight-large {
  padding: 2rem 1.75rem;
  min-height: 280px;
}

.insight-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.insight-large h3 {
  font-size: 1.16rem;
}

.insight-card p {
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.insight-card .btn-learn-more {
  margin-top: 1.15rem;
}

/* Media Coverage */
.media-section {
  padding: 4rem 0 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.media-section-title {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.media-row:last-child {
  border-bottom: none;
}

.media-visual {
  width: 100%;
  aspect-ratio: 1;
  max-height: 320px;
  background: #0a0a0f;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}



.media-content h3 {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.media-content p {
  color: var(--text-secondary);

  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.news-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 991.98px) {
  .insights-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "small1"
      "small2"
      "small3";
  }

  .insight-large {
    min-height: auto;
  }

  .insight-sm {
    align-self: stretch;
  }

  .media-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .media-visual {
    width: 100%;
    max-width: none;
    max-height: 280px;
    margin: 0;
  }
}

@media (max-width: 767.98px) {
  .featured-content {
    padding: 1.25rem 0 0;
  }

  .featured-visual,
  .featured-image {
    min-height: 240px;
  }

  .news-hero-section {
    padding-top: 3rem;
  }
}

/* ===== News Detail / Article Page ===== */
.news-detail-page {
  background: #000;
}

.news-article-section {
  padding: 4rem 0 5.5rem;
}

.news-article-wrap {
  margin: 0 auto;
}

.news-article-title {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 2.25rem;
}

.news-article-body p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;

  line-height: 1.75;
  margin-bottom: 1.65rem;
}

.news-article-body p:last-child {
  margin-bottom: 0;
}

.news-article-share {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2.75rem;
}

.news-article-share a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(180deg, #222228 0%, #141419 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.news-article-share a:hover {
  color: #fff;
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  box-shadow: none;
}

@media (max-width: 767.98px) {
  .news-article-section {
    padding: 2.75rem 0 4rem;
  }

  .news-article-title {
    margin-bottom: 1.75rem;
  }

  .news-article-body p {
    font-size: 0.9rem;
    margin-bottom: 1.35rem;
  }

  .news-article-share {
    margin-top: 2.25rem;
  }
}
