/* Start custom CSS *//* ====== STYLE ARTIKEL ELEGAN ====== */

/* Container utama artikel */
/* Featured Image elegan */
.post-thumbnail img,
.wp-post-image {
  display: block;
  margin: 0 auto 25px auto; /* center + jarak bawah */
  max-width: 800px;         /* batasi lebar (biar tidak full screen) */
  max-height: 400px;        /* batasi tinggi */
  width: 100%;              /* responsive */
  height: auto;             /* proporsional */
  object-fit: cover;
  border-radius: 12px;      /* sudut rounded */
  box-shadow: 0 6px 18px rgba(0,0,0,0.15); /* efek elegan */
}

.entry-content {
  max-width: 850px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  line-height: 1.8;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #444;
}

/* Judul artikel */
.entry-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  border-bottom: 3px solid #eee;
  padding-bottom: 10px;
}

/* Paragraf */
.entry-content p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #555;
}

/* Quote agar menonjol */
.entry-content blockquote {
  border-left: 4px solid #0073aa;
  padding: 15px 20px;
  margin: 20px 0;
  background: #f7f9fc;
  font-style: italic;
  color: #333;
  border-radius: 8px;
}

/* Gambar dalam artikel */
.entry-content img {
  display: block;
  margin: 25px auto;
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.entry-content img:hover {
  transform: scale(1.03);
}

/* Heading dalam artikel */
.entry-content h2,
.entry-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #222;
  font-weight: 600;
}

/* Tambahan card untuk highlight (misalnya Student of The Month) */
.article-card {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  text-align: center;
  transition: all 0.3s ease;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.article-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0073aa;
}
.article-card p {
  font-size: 0.95rem;
  color: #555;
}/* End custom CSS */