/* ===== CSS VARIABLES ===== */
:root {
  --indigo: #3a5aa0;
  --indigo-deep: #2b4380;
  --indigo-light: #6b8cce;
  --lavender: #9ba8d4;
  --soft-purple: #c5c9e8;
  --bg: #f8f7f4;
  --bg-2: #f0eef9;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --card-border: #e8e5f0;
  --shadow: 0 4px 24px rgba(58,90,160,0.08);
  --shadow-hover: 0 12px 40px rgba(58,90,160,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TOP BANNER ===== */
.top-banner {
  background: var(--indigo);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 8px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,247,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(58,90,160,0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--indigo);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--indigo);
  background: var(--bg-2);
}
.nav-links a.active {
  font-weight: 500;
  border-bottom: 2px solid var(--indigo);
  border-radius: 0;
  background: transparent;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--indigo);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #dde3f5 0%, #c8cfe8 30%, #b8b0d8 60%, #9fa8d4 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(58,90,160,0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 80px;
  max-width: 640px;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--indigo-deep);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--indigo);
  margin: 0 auto 24px;
  opacity: 0.5;
}

.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--indigo-deep);
  opacity: 0.85;
  line-height: 1.9;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  background: var(--indigo);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(58,90,160,0.3);
}
.btn-primary:hover {
  background: var(--indigo-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58,90,160,0.4);
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid var(--indigo);
  color: var(--indigo);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--indigo);
  color: white;
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.01em;
}

.section-line {
  width: 48px;
  height: 2px;
  background: var(--indigo);
  margin: 12px auto 36px;
  opacity: 0.4;
}

.center-link {
  text-align: center;
  margin-top: 40px;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--lavender));
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--soft-purple);
}
.card:hover::before {
  opacity: 1;
}

.card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tag-siir { background: #e8edf8; color: var(--indigo); }
.tag-deneme { background: #e8f4e8; color: #2d7a3e; }
.tag-kose { background: #fef3e2; color: #b45309; }
.tag-hikaye { background: #fce7f3; color: #9d174d; }
.tag-roman { background: #ede9fe; color: #6d28d9; }

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.card-author {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.card-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 14px;
}

/* ===== SKELETON LOADING ===== */
.card-skeleton {
  background: linear-gradient(90deg, #f0eef9 25%, #e4e1f5 50%, #f0eef9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
  height: 200px;
}
.card-skeleton.round {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== ALINTI ===== */
.alinti-section {
  position: relative;
  padding: 64px 24px;
  text-align: center;
  overflow: hidden;
}
.alinti-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8ecf8 0%, #d5daf0 100%);
}
.alinti-text {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--indigo-deep);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.quote-mark {
  font-size: 2rem;
  color: var(--lavender);
  vertical-align: middle;
  line-height: 0;
}

/* ===== DERGI GRID ===== */
.dergi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.dergi-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.dergi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.dergi-cover {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(160deg, var(--bg-2), var(--soft-purple));
  display: flex;
  align-items: center;
  justify-content: center;
}
.dergi-cover-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(160deg, #dde3f5, #b8b0d8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.dergi-cover-placeholder .sayi-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--indigo);
  opacity: 0.6;
}
.dergi-cover-placeholder .sayi-label {
  font-size: 0.75rem;
  color: var(--indigo);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dergi-info {
  padding: 16px;
}
.dergi-sayi-no {
  font-size: 0.75rem;
  color: var(--indigo);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dergi-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== YAZARLAR ===== */
.yazarlar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 32px;
}
.yazar-card {
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.yazar-card:hover { transform: translateY(-4px); }
.yazar-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--soft-purple);
  background: var(--bg-2);
  transition: var(--transition);
}
.yazar-card:hover .yazar-avatar {
  border-color: var(--indigo);
}
.yazar-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.yazar-title {
  font-size: 0.75rem;
  color: var(--indigo);
  margin-top: 2px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--indigo);
  color: rgba(255,255,255,0.9);
  padding: 48px 24px;
  margin-top: 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
}
.footer-logo em { font-style: italic; font-weight: 300; }
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.7;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  opacity: 0.75;
  transition: var(--transition);
}
.footer-links a:hover { opacity: 1; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  opacity: 0.75;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}
.footer-social a:hover { opacity: 1; }
.footer-mail { display: flex; align-items: center; gap: 6px; }

/* ===== INNER PAGES ===== */
.page-header {
  background: linear-gradient(160deg, #dde3f5 0%, #c8cfe8 100%);
  padding: 60px 24px 40px;
  text-align: center;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--indigo-deep);
  font-style: italic;
}
.page-header p {
  color: var(--indigo);
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 8px 20px;
  border: 1.5px solid var(--card-border);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.filter-tab.active,
.filter-tab:hover {
  border-color: var(--indigo);
  background: var(--indigo);
  color: white;
}

/* ===== ESER DETAIL MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 620px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
}
.modal-tag { margin-bottom: 12px; }
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 4px;
}
.modal-author {
  font-size: 0.85rem;
  color: var(--indigo);
  font-weight: 500;
  margin-bottom: 24px;
}
.modal-content {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 2;
  white-space: pre-wrap;
}
.modal-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}

/* ===== DERGI DETAIL PAGE ===== */
.dergi-detail-hero {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
}
.dergi-detail-cover {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.dergi-detail-cover img {
  width: 100%;
  display: block;
}
.dergi-detail-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--indigo-deep);
  margin-bottom: 8px;
}
.dergi-detail-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.dergi-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--indigo);
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--indigo);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(58,90,160,0.3);
}
.btn-download:hover {
  background: var(--indigo-deep);
  transform: translateY(-2px);
}

/* ===== HAKKIMIZDA ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--indigo-deep);
  margin-bottom: 16px;
}
.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ===== ILETISIM ===== */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(58,90,160,0.1);
}
.form-group textarea { height: 140px; resize: vertical; }
.contact-info { padding: 32px 0; }
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 20px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.info-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--indigo);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--indigo);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(58,90,160,0.3);
  z-index: 300;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--card-border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}
.page-btn.active,
.page-btn:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  color: white;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.empty-state svg { opacity: 0.2; margin: 0 auto 16px; }
.empty-state p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .iletisim-grid { grid-template-columns: 1fr; }
  .dergi-detail-hero { grid-template-columns: 1fr; }
  .dergi-detail-cover { max-width: 260px; }
}

@media (max-width: 680px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 12px 24px;
    border-radius: 0;
    border-bottom: none;
  }
  .nav-links a.active { border-bottom: none; background: var(--bg-2); }
  .navbar { position: relative; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cards-grid { grid-template-columns: 1fr; }
  .yazarlar-grid { grid-template-columns: repeat(2, 1fr); }
  .modal { padding: 24px; max-height: 90vh; }
}

/* ===== SEARCH BAR ===== */
.search-bar {
  position: relative;
  max-width: 400px;
  margin-bottom: 28px;
}
.search-bar input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--card-border);
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.search-bar input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(58,90,160,0.1);
}
.search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* ===== YAZAR DETAIL ===== */
.yazar-profile {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
}
.yazar-profile-img {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--soft-purple);
  background: var(--bg-2);
}
.yazar-profile-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--indigo-deep);
  margin-bottom: 4px;
}
.yazar-profile-bio {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 12px 0;
}

@media (max-width: 600px) {
  .yazar-profile { grid-template-columns: 1fr; text-align: center; }
  .yazar-profile-img { margin: 0 auto; }
}
