/* Hero alanı */

.hero {
  padding: 26px 0 8px;
}

.hero--home .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
  align-items: center;
}

.hero__text {
  background: radial-gradient(circle at top left, #1d4ed8 0, #020617 60%);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 18px 45px rgba(15,23,42,0.75);
}

.hero__text h1 {
  margin: 0 0 8px;
  font-size: 26px;
  color: #f9fafb;
}

.hero__lead {
  margin: 0;
  font-size: 14px;
  color: #e5e7eb;
}

.hero__lead strong {
  color: #fbbf24;
}

.hero__note {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(15,23,42,0.8);
  border: 1px dashed rgba(148,163,184,0.6);
  font-size: 12px;
}

.hero__meta {
  background: radial-gradient(circle at top right, #22c55e 0, #020617 60%);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(34,197,94,0.5);
  box-shadow: 0 18px 45px rgba(22,101,52,0.6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.hero-badge--off {
  background: rgba(74,222,128,0.16);
  color: #bbf7d0;
  border: 1px solid rgba(74,222,128,0.6);
}

.hero-badge--spec {
  background: rgba(251,146,60,0.16);
  color: #fed7aa;
  border: 1px solid rgba(251,146,60,0.6);
}

.hero-meta-text {
  margin: 4px 0 10px;
  font-size: 13px;
  color: #ecfeff;
}

/* Bölüm başlıkları */

.section {
  margin-top: 20px;
}

.section-header {
  margin: 0 0 14px;
}

.section-header h1 {
  margin: 0 0 4px;
  font-size: 22px;
  color: #e5e7eb;
}

.section__header h2,
.section h2 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #e5e7eb;
}

.section__sub {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}

/* Haber kartları (anasayfa grid) */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.post-card {
  background: radial-gradient(circle at top, #020617 0, #020617 55%, #020617 100%);
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.35);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.post-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card__thumb-wrapper {
  position: relative;
}

.post-card__thumb {
  height: 170px;
  overflow: hidden;
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__thumb--placeholder {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #1d4ed8 0, #020617 70%);
  color: #bfdbfe;
}

.thumb-placeholder__text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.post-card__badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.badge--off {
  background: rgba(22,163,74,0.9);
  color: #dcfce7;
}

.badge--spec {
  background: rgba(249,115,22,0.96);
  color: #ffedd5;
}

.badge--mix {
  background: rgba(129,140,248,0.95);
  color: #e0e7ff;
}

.post-card__body {
  padding: 12px 14px 14px;
}

.post-card__title {
  margin: 0 0 4px;
  font-size: 16px;
  color: #f9fafb;
}

.post-card__meta {
  margin: 0 0 6px;
  font-size: 12px;
  color: #94a3b8;
}

.post-card__excerpt {
  margin: 0;
  font-size: 13px;
  color: #e5e7eb;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(15,23,42,0.95);
  border-color: rgba(129,140,248,0.7);
}

/* Timeline */

.timeline {
  border-left: 2px solid rgba(148,163,184,0.5);
  margin-top: 16px;
  padding-left: 16px;
}

.timeline__day {
  margin-bottom: 14px;
}

.timeline__date {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 6px;
}

.timeline__list {
  margin: 0;
  padding: 0;
}

.timeline__item {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4f46e5;
}

.timeline__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #e5e7eb;
}

.timeline__link:hover {
  text-decoration: underline;
}

.timeline__title {
  font-weight: 500;
}

.timeline__badge {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
}

/* Galeri */

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.media-card {
  background: #020617;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.35);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,0.8);
}

.media-card__thumb {
  height: 180px;
  overflow: hidden;
}

.media-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__caption {
  padding: 10px 12px 12px;
}

.media-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

.media-card__source {
  margin: 4px 0 0;
  font-size: 11px;
  color: #9ca3af;
}

/* Bilgi kartları (sources vb.) */

.card-grid--2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.info-card {
  background: #020617;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.35);
  padding: 14px 16px 16px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.9);
}

.info-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #e5e7eb;
}

.info-card p {
  margin: 4px 0;
  font-size: 13px;
  color: #cbd5f5;
}

.info-list {
  margin-top: 6px;
}

.info-list li {
  font-size: 13px;
  color: #e5e7eb;
  margin-bottom: 4px;
  position: relative;
  padding-left: 14px;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #60a5fa;
}

.info-note {
  margin-top: 6px;
  font-size: 12px;
  color: #9ca3af;
}

/* Orbit kartı */

.orbit-section {
  margin-top: 12px;
}

.orbit-card {
  background: #020617;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.35);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15,23,42,0.9);
}

.orbit-card__iframe {
  width: 100%;
  height: 480px;
  border: none;
}

.orbit-card__note {
  margin: 0;
  padding: 10px 14px 14px;
  font-size: 12px;
  color: #9ca3af;
}

/* Makale sayfası */

.article-page {
  margin-top: 10px;
}

.article {
  background: #020617;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.35);
  padding: 18px 18px 20px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.9);
}

.article__header {
  margin-bottom: 12px;
}

.article__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}

.article__title {
  margin: 0 0 6px;
  font-size: 22px;
  color: #f9fafb;
}

.article__meta {
  font-size: 12px;
  color: #9ca3af;
}

.article__meta span + span::before {
  content: "•";
  margin: 0 6px;
}

.article__summary {
  margin: 10px 0 8px;
  font-size: 14px;
  color: #e5e7eb;
}

.article__hero-media {
  margin: 10px 0 0;
  border-radius: 12px;
  overflow: hidden;
}

.article__hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.article__content {
  margin-top: 14px;
  font-size: 14px;
  color: #e5e7eb;
}

.article__content p {
  margin: 0 0 10px;
}

.article__footer {
  margin-top: 16px;
  font-size: 12px;
  color: #9ca3af;
}

.article__source-line {
  margin: 0 0 6px;
}

.article__source-url {
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  background: rgba(15,23,42,0.9);
  padding: 3px 6px;
  border-radius: 4px;
  word-break: break-all;
}

.article__disclaimer {
  margin: 6px 0 0;
}

/* Responsive */

@media (max-width: 900px) {
  .hero--home .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .orbit-card__iframe {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .post-card__thumb,
  .post-card__thumb--placeholder {
    height: 150px;
  }

  .media-card__thumb {
    height: 150px;
  }

  .orbit-card__iframe {
    height: 320px;
  }

  .article {
    padding: 14px 12px 16px;
  }

  .article__title {
    font-size: 19px;
  }
}
