* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
}
.post-content,
.blog-card {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.6;
}
.post-title,
.card-title {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  color: #260040;
  line-height: 1.3;
}
.author-photo,
.card-author-photo {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #daa520;
}
a {
  color: #260040;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #daa520;
  text-decoration: underline;
}
a:focus-visible {
  outline: 3px solid #260040;
  outline-offset: 2px;
  text-decoration: underline;
  background: rgba(218,165,32,0.1);
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #260040;
  color: #fff;
  padding: 8px;
  z-index: 100;
}
.skip-link:focus {
  top: 0;
}
.blog-index {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  min-height: 100vh;
}
.blog-index h1 {
  font-family: "Raleway", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #333;
}
.blog-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-card {
  display: block;
  padding: 2rem;
  background: #e7e5e5;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.blog-card:hover {
  background: #e6bd55;
  border-color: #daa520;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,0,51,0.1);
  text-decoration: none;
}
.blog-card:focus-visible {
  outline: 3px solid #daa520;
  outline-offset: 4px;
  background: #f6e9ff;
}
.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-block;
  background: #daa520;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 400;
}
.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
  color: #333;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #666;
}
.card-author-photo {
  width: 32px;
  height: 32px;
}
.card-author {
  font-weight: 400;
  color: #333;
}
.card-date {
  color: #757575;
}
.card-description {
  color: #333;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0;
}
.no-posts {
  text-align: center;
  color: #757575;
  font-style: italic;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .blog-index {
    padding: 3rem 1.5rem;
  }
  .blog-index h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 600px) {
  .blog-index {
    padding: 2rem 1rem;
  }
  .blog-index h1 {
    font-size: 2rem;
  }
  .blog-card {
    padding: 1.5rem;
  }
  .card-title {
    font-size: 1.4rem;
  }
  .card-meta {
    gap: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .blog-card {
    transition: none !important;
    transform: none !important;
  }
  .blog-card:hover {
    transform: none;
  }
}
