/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fffaf7;
  color: #222;
  line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HERO SECTION
========================= */
.academy-blog-hero {
  background: linear-gradient(135deg, #fff1f5, #ffffff);
  padding: 80px 0;
  text-align: center;
}

.academy-blog-hero h1 {
  font-size: 42px;
  color: #b76e79;
  font-weight: 700;
  margin-bottom: 10px;
}

.academy-blog-hero p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* =========================
   FILTERS
========================= */
.blog-filters {
  padding: 20px 0;
  text-align: center;
}

.blog-filters ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-filters ul li a {
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid #eee;
  border-radius: 25px;
  color: #444;
  font-size: 14px;
  transition: 0.3s;
  background: #fff;
}

.blog-filters ul li a:hover {
  background: #b76e79;
  color: #fff;
  border-color: #b76e79;
}

/* =========================
   BLOG GRID (FULL LIST)
========================= */
.academy-blog-list {
  padding: 60px 0;
}

.academy-blog-list .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* =========================
   BLOG CARD
========================= */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.blog-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* READ MORE BUTTON */
.blog-content a {
  display: inline-block;
  padding: 8px 16px;
  background: #b76e79;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 13px;
  transition: 0.3s;
}

.blog-content a:hover {
  background: #8a4f59;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .academy-blog-list .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .academy-blog-list .container {
    grid-template-columns: 1fr;
  }

  .academy-blog-hero h1 {
    font-size: 30px;
  }
}