/* ═══════════════════════════════════════════
   PORBANDARONLINE.COM — MISSING-STYLES.CSS
   Fills gaps not present in main.css / components.css / tourism.css
   Written to match existing design tokens exactly.
   ═══════════════════════════════════════════ */

/* ══════════════════════════════
   INNER-PAGE MEGA MENU
   (used on every page except homepage —
   different markup than the homepage's .mega-links variant)
══════════════════════════════ */
.has-mega { position: relative; }
.has-mega .mega { min-width: 640px; grid-template-columns: repeat(4,1fr); }
.mega-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; padding: 20px; }
.mega-col { display: flex; flex-direction: column; gap: 2px; padding-right: 14px; border-right: 1px solid var(--border-l); }
.mega-col:last-child { border-right: none; padding-right: 0; }
.mega-head { font-family: 'Poppins', sans-serif; font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow-d); padding: 0 0 8px; border-bottom: 1px solid var(--border); margin-bottom: 6px; }
.mega-link { display: flex; align-items: center; gap: 7px; padding: 6px 7px; border-radius: 8px; font-size: 12px; color: var(--text); transition: all var(--t); white-space: nowrap; }
.mega-link:hover { background: var(--blue-l); color: var(--blue); }
.mega-link i { width: 16px; font-size: 11px; color: var(--muted); flex-shrink: 0; transition: color var(--t); }
.mega-link:hover i { color: var(--blue); }

/* ══════════════════════════════
   PAGE HERO (banner used on all inner pages)
══════════════════════════════ */
.page-hero { position: relative; padding: 56px 0 44px; overflow: hidden; }
.ph-pattern { position: absolute; inset: 0; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.ph-content { position: relative; z-index: 1; max-width: 680px; }
.ph-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,184,0,.13); border: 1px solid rgba(255,184,0,.28); border-radius: 100px; padding: 5px 14px; margin-bottom: 16px; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--yellow); }
.ph-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,42px); color: #fff; line-height: 1.15; margin-bottom: 14px; }
.ph-title em { font-style: italic; color: var(--yellow); }
.ph-sub { font-size: 14.5px; color: rgba(255,255,255,.68); line-height: 1.75; max-width: 600px; }
.ph-stats { display: flex; gap: 0; margin-top: 28px; flex-wrap: wrap; }
.ph-stat { padding: 0 26px; }
.ph-stat:first-child { padding-left: 0; }
.ph-stat + .ph-stat { border-left: 1px solid rgba(255,255,255,.15); }
.ph-stat-num { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; line-height: 1; }
.ph-stat-label { font-size: 10.5px; color: rgba(255,255,255,.5); margin-top: 4px; font-family: 'Poppins', sans-serif; letter-spacing: .03em; }

/* ══════════════════════════════
   FILTER BAR (tourism hub page tabs)
══════════════════════════════ */
.filter-bar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 68px; z-index: 80; }
.filter-inner { display: flex; gap: 8px; padding: 14px 0; overflow-x: auto; }
.filter-btn { flex-shrink: 0; padding: 8px 18px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--white); font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all var(--t); white-space: nowrap; }
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ══════════════════════════════
   TOURISM CARD GRID (hub page)
══════════════════════════════ */
.tourism-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tc-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--t); display: block; }
.tc-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.tc-img-wrap { position: relative; height: 170px; }
.tc-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.tc-img-ico { font-size: 38px; color: rgba(255,255,255,.3); }
.tc-badge { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.4); backdrop-filter: blur(6px); color: #fff; font-size: 10px; font-family: 'Poppins', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 4px 10px; border-radius: 100px; }
.tc-badge.heritage { background: rgba(154,90,26,.75); }
.tc-badge.nature   { background: rgba(10,130,200,.75); }
.tc-badge.science  { background: rgba(107,63,160,.75); }
.tc-badge-entry { position: absolute; top: 12px; right: 12px; background: var(--yellow); color: var(--dark); font-size: 10px; font-family: 'Poppins', sans-serif; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.tc-body { padding: 16px; }
.tc-meta { display: flex; gap: 12px; margin-bottom: 8px; font-size: 11px; color: var(--light); }
.tc-meta span { display: flex; align-items: center; gap: 4px; }
.tc-meta i { color: var(--blue); font-size: 10px; }
.tc-name { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--text); line-height: 1.25; margin-bottom: 4px; }
.tc-sub { font-size: 11.5px; color: var(--yellow-d); font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 8px; }
.tc-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.tc-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border-l); }
.tc-rating { display: flex; align-items: center; gap: 4px; font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; color: var(--text); }
.tc-rating i { color: var(--yellow); font-size: 11px; }
.tc-rating span { font-weight: 400; color: var(--light); font-size: 11px; }
.tc-time { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.tc-arrow { width: 26px; height: 26px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 10px; transition: all var(--t); }
.tc-card:hover .tc-arrow { background: var(--blue); color: #fff; }

/* ══════════════════════════════
   ITINERARY SECTION (tourism hub page)
══════════════════════════════ */
.section-wrap { margin: 56px 0; }
.itin-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.itin-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.itin-head { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--text); margin-bottom: 4px; }
.itin-list { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.itin-step { display: flex; gap: 12px; align-items: flex-start; }
.itin-time { flex-shrink: 0; width: 56px; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; color: var(--blue); }
.itin-title { font-size: 13px; color: var(--text); line-height: 1.5; }

/* ══════════════════════════════
   COMPARISON TABLE
══════════════════════════════ */
.comp-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.comp-table th { background: var(--sand); padding: 12px 16px; text-align: left; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.comp-table td { padding: 12px 16px; font-size: 13px; color: var(--text); border-top: 1px solid var(--border-l); }

/* ══════════════════════════════
   DIRECTORY LAYOUT (hotels / hospitals listing pages)
══════════════════════════════ */
.dir-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; }
.dir-sidebar { display: flex; flex-direction: column; gap: 16px; }
.ds-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px; }
.ds-title { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.ds-group { margin-bottom: 16px; }
.ds-group:last-child { margin-bottom: 0; }
.ds-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--light); margin-bottom: 8px; }
.ds-check { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); margin-bottom: 8px; cursor: pointer; }
.ds-check input { accent-color: var(--blue); }
.dir-main { min-width: 0; }
.dir-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.dir-count { font-size: 13.5px; color: var(--text); }
.dir-sort { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.dir-select { padding: 6px 10px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 12.5px; color: var(--text); background: var(--white); }
.dir-cta-card { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg,var(--dark),var(--blue-dd)); border-radius: var(--r-lg); padding: 22px; margin-top: 20px; }
.dc-ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--yellow); flex-shrink: 0; }
.dc-title { font-family: 'Playfair Display', serif; font-size: 17px; color: #fff; margin-bottom: 3px; }
.dc-sub { font-size: 12.5px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ══════════════════════════════
   HOTEL CARD (directory-hotels.html)
══════════════════════════════ */
.hotel-card { display: flex; gap: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 18px; transition: all var(--t); }
.hotel-card:hover { box-shadow: var(--sh-lg); }
.hc-left { width: 180px; flex-shrink: 0; }
.hc-img { width: 100%; height: 100%; min-height: 160px; display: flex; align-items: center; justify-content: center; }
.hc-body { flex: 1; padding: 20px 22px; min-width: 0; }
.hc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.hc-name { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--text); margin-bottom: 4px; }
.hc-stars { display: flex; align-items: center; gap: 3px; font-size: 11px; color: var(--muted); }
.hc-stars i { color: var(--yellow); font-size: 11px; }
.hc-rate { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--blue); white-space: nowrap; }
.hc-rate span { font-size: 11px; font-weight: 400; color: var(--light); }
.hc-rating { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--text); margin-bottom: 8px; }
.hc-rating i { color: var(--yellow); font-size: 11px; }
.hc-addr { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.hc-addr i { color: var(--blue); font-size: 11px; }
.hc-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.hf-tag { background: var(--sand); color: var(--text); font-size: 11px; font-family: 'Poppins', sans-serif; font-weight: 500; padding: 4px 10px; border-radius: 100px; display: flex; align-items: center; gap: 5px; }
.hf-tag i { font-size: 10px; color: var(--blue); }
.hc-desc { font-size: 12.5px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.hc-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ══════════════════════════════
   HOSPITAL CARD (directory-hospitals.html — note: hsp- prefix, distinct from homepage's hosp- prefix)
══════════════════════════════ */
.hosp-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 22px; margin-bottom: 16px; }
.hsp-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.hsp-ico { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.hsp-ico.gov { background: var(--blue-l); color: var(--blue); }
.hsp-ico.pvt { background: var(--teal-l); color: var(--teal); }
.hsp-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--text); margin-bottom: 5px; line-height: 1.3; }
.hsp-type { display: flex; gap: 6px; flex-wrap: wrap; }
.hsp-badge { font-size: 10px; font-family: 'Poppins', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; padding: 3px 9px; border-radius: 100px; }
.hsp-badge.gov  { background: var(--blue-l); color: var(--blue-dd); }
.hsp-badge.pvt  { background: var(--teal-l); color: var(--teal); }
.hsp-badge.emrg { background: var(--red-l); color: var(--red); }
.hsp-status { margin-left: auto; font-size: 11.5px; font-weight: 600; flex-shrink: 0; }
.hsp-status.open { color: var(--green); display: flex; align-items: center; gap: 5px; }
.hsp-status.open::before { content:''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hsp-addr { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.hsp-addr i { color: var(--blue); font-size: 11px; }
.hsp-spec { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.hsp-spec span { font-size: 12px; color: var(--text); display: flex; align-items: center; gap: 5px; }
.hsp-spec i { color: var(--green); font-size: 11px; }
.hsp-desc { font-size: 12.5px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.hsp-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ══════════════════════════════
   EMERGENCY BANNER (directory-hospitals.html top strip)
══════════════════════════════ */
.emergency-banner { background: var(--red-l); border: 1px solid #FFCCCC; border-radius: var(--r-lg); padding: 18px 22px; margin-bottom: 24px; }
.eb-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.eb-title { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: #C00; display: flex; align-items: center; gap: 8px; }
.eb-grid { display: flex; gap: 18px; flex-wrap: wrap; margin-left: auto; }
.eb-item { text-align: center; }
.eb-num { font-family: 'Playfair Display', serif; font-size: 20px; color: #C00; }
.eb-label { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */
.about-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; }
.about-section { margin-bottom: 40px; }
.about-para { font-size: 14.5px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.about-para strong { color: var(--text); font-weight: 600; }
.about-contact-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); margin-bottom: 10px; }
.about-contact-row i { color: var(--blue); width: 16px; }
.stats-bar { display: flex; gap: 0; background: linear-gradient(135deg,var(--dark),var(--blue-dd)); border-radius: var(--r-lg); padding: 28px; margin-bottom: 40px; }
.stat-item { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 30px; color: #fff; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 4px; }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 20px; }
.mission-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; text-align: center; }
.mc-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-l); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 14px; }
.mc-title { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--text); margin-bottom: 8px; }
.mc-para { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.tl-head { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.tl-para { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; }
.contact-main, .contact-sidebar { min-width: 0; }
.contact-section { margin-bottom: 0; }
.cinfo-strip { display: flex; align-items: center; gap: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px 24px; margin-bottom: 32px; flex-wrap: wrap; }
.cinfo-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); padding: 0 20px; }
.cinfo-item i { color: var(--blue); font-size: 14px; }
.cinfo-sep { width: 1px; height: 24px; background: var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 11.5px; color: var(--light); margin-top: 10px; }
.req { color: var(--red); }

/* ══════════════════════════════
   SINGLE TOURISM PLACE — final gaps
══════════════════════════════ */
.hero-left { min-width: 0; }
.main-col { min-width: 0; }
.callout-ico { font-size: 18px; flex-shrink: 0; }
.callout-yellow .callout-ico { color: var(--yellow-d); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
	.dir-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
	.tourism-grid { grid-template-columns: repeat(2,1fr); }
	.itin-grid { grid-template-columns: 1fr; }
	.mission-grid { grid-template-columns: 1fr; }
	.has-mega .mega { min-width: 92vw; left: -20px; }
	.mega-inner { grid-template-columns: repeat(2,1fr); gap: 16px; }
	.mega-col { border-right: none; padding-right: 0; }
}
@media (max-width: 640px) {
	.tourism-grid { grid-template-columns: 1fr; }
	.hotel-card { flex-direction: column; }
	.hc-left { width: 100%; height: 140px; }
	.stats-bar { flex-wrap: wrap; }
	.stat-item { flex: 1 1 50%; border-right: none; margin-bottom: 16px; }
	.form-row { grid-template-columns: 1fr; }
	.eb-grid { margin-left: 0; }
}

/* ==========================================================================
   PorbandarOnline — Mobile / Responsive QA fixes  (CMS, normal & post pages)
   Appended to missing-styles.css. Scope: About, Contact, Classifieds,
   page-hero, stats, generic page/post content. Business/Service plugin
   pages are styled by the plugins and are NOT touched here.
   ========================================================================== */

/* ---- Classifieds page (cl-*/ad-*) — was completely unstyled ---- */
.cl-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.cl-sidebar { display: flex; flex-direction: column; gap: 14px; }
.cl-main { min-width: 0; }
.ads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ad-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column; }
.ad-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,.08); }
.ad-img { height: 150px; display: flex; align-items: center; justify-content: center; }
.ad-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.ad-cat { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); display: flex; align-items: center; gap: 6px; }
.ad-title { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--text); line-height: 1.25; }
.ad-price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: var(--yellow-d, #8a6a20); }
.ad-detail { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.ad-loc, .ad-date { font-size: 12px; color: var(--light); display: flex; align-items: center; gap: 6px; }
@media (max-width: 1024px) { .cl-layout { grid-template-columns: 1fr; } .cl-sidebar { flex-direction: row; flex-wrap: wrap; } .ads-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ads-grid { grid-template-columns: 1fr; } .cl-sidebar { flex-direction: column; } }

/* ---- Tablet: give 2-column layouts a proper mid step (was jumping to 1) ---- */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: repeat(2, 1fr); }
  .itin-grid    { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Page hero (CMS pages): tidy stats, prevent stray wrap dividers ---- */
@media (max-width: 768px) {
  .page-hero { padding: 44px 0 34px; }
  .ph-stats  { gap: 10px 0; }
  .ph-stat   { padding: 0 18px; }
  .ph-stat + .ph-stat { border-left-color: rgba(255,255,255,.12); }
}

/* ---- Small phones (<=560px): CMS content breathing room ---- */
@media (max-width: 560px) {
  .page-hero { padding: 36px 0 28px; }
  .ph-title  { font-size: clamp(24px, 7vw, 32px); }
  .ph-sub    { font-size: 13.5px; }
  .ph-stat   { padding: 0 14px; }
  .ph-stat-num { font-size: 22px; }

  /* About: stats bar - tighter, clean 2x2 with even spacing */
  .stats-bar { padding: 20px 16px; gap: 4px 0; }
  .stat-item { flex: 1 1 50%; border-right: none; margin-bottom: 14px; }
  .stat-item:nth-last-child(-n+2) { margin-bottom: 0; }
  .stat-num  { font-size: 26px; }

  /* Mission cards single column */
  .mission-grid { grid-template-columns: 1fr; gap: 14px; }
  .mission-card { padding: 22px 20px; }
  .mc-ico { width: 46px; height: 46px; font-size: 20px; margin-bottom: 12px; }

  /* Contact info strip: stack items with row separators */
  .cinfo-strip { padding: 14px 16px; gap: 2px; }
  .cinfo-item  { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--border-l); }
  .cinfo-item:last-child { border-bottom: none; }

  .ds-card { padding: 16px; }
  .sec-title { font-size: clamp(22px, 6vw, 30px); }
  .about-para, .about-main p { font-size: 15px; line-height: 1.75; }

  /* Generic WordPress content (normal pages / posts) safety */
  .about-main, .about-section, .entry-content, .page-content, .polb-content, .ba-main {
    overflow-wrap: break-word; word-wrap: break-word;
  }
  .entry-content table, .page-content table, .polb-content table, .ba-main table {
    display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch;
  }
  .entry-content img, .page-content img, .polb-content img, .ba-main img { height: auto; }
}

/* ---- Very small phones (<=380px): last-mile tightening ---- */
@media (max-width: 380px) {
  .stats-bar { padding: 16px 12px; }
  .stat-num  { font-size: 23px; }
  .ph-stat   { padding: 0 10px; }
  .ph-stat + .ph-stat { padding-left: 12px; }
  .mission-card { padding: 20px 16px; }
  .ad-body { padding: 14px 16px; }
}