.ipb-blog-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* HERO */
.ipb-blog-hero {
  background: #fdf5f5;
  text-align: center;
  padding: 50px 20px 40px;
  margin-bottom: 35px;
}
.ipb-blog-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C0392B;
  margin-bottom: 8px;
  font-weight: 500;
}
.ipb-blog-title {
  font-size: 30px;
  font-weight: 700;
  color: #C0392B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.ipb-blog-desc {
  font-size: 14px;
  color: #666;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FEATURED */
.ipb-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e8e8e8;
  margin-bottom: 40px;
  background: #fff;
}
.ipb-featured-img {
  min-height: 280px;
  background: #f5f5f5;
  overflow: hidden;
}
.ipb-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ipb-no-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: #f0f0f0;
}
.ipb-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #e8e8e8;
}
.ipb-featured-body h2 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  line-height: 1.45;
  margin: 10px 0 14px;
}

/* SHARED */
.ipb-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C0392B;
  font-weight: 600;
}
.ipb-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}
.ipb-meta {
  font-size: 11px;
  color: #bbb;
  margin-bottom: 16px;
}
.ipb-btn-red {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #C0392B;
  color: #fff !important;
  padding: 10px 22px;
  text-decoration: none !important;
  border: none;
}
.ipb-btn-red:hover {
  background: #a93226;
}

/* SECTION HEAD */
.ipb-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.ipb-section-head h2 {
  font-size: 15px;
  font-weight: 700;
  color: #C0392B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin: 0;
}
.ipb-section-line {
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

/* GRID */
.ipb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.ipb-card {
  border: 1px solid #e8e8e8;
  background: #fff;
}
.ipb-card-img {
  height: 180px;
  background: #f5f5f5;
  overflow: hidden;
}
.ipb-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ipb-card-body {
  padding: 16px 18px 20px;
}
.ipb-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.45;
  margin: 6px 0 6px;
}
.ipb-link-red {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  color: #C0392B !important;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #C0392B;
  padding-bottom: 1px;
}

/* PAGINATION */
.ipb-pagination {
  text-align: center;
  padding: 10px 0;
}
.ipb-pagination .page-numbers {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  margin: 0 3px;
  font-size: 13px;
}
.ipb-pagination .page-numbers.current,
.ipb-pagination .page-numbers:hover {
  background: #C0392B;
  color: #fff;
  border-color: #C0392B;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ipb-featured { grid-template-columns: 1fr; }
  .ipb-featured-body { border-left: none; border-top: 1px solid #e8e8e8; padding: 24px; }
  .ipb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ipb-grid { grid-template-columns: 1fr; }
}