/* 🌞 SERNO Color Theme (Golden) */
a {
  color: #f2b236;
  text-decoration: none;
}

a:hover {
  color: #ffd17d;
  text-decoration: underline;
}

button, .button {
  background-color: #f9cc61;
  color: #111;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover, .button:hover {
  background-color: #ffd17d;
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  color: #f9cc61;
}

body {
  background-color: #111;
  color: #EDEDED;
}

/* ✅ SERNO Post Card Layout */
.post-card {
  background-color: #222;
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s;
  margin-bottom: 20px;
}

/* ✅ Text Styles in Post Content */
.entry-content p {
  color: #EDEDED;
  line-height: 1.75;
  font-size: 1.05rem;
}

.entry-content strong,
.entry-content em,
.entry-content blockquote {
  color: #f2b236;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  color: #f9cc61;
}

/* ✅ Category Labels */
.category-label.music {
  background-color: #f9cc61;
  color: #111;
}

.category-label.life {
  background-color: #ffd17d;
  color: #111;
}

.category-label.creation-notes {
  background-color: #f2b236;
  color: #111;
}

.category-label {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 6px;
}

/* ✅ Responsive Layout */
@media screen and (max-width: 1024px) {
  .post-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .post-cards {
    grid-template-columns: 1fr;
  }

  .blog-intro h2 {
    font-size: 1.6rem;
  }

  .archive-header h1 {
    font-size: 1.4rem;
  }

  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .filter-button {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .post-card {
    padding: 18px;
  }
}

/* ✅ Active Filter Button */
.filter-button.active {
  background-color: #f9cc61 !important;
  color: #111 !important;
}