* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
    sans-serif;
  line-height: 1.6;
  color: #444;
  background-color: #fefcf7;
  font-size: 15px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  min-height: 100vh;
}

.content-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.essays-column {
  flex: 0 0 400px;
}

.middle-column {
  flex: 0 0 240px;
}

.description {
  flex: 1;
  padding-left: 2rem;
  border-left: 1px solid #f0ede6;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

header p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: #666;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.3px;
  margin-top: 0;
}

.section {
  margin-bottom: 1.2rem;
}

.section:last-child {
  margin-bottom: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 0.6rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

a.link-item {
  display: block;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid #f0ede6;
  transition: all 0.2s ease;
}

a.link-item:hover {
  background-color: #f8f5ee;
}

a.link-item:last-child {
  border-bottom: none;
}

.link-content {
  display: flex;
  flex-direction: column;
}

.link-title {
  color: #444;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0.15rem;
  transition: color 0.2s ease;
}

a.link-item:hover .link-title {
  color: #222;
  text-decoration: underline;
}

.links a {
  display: block;
  padding: 0.25rem 0;
  text-decoration: none;
  color: #444;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  transition: all 0.2s ease;
}

.links a:hover {
  color: #222;
  background-color: #f8f5ee;
  text-decoration: underline;
}

.links a:last-child {
  border-bottom: none;
}

.meta {
  font-size: 12px;
  color: #888;
  font-style: italic;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
    sans-serif;
}

.description p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.description p:last-child {
  margin-bottom: 0;
}

.description a {
  color: #666;
  text-decoration: none;
}

.description a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .content-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .essays-column,
  .middle-column {
    flex: none;
  }

  .description {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #f0ede6;
    padding-top: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1rem;
  }
}
