/* === База и шрифты === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PT Serif', serif;
  background-color: #f9f3e9; /* Пергамент */
  color: #2c1810; /* Чернильный коричневый */
  line-height: 1.7;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

/* === Заголовок и эпиграф === */
header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d4c3b1;
}

#site-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: #5a2a27;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInDown 1.2s ease forwards;
}

.subtitle {
  font-style: italic;
  color: #6b4f45;
  font-size: 1.15rem;
  margin-top: 12px;
}

.epigraph {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #5a2a27;
  opacity: 0;
  animation: fadeIn 1.5s 0.6s ease forwards;
  margin-top: 16px;
  padding-left: 20px;
  border-left: 2px solid #c9a99b;
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* === Карточки писателей === */
.writers-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.writer-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff9f2;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.3s;
  border: 1px solid #e8dcca;
}

.writer-card:hover {
  box-shadow: 0 4px 12px rgba(90, 42, 39, 0.12);
}

.writer-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #5a2a27;
}

.writer-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  margin-bottom: 6px;
  color: #5a2a27;
}

.years {
  color: #5a2a27;
  font-weight: 600;
  margin-bottom: 8px;
}

.short {
  color: #5a2a27;
  opacity: 0.88;
}

/* === Футер === */
footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  color: #7a6558;
  font-size: 0.95rem;
  border-top: 1px solid #d4c3b1;
}

/* === Адаптивность === */
@media (max-width: 600px) {
  #site-title {
    font-size: 2.4rem;
  }

  .writer-card {
    flex-direction: column;
    text-align: center;
  }

  .epigraph {
    font-size: 1.2rem;
  }
}
  .search-box {
    margin: 1.5rem 0;
    text-align: center;
  }
  .search-box input {
    width: 90%;
    max-width: 500px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'PT Serif', serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .search-box input:focus {
    outline: none;
    border-color: #8b6f4e;
  }
