/* =========================================================
   NEW BLOG ENGINE — DELECON® DESIGN CO. (2030 READY)
   Clean, fast, mobile-first, modern card architecture
   ========================================================= */

/* BASE */
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #f3f5f9;
  color: #1f2937;
  line-height: 1.7;
}

/* MAIN BLOG CONTAINER */
.nb-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px 24px; /* no big bottom gap */
}

/* ARTICLE CARD */
.nb-article {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 28px 40px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

/* HERO IMAGE */
.nb-hero {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #000;
}

.nb-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* TITLE + INTRO */
.nb-title {
  font-size: 32px;
  line-height: 1.25;
  color: #00214d;
  margin-bottom: 12px;
}

.nb-intro {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 22px;
}

/* META PILLS */
.nb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.nb-pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: #e7eefc;
  color: #1e3a8a;
  padding: 5px 12px;
  border-radius: 999px;
}

/* CONTENT BLOCKS */
.nb-block {
  margin: 26px 0;
}

.nb-block h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #0f172a;
}

.nb-block h3 {
  font-size: 18px;
  margin: 14px 0 6px;
  color: #111827;
}

.nb-block p {
  font-size: 16px;
  margin: 6px 0 10px;
}

.nb-block ul {
  margin: 6px 0 10px 20px;
  padding: 0;
}

.nb-block li {
  font-size: 16px;
  margin-bottom: 4px;
}

/* INLINE IMAGE */
.nb-inline-img {
  margin: 26px 0;
}

.nb-inline-img img {
  width: 100%;
  border-radius: 18px;
}

/* CALCULATORS GRID */
.nb-calculators {
  background: #f7f9fc;
  padding: 25px 20px;
  border-radius: 20px;
  margin: 30px 0;
}

.nb-calculators h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.nb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.nb-card {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: .2s ease;
}

.nb-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}

.nb-card i {
  font-size: 24px;
  margin-bottom: 8px;
  color: #00214d;
}

.nb-card-title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.nb-card-note {
  font-size: 13px;
  color: #6b7280;
}

/* FINAL NEXT LINKS */
.nb-final {
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.nb-links a {
  color: #1d4ed8;
  text-decoration: none;
}

.nb-links a:hover {
  text-decoration: underline;
}

/* ==========================================================
   UNIVERSAL SAFE SPACING — HEADER
   ========================================================== */

.dcc-header-inner {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

@media (max-width: 768px) {
  .dcc-header-inner {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* ==========================================================
   BRAND FOOTER — ALIGN WITH BLOG CARD
   ========================================================== */

.brand-closure-final {
  max-width: 1180px;
  margin: 0 auto 16px;
  padding: 0 16px 16px;
}

.bc-card {
  width: 100%;
  margin: 16px 0 0;          /* small gap above, none below */
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15,23,42,0.08);
}

/* Let brand-footer.css handle typography & flex;
   here we only align spacing with blog card. */

/* MOBILE FOOTER ADJUST */
@media (max-width: 768px) {
  .bc-card {
    border-radius: 22px;
    margin-top: 14px;
  }
}

/* ==========================================================
   HIDDEN SEO GEM — FULL INVISIBLE MODE
   ========================================================== */

.hidden-seo-gem {
  position: absolute !important;
  left: -99999px !important;
  top: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -99999 !important;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {
  .nb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .nb-title {
    font-size: 24px;
  }

  .nb-grid {
    grid-template-columns: 1fr;
  }

  .nb-article {
    padding: 20px 18px 28px;
  }
}/* === FINAL TYPOGRAPHY FIX — FORCE SAME SIZE AS BANDRA BLOG === */

.nb-article * {
  font-family: "Inter", Arial, sans-serif !important;
  line-height: 1.65 !important;
  color: #1a1a1a !important;
}

/* Main paragraphs */
.nb-article p {
  font-size: 17px !important;
  margin-bottom: 16px !important;
}

/* Blog list items */
.nb-article li {
  font-size: 17px !important;
  margin-bottom: 10px !important;
}

/* Headings */
.nb-article h1 {
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  margin: 18px 0 !important;
}

.nb-article h2 {
  font-size: 24px !important;
  font-weight: 700 !important;
  margin: 16px 0 !important;
}

.nb-article h3 {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin: 14px 0 !important;
}

/* Meta pills */
.nb-pill {
  font-size: 14px !important;
}

/* Responsive corrections */
@media (max-width: 768px) {
  .nb-article p,
  .nb-article li {
    font-size: 18px !important;
    line-height: 1.72 !important;
  }

  .nb-article h1 {
    font-size: 26px !important;
  }

  .nb-article h2 {
    font-size: 22px !important;
  }

  .nb-article h3 {
    font-size: 19px !important;
  }
}