body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #f8f9fa;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

h1 {
  font-size: 2rem;
  border-left: 8px solid #6cc644;
  padding-left: 1rem;
  background: #eef7ef;
  border-radius: 0.5rem;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.05);
}

.latin {
  font-size: 1rem;
  color: #666;
  margin-left: 0.8rem;
}

.date {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.text {
  flex: 1 1 58%;
}

.images {
  flex: 1 1 38%;
}

.images img {
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.taxonomy {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.taxonomy th, .taxonomy td {
  border: 1px solid #e1e1e1;
  padding: 0.5rem 0.8rem;
  text-align: left;
}

.taxonomy th {
  background-color: #f6f8fa;
  font-weight: 600;
  color: #333;
}

h2 {
  margin-top: 2rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.3rem;
  color: #333;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.thumb {
  width: 150px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.thumb img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.thumb p {
  font-size: 0.9rem;
  color: #444;
  margin: 0.4rem 0 0;
}

.related {
  margin-top: 1rem;
  padding-left: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.related li {
  list-style: none;
}

.related a {
  background: #eef1f5;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  color: #444;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.related a:hover {
  background: #dce4ec;
}