/* Blog detay + arşiv — Next.js BlogDetailPage */
.vgz-blog-detail {
  min-height: 100vh;
  background: #f8faff;
}

.vgz-blog-hero {
  position: relative;
  height: clamp(320px, 45vw, 520px);
  overflow: hidden;
  background: #0f172a;
}

.vgz-blog-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vgz-blog-hero__img--fallback {
  object-fit: unset;
}

.vgz-blog-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 40, 0.88) 0%, rgba(10, 15, 40, 0.4) 50%, rgba(0, 0, 0, 0.25) 100%);
}

.vgz-blog-hero__back {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 8px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.vgz-blog-hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 48px);
}

.vgz-blog-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.vgz-blog-hero__cat {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 14px;
}

.vgz-blog-hero__title {
  font-family: var(--vgz-serif);
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.vgz-blog-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.vgz-blog-detail__wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px clamp(16px, 3vw, 24px) 80px;
}

.vgz-blog-detail__lead {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.vgz-blog-detail__lead p {
  margin: 0;
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  font-style: italic;
}

.vgz-blog-detail__content {
  margin-bottom: 32px;
}

.vgz-blog-detail__content h2 {
  font-family: var(--vgz-title);
  font-size: 20px;
  font-weight: 700;
  color: #1a2332;
  margin: 28px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
}

.vgz-blog-detail__content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 20px;
}

.vgz-blog-detail__content blockquote {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border: 1px solid #c7d2fe;
  border-radius: 14px;
  padding: 16px 20px;
  margin: 24px 0;
}

.vgz-blog-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #f1f5f9;
}

.vgz-blog-related__title {
  font-family: var(--vgz-title);
  font-size: 16px;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 16px;
}

.vgz-blog-related__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vgz-blog-related__item {
  display: flex;
  gap: 14px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: box-shadow 0.15s ease;
}

.vgz-blog-related__item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vgz-blog-related__thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.vgz-blog-related__thumb--ph {
  object-fit: unset;
}

.vgz-blog-related__name {
  font-family: var(--vgz-title);
  font-size: 13px;
  font-weight: 700;
  color: #1a2332;
  line-height: 1.35;
  margin-bottom: 4px;
}

.vgz-blog-related__meta {
  font-size: 11px;
  color: #94a3b8;
}

.vgz-blog-comments {
  margin-top: 52px;
}

.vgz-blog-comments__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.vgz-blog-comments__head h2 {
  font-family: var(--vgz-title);
  font-size: 22px;
  font-weight: 800;
  color: #1a2332;
  margin: 0;
}

.vgz-blog-comments__count {
  font-size: 12px;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 12px;
}

.vgz-blog-comment {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.vgz-blog-comment__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.vgz-blog-comment__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #6366f1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.vgz-blog-comment__who strong {
  display: block;
  font-size: 14px;
  color: #1a2332;
}

.vgz-blog-comment__who time {
  font-size: 11px;
  color: #94a3b8;
}

.vgz-blog-comment__text {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

.vgz-blog-comments__empty {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.vgz-blog-comments__form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  margin-top: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #f1f5f9;
}

.vgz-blog-comments__form-wrap h3 {
  font-family: var(--vgz-title);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #1a2332;
}

.vgz-blog-comments__hint {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 20px;
}

.vgz-blog-comments__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.vgz-blog-comments__form label span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 6px;
}

.vgz-blog-comments__form input,
.vgz-blog-comments__form textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
}

.vgz-blog-comments__full {
  grid-column: 1 / -1;
}

.vgz-blog-comments__submit {
  grid-column: 1 / -1;
  justify-self: start;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.vgz-blog-comments__submit:hover {
  background: #1d4ed8;
}

.vgz-blog-comments__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vgz-blog-comments__msg {
  grid-column: 1 / -1;
  font-size: 13px;
  margin: 0;
}

.vgz-blog-comments__msg.is-ok {
  color: #16a34a;
}

.vgz-blog-comments__msg.is-err {
  color: #dc2626;
}

.vgz-blog-archive {
  padding: 48px 0 80px;
  background: var(--vgz-bg);
}

.vgz-blog-archive__head {
  margin-bottom: 32px;
}

.vgz-blog-archive__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vgz-green);
  margin: 0 0 8px;
}

.vgz-blog-archive__title {
  font-family: var(--vgz-serif);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0;
  color: var(--vgz-charcoal);
}

.vgz-blog-archive__title em {
  font-style: italic;
  color: var(--vgz-blue);
}

.vgz-blog-grid--archive {
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  .vgz-blog-comments__form {
    grid-template-columns: 1fr;
  }
}
