
/* Featured Article Box styles - white background, red 3D border, responsive */
.fab-box { max-width: 980px; margin: 24px auto; padding: 12px; box-sizing: border-box; }
.fab-inner {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  border: 3px solid #e60000; /* red border */
  box-shadow: 0 10px 30px rgba(230,0,0,0.18), inset 0 -6px 18px rgba(0,0,0,0.03);
}
.fab-title {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #e60000;
  margin: 0 0 14px 0;
  text-align: center;
}
.fab-content {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.7;
  color: #111;
}
.fab-content img { max-width: 100%; height: auto; display: block; margin: 12px auto; }
.fab-button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  background: linear-gradient(180deg,#e60000,#b30000);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(179,0,0,0.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.fab-button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(179,0,0,0.34); }
@media (max-width:800px) {
  .fab-inner { padding: 18px; border-width: 2px; }
  .fab-title { font-size: 22px; }
  .fab-content { font-size: 16px; }
  .fab-button { padding: 10px 16px; }
}
/* small helper for list shortcode */
.fab-list { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.fab-list-item { background:#fff; border:1px solid #eee; padding:8px 10px; border-radius:8px; text-decoration:none; color:#222; }
