body {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.7;
    text-align: justify;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

header h1 {
    margin: 0;
}

nav {
    margin-top: 1rem;
}

nav a {
    margin: 0 0.5rem;
    text-decoration: none;
    color: #333;
}

nav a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 2rem;
}

h2 {
    margin-bottom: 0.5rem;
}

ul {
    padding-left: 1.2rem;
}

article {
    margin-bottom: 2.5rem;
}

article h2 {
    margin-bottom: 0.2rem;
}

article .meta {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 1rem;
}

footer {
    border-top: 1px solid #ccc;
    padding-top: 1rem;
    font-size: 0.9em;
    text-align: center;
    color: #555;
}

.review-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.book-cover {
    width: 120px;
    height: auto;
    border-radius: 4px;
}

.review-text {
    flex: 1;
}

.about-intro {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-intro .profile-pic {
    width: 400px;
    height: auto;
    flex-shrink: 0;
}

.disclaimer {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  text-align: center;
  margin: 1.5rem auto;
  max-width: 700px;
}

.divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem auto;
  max-width: 600px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.review-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-card img {
  width: 120px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.review-meta h2 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.1rem;
}

.review-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}
