/* ═══════════════════════════════════════════════════════════════
   blog-post.css v6 — Perfect Circular Card Images & Approx. Dates
═══════════════════════════════════════════════════════════════ */

/* ── IMAGE STRIP ─────────────────────────────────────────────── */
.bp-img-strip-wrap {
  background: #f8f8f6;
  padding: 18px 0 14px;
  border-bottom: 1px solid #e8e4d8;
}
.bp-img-strip {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #C9961B #f0ede6;
}
.bp-img-strip::-webkit-scrollbar { height: 4px; }
.bp-img-strip::-webkit-scrollbar-track { background: #f0f0f0; }
.bp-img-strip::-webkit-scrollbar-thumb { background: #C9961B; border-radius: 2px; }

.bp-img-item {
  display: block !important;
  -webkit-box-flex: 0 !important;
  -ms-flex: 0 0 110px !important;
  flex: 0 0 110px !important;
  width: 110px !important;
  height: 110px !important;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  -webkit-transition: -webkit-transform .25s, box-shadow .25s;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  background: #dde;
  -webkit-flex-shrink: 0 !important;
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}
.bp-img-item:hover {
  -webkit-transform: translateY(-3px) scale(1.04);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.bp-img-item img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  border-radius: 0 !important;
}

/* ── MAIN ARTICLE WRAPPER ────────────────────────────────────── */
.bp-main {
  background: #fff;
  padding: 10px 0 40px;
}
.bp-main-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.bp-article {
  font-family: 'Open Sans', sans-serif;
  color: #4a4a4a;
  font-size: .98rem;
  line-height: 1.84;
  padding: 22px 0 10px;
}

/* ── HEADINGS ────────────────────────────────────────────────── */
.bp-article h1 {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem) !important;
  font-weight: 800 !important;
  color: #0d1b3e !important;
  margin: 0 0 18px !important;
  line-height: 1.26 !important;
}
.bp-article h2 {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(1.15rem, 2.3vw, 1.4rem) !important;
  font-weight: 700 !important;
  color: #0d1b3e !important;
  margin: 36px 0 14px !important;
  line-height: 1.32 !important;
  border-bottom: 2px solid #f0ede6;
  padding-bottom: 8px;
}
.bp-article h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: #1a3060 !important;
  margin: 24px 0 10px !important;
}
.bp-article h4 {
  font-family: 'Poppins', sans-serif !important;
  font-size: .95rem !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin: 18px 0 8px !important;
}
.bp-article p { margin: 0 0 16px !important; color: #4f4f4f; }
.bp-article a { color: #1a7fd4; font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; -webkit-transition: border-color .2s; transition: border-color .2s; }
.bp-article a:hover { color: #0d5fa0; border-bottom-color: #1a7fd4; }
.bp-article strong { color: #0d1b3e; }
.bp-article ul, .bp-article ol { margin: 0 0 18px 22px !important; }
.bp-article li { margin-bottom: 8px; color: #4f4f4f; }

/* ── CHECKLIST ───────────────────────────────────────────────── */
.bp-check-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 22px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px 22px !important;
}
.bp-check-list li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: #444;
  margin: 0 !important;
}
.bp-check-list li i {
  color: #2D7A4F;
  margin-top: 3px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* ── INFO / TIP / WARN BOXES ─────────────────────────────────── */
.bp-info-box {
  background: linear-gradient(135deg,#eaf4fd,#d4ecfb);
  border-left: 4px solid #1a7fd4;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 22px 0;
}
.bp-info-box h4 { color:#0d5fa0; margin:0 0 12px !important; font-size:.93rem; font-family:'Poppins',sans-serif; font-weight:700; }
.bp-info-box h4 i { margin-right:7px; }
.bp-info-box ul { margin:0 !important; padding:0 0 0 4px !important; list-style:none; }
.bp-info-box li { color:#333; font-size:.9rem; margin-bottom:7px !important; display:flex; align-items:flex-start; gap:8px; }
.bp-info-box li::before { content:'•'; color:#1a7fd4; font-weight:700; flex-shrink:0; }

.bp-tip-box {
  background: linear-gradient(135deg,#fff8e6,#fef0cc);
  border-left: 4px solid #C9961B;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 22px 0;
}
.bp-tip-box h4 { color:#a07400; margin:0 0 8px !important; font-size:.93rem; font-family:'Poppins',sans-serif; font-weight:700; }
.bp-tip-box h4 i { margin-right:7px; }
.bp-tip-box p { margin:0 !important; color:#555; font-size:.91rem; }

.bp-warn-box {
  background: linear-gradient(135deg,#fff3f0,#fde8e4);
  border-left: 4px solid #e74c3c;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 22px 0;
}
.bp-warn-box h4 { color:#c0392b; margin:0 0 8px !important; font-size:.93rem; font-family:'Poppins',sans-serif; font-weight:700; }
.bp-warn-box h4 i { margin-right:7px; }
.bp-warn-box p { margin:0 !important; color:#555; font-size:.91rem; }

/* ── TABLE ──────────────────────────────────────────────────── */
.bp-table-wrap { overflow-x: auto; margin: 22px 0; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.bp-table { width:100%; border-collapse:collapse; font-size:.88rem; }
.bp-table th { background:#0d1b3e; color:#fff; padding:12px 16px; text-align:left; font-weight:600; font-family:'Poppins',sans-serif; font-size:.85rem; white-space:nowrap; }
.bp-table td { padding:11px 16px; border-bottom:1px solid #eee; color:#444; }
.bp-table tr:nth-child(even) td { background:#f8fafc; }
.bp-table tr:hover td { background:#e8f4fd; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.bp-faq-section { margin: 20px 0; }
.bp-faq-item { border-bottom:1px solid #e8e8e8; padding:18px 0; }
.bp-faq-item:last-child { border-bottom:none; }
.bp-faq-item h3 { color:#0d1b3e !important; margin:0 0 10px !important; font-size:1rem !important; font-weight:700 !important; font-family:'Poppins',sans-serif !important; display:flex; align-items:center; gap:9px; border-bottom:none; padding-bottom:0; }
.bp-faq-item h3 i { color:#C9961B; font-size:.9rem; }
.bp-faq-item p { color:#555; margin:0 !important; font-size:.92rem; line-height:1.72; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.bp-cta-wrap {
  background: linear-gradient(135deg,#f5f0e8,#eee8d8);
  padding: 54px 24px;
  text-align: center;
  border-top: 1px solid #ddd8ca;
}
.bp-cta-card {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 34px;
  box-shadow: 0 6px 32px rgba(0,0,0,.10);
  border: 1px solid #e8e4d8;
}
.bp-cta-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,#C9961B,#e6b020);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.45rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(201,150,27,.4);
}
.bp-cta-card h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #0d1b3e !important;
  margin: 0 0 10px !important;
  border: none !important;
  padding: 0 !important;
}
.bp-cta-card p { color:#777; font-size:.92rem; margin:0 0 24px !important; line-height:1.65; }
.bp-cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,#C9961B,#e6b020);
  color: #fff !important;
  padding: 14px 34px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .94rem;
  text-decoration: none !important;
  border-bottom: none !important;
  -webkit-transition: -webkit-transform .2s, box-shadow .2s;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(201,150,27,.4);
  font-family: 'Poppins', sans-serif;
}
.bp-cta-btn:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,150,27,.55);
  color: #fff !important;
}

/* ── EXPLORE MORE SECTION (EXPLICIT SMALL CIRCLE IMAGE THUMBNAILS) ── */
.bp-explore-wrap {
  background: #fff;
  padding: 56px 0 64px;
  border-top: 1px solid #f0ede6;
}
.bp-explore-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 24px;
}
.bp-explore-hdr {
  text-align: center;
  margin-bottom: 34px;
}
.bp-explore-hdr-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg,#C9961B,#e6b020);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(201,150,27,.34);
}
.bp-explore-hdr h2 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #0d1b3e !important;
  margin: 0 !important;
  border: none !important;
  padding: 0 !important;
}
.bp-explore-grid {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 16px !important;
}
.bp-explore-card {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  background: #fff !important;
  border: 1.5px solid #e0eaf5 !important;
  border-radius: 16px !important;
  padding: 16px 10px 14px !important;
  text-decoration: none !important;
  -webkit-transition: -webkit-transform .22s, box-shadow .22s, border-color .22s;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  box-shadow: 0 2px 8px rgba(0,0,0,.055);
  text-align: center;
}
.bp-explore-card:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.12) !important;
  border-color: #C9961B !important;
}

/* MANDATORY SMALL CIRCLE CONTAINER FOR CARD IMAGES */
.bp-ec-icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  margin: 0 auto 10px !important;
  box-shadow: 0 3px 10px rgba(0,0,0,.18) !important;
  border: 2px solid #C9961B !important;
  -webkit-flex-shrink: 0 !important;
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
  background: #f0ede6 !important;
  display: block !important;
}
.bp-ec-icon img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

.bp-ec-body h4 {
  font-family: 'Poppins', sans-serif !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  color: #0d1b3e !important;
  margin: 0 0 4px !important;
  line-height: 1.3;
  border: none !important;
  padding: 0 !important;
}
.bp-ec-body p {
  font-size: .72rem !important;
  color: #777 !important;
  margin: 0 0 6px !important;
  line-height: 1.38;
}
.bp-ec-link {
  font-size: .75rem;
  font-weight: 700;
  color: #C9961B;
  display: block;
  margin-top: auto;
}
.bp-explore-card:hover .bp-ec-link { color: #a07400; }

/* ── SUPPRESS OLD ELEMENTS ───────────────────────────────────── */
.internal-link-box, .final-cta-box, .rd-post-share,
.bp-links-section, .bp-cta-box, .bp-share-row,
.post-img-block, .bp-explore-section, .bp-cta-section,
.bp-img-strip-section { display: none !important; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bp-explore-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 640px) {
  .bp-explore-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .bp-check-list { grid-template-columns: 1fr !important; }
  .bp-img-item { flex: 0 0 85px !important; width: 85px !important; height: 85px !important; }
  .bp-main-inner { padding: 0 14px; }
  .bp-article h2 { font-size: 1.1rem !important; }
  .bp-cta-card { padding: 28px 18px; }
  .bp-explore-inner { padding: 0 14px; }
  .bp-explore-hdr h2 { font-size: 1.3rem !important; }
  .bp-img-strip { padding: 0 14px; }
}
