/* Haber Detay Sayfası Özel Stilleri */

/* Detail Hero Banner */
.detail-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background-color: var(--tactical-green);
  border-bottom: 2px solid var(--muted-gold);
  padding-top: 100px;
  padding-bottom: 64px;
  overflow: hidden;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
  transition: transform 8s ease;
}

.detail-hero:hover .detail-hero-bg {
  transform: scale(1.03);
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--tactical-green) 10%, rgba(27, 48, 34, 0.5) 60%, rgba(27, 48, 34, 0.3));
  z-index: 1;
}

.detail-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
}

/* Breadcrumb */
.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.detail-breadcrumb a {
  font-family: var(--font-mono-family);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.detail-breadcrumb a:hover {
  color: var(--muted-gold);
}

.detail-breadcrumb .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
}

.detail-breadcrumb .breadcrumb-current {
  font-family: var(--font-mono-family);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted-gold);
  text-transform: uppercase;
}

/* Detail Meta Bar */
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.detail-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: var(--muted-gold);
  color: white;
  font-family: var(--font-mono-family);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-date {
  font-family: var(--font-mono-family);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

.detail-hero-title {
  font-family: var(--font-h-family);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Content Layout */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .detail-layout {
    grid-template-columns: 1fr 320px;
    gap: 64px;
  }
}

/* Article Body */
.article-body {
  max-width: 100%;
}

.article-lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--tactical-green);
  line-height: 1.7;
  border-left: 3px solid var(--muted-gold);
  padding-left: 24px;
  margin-bottom: 40px;
}

.article-content {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(27, 48, 34, 0.8);
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2 {
  font-family: var(--font-h-family);
  font-size: 26px;
  font-weight: 700;
  color: var(--tactical-green);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27, 48, 34, 0.1);
}

.article-content h3 {
  font-family: var(--font-h-family);
  font-size: 20px;
  font-weight: 600;
  color: var(--tactical-green);
  margin-top: 32px;
  margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 10px;
  color: rgba(27, 48, 34, 0.75);
}

.article-content li::marker {
  color: var(--muted-gold);
}

.article-content blockquote {
  border-left: 3px solid var(--muted-gold);
  padding: 24px 32px;
  margin: 32px 0;
  background-color: rgba(27, 48, 34, 0.03);
  font-style: italic;
  font-size: 18px;
  color: var(--tactical-green);
  font-weight: 500;
  line-height: 1.6;
}

.article-content strong {
  color: var(--tactical-green);
  font-weight: 600;
}

/* Article Image */
.article-image-block {
  position: relative;
  margin: 40px 0;
  overflow: hidden;
  border: 1px solid rgba(27, 48, 34, 0.1);
}

.article-image-block img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.article-image-block:hover img {
  transform: scale(1.02);
}

.article-image-caption {
  padding: 12px 16px;
  background-color: var(--tactical-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-image-caption span {
  font-family: var(--font-mono-family);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.article-image-caption .material-symbols-outlined {
  font-size: 14px;
  color: var(--muted-gold);
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 48, 34, 0.1);
}

.article-tag {
  font-family: var(--font-mono-family);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(27, 48, 34, 0.15);
  color: var(--tactical-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-tag:hover {
  background-color: var(--tactical-green);
  border-color: var(--tactical-green);
  color: white;
}

/* Share Section */
.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(27, 48, 34, 0.1);
}

.share-label {
  font-family: var(--font-mono-family);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(27, 48, 34, 0.4);
  font-weight: 700;
}

.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 48, 34, 0.15);
  background: transparent;
  color: var(--tactical-green);
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background-color: var(--tactical-green);
  border-color: var(--tactical-green);
  color: white;
}

.share-btn .material-symbols-outlined {
  font-size: 18px;
}

/* Sidebar */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Sidebar Widget */
.sidebar-widget {
  border: 1px solid rgba(27, 48, 34, 0.12);
  background-color: white;
}

.sidebar-widget-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(27, 48, 34, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-widget-header .material-symbols-outlined {
  font-size: 18px;
  color: var(--muted-gold);
}

.sidebar-widget-header h4 {
  font-family: var(--font-h-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tactical-green);
}

/* Related News Widget */
.sidebar-news-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(27, 48, 34, 0.06);
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

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

.sidebar-news-item:hover {
  background-color: rgba(27, 48, 34, 0.02);
}

.sidebar-news-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(27, 48, 34, 0.08);
}

.sidebar-news-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.sidebar-news-date {
  font-family: var(--font-mono-family);
  font-size: 10px;
  color: var(--muted-gold);
  letter-spacing: 0.1em;
}

.sidebar-news-title {
  font-family: var(--font-h-family);
  font-size: 14px;
  font-weight: 600;
  color: var(--tactical-green);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.sidebar-news-item:hover .sidebar-news-title {
  color: var(--muted-gold);
}

/* Sidebar CTA Widget */
.sidebar-cta {
  background-color: var(--tactical-green);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sidebar-cta-icon {
  color: var(--muted-gold);
}

.sidebar-cta-icon .material-symbols-outlined {
  font-size: 40px;
}

.sidebar-cta h4 {
  font-family: var(--font-h-family);
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.sidebar-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.sidebar-cta .btn {
  margin-top: 8px;
}

/* Navigation Between Articles */
.article-nav {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(27, 48, 34, 0.15);
  border-bottom: 1px solid rgba(27, 48, 34, 0.15);
}

@media (min-width: 768px) {
  .article-nav {
    grid-template-columns: 1fr 1fr;
  }
}

.article-nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 0;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
}

@media (min-width: 768px) {
  .article-nav-item {
    padding: 40px;
  }
  .article-nav-item:first-child {
    border-right: 1px solid rgba(27, 48, 34, 0.15);
  }
}

.article-nav-item:hover {
  background-color: rgba(27, 48, 34, 0.02);
}

.article-nav-label {
  font-family: var(--font-mono-family);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-nav-label .material-symbols-outlined {
  font-size: 14px;
}

.article-nav-title {
  font-family: var(--font-h-family);
  font-size: 16px;
  font-weight: 600;
  color: var(--tactical-green);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.article-nav-item:hover .article-nav-title {
  color: var(--muted-gold);
}

.article-nav-item.nav-next {
  text-align: right;
  align-items: flex-end;
}

/* Back to news button */
.back-to-news {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h-family);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--tactical-green);
  padding: 12px 0;
  transition: color 0.3s ease;
}

.back-to-news:hover {
  color: var(--muted-gold);
}

.back-to-news .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.back-to-news:hover .material-symbols-outlined {
  transform: translateX(-4px);
}
