/* ═══════════════════════════════════════════
   CONTENT BLOCK — .cb (Light: #faf8f3)
═══════════════════════════════════════════ */

article.cb {
  /* Base container */
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 48px;
  background: #faf8f3;              /* ← your requested cream */
  color: #3a3342;                   /* soft dark charcoal */
  font-family: 'DM Sans', sans-serif;
  font-size: 15.5px;
  line-height: 1.85;
  word-wrap: break-word;
  border-radius: 18px;
  border: 1px solid #ece6d9;
  box-shadow: 0 4px 24px rgba(6,9,26,0.04);
}

/* Optional narrower reading width for long-form */
article.cb.is-narrow { max-width: 720px; }
@media (max-width: 991px) {
  .si .cgrid {
    gap: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .csb {
    width: 100%;
   }
}
@media (max-width: 768px) {
  article.cb {
    padding: 36px 24px;
    font-size: 14.5px;
    border-radius: 14px;
	width: 100%;
  }
}

/* ── Headings ── */
.cb h1, .cb h2, .cb h3, .cb h4, .cb h5, .cb h6 {
  font-family: 'Cormorant Garamond', serif;
  color: #06091a;                    /* deep navy headings */
  line-height: 1.18;
  margin: 1.7em 0 0.65em;
  letter-spacing: -0.4px;
}

.cb h1:first-child,
.cb h2:first-child,
.cb h3:first-child { margin-top: 0; }

.cb h1 { font-size: clamp(30px, 4.2vw, 44px); font-weight: 700; }
.cb h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; }
.cb h3 { font-size: clamp(22px, 2.8vw, 28px); font-weight: 700; }
.cb h4 { font-size: clamp(18px, 2.2vw, 22px); font-weight: 700; letter-spacing: 0; }
.cb h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b86900;                    /* muted amber-gold */
  margin-bottom: 1em;
}
.cb h6 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7a7285;
}

/* Decorative underline on h2 & h3 */
.cb h2::after,
.cb h3::after {
  content: '';
  display: block;
  width: 56px;
  height: 2.5px;
  margin-top: 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c9a84c, #a2823c);
}
.cb h3::after { width: 36px; height: 2px; opacity: 0.8; }

/* ── Paragraphs ── */
.cb p {
  margin: 0 0 1.3em;
  color: #4a4460;                    /* readable muted purple-grey */
}

/* ── Links ── */
.cb a {
  color: #8b5e11;                    /* deep gold for contrast on cream */
  text-decoration: none;
  border-bottom: 1.5px solid rgba(139, 94, 17, 0.25);
  transition: all 0.22s ease;
  padding-bottom: 1px;
  font-weight: 500;
}
.cb a:hover {
  color: #5c3b00;
  border-color: #8b5e11;
  background: rgba(201,168,76,0.08);
}

/* ── Bold / Strong ── */
.cb strong, .cb b {
  color: #06091a;
  font-weight: 600;
}

/* ── Italic / Em ── */
.cb em, .cb i {
  color: #8b5e11;
  font-style: italic;
}

/* ── Lists ── */
.cb ul, .cb ol {
  margin: 0 0 1.6em 0;
  padding-left: 0;
  list-style: none;
}
.cb li {
  margin-bottom: 0.6em;
  color: #4a4460;
  position: relative;
  padding-left: 1.6em;
}

/* Custom bullets — navy/gold gradient */
.cb ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #8b5e11);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* Ordered list numbers */
.cb ol { counter-reset: cb-list; }
.cb ol li::before {
  counter-increment: cb-list;
  content: counter(cb-list);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: #8b5e11;
}

/* Nested lists */
.cb ul ul, .cb ol ol, .cb ul ol, .cb ol ul {
  margin-top: 0.7em;
  margin-bottom: 0.3em;
}

/* ── Tables ── */
.cb table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 14px;
  background: #ffffff;
  border: 1px solid #e4dece;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(6,9,26,0.03);
}

.cb thead {
  background: linear-gradient(180deg, #f5f0e6, #faf8f3);
  border-bottom: 2px solid #e4dece;
}
.cb th {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5c3b00;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}
.cb td {
  padding: 14px 18px;
  color: #4a4460;
  border-bottom: 1px solid #ede8db;
  vertical-align: top;
}
.cb tbody tr:last-child td { border-bottom: none; }
.cb tbody tr {
  transition: background 0.2s ease;
}
.cb tbody tr:hover {
  background: #f7f4ec;
}

@media (max-width: 640px) {
  .cb table { font-size: 13px; }
  .cb th, .cb td { padding: 12px 14px; }
}

/* ── Blockquotes ── */
.cb blockquote {
  margin: 2em 0;
  padding: 20px 24px 20px 22px;
  background: #f5f0e6;
  border-left: 3px solid #c9a84c;
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: #5c5570;
}
.cb blockquote p { margin: 0; }

/* ── Images ── */
.cb img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #e4dece;
  display: block;
  margin: 1.8em auto;
}

/* ── Horizontal Rule ── */
.cb hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ddd5c4, transparent);
  margin: 2.4em 0;
}

/* ── Code / Pre ── */
.cb code {
  font-family: 'DM Mono', monospace, monospace;
  font-size: 13px;
  background: #f0ebe0;
  color: #7a5c1a;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #e4dece;
}
.cb pre {
  background: #ffffff;
  border: 1px solid #e4dece;
  border-radius: 14px;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 1.8em 0;
  box-shadow: 0 2px 12px rgba(6,9,26,0.03);
}
.cb pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: #4a4460;
}

/* ── Utility helpers (optional inline classes) ── */
.cb .text-gold   { color: #8b5e11 !important; }
.cb .text-navy   { color: #06091a !important; }
.cb .text-muted  { color: #7a7285 !important; }
.cb .text-center { text-align: center; }
.cb .text-right  { text-align: right; }
.cb .lead {
  font-size: 17.5px;
  color: #332e3f;
  font-weight: 400;
  line-height: 1.8;
}

/* Callout box — great for fare rules or tips */
.cb .callout {
  background: #ffffff;
  border: 1px solid #e4dece;
  border-left: 3px solid #c9a84c;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 1.6em 0;
  box-shadow: 0 2px 12px rgba(6,9,26,0.03);
}
.cb .callout p:last-child { margin-bottom: 0; }

/* ── Contact / CTA row inside article ── */
.cb .article-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2em;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid #e4dece;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(6,9,26,0.03);
}
.cb .article-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4341a, #e8432a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.cb .article-cta-body { flex: 1; }
.cb .article-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a7285;
  margin-bottom: 3px;
}
.cb .article-cta-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #06091a;
  letter-spacing: 0.3px;
}
/* Wrapper creates positioning context for the fade */
.cb-expandable-wrap {
  position: relative;
}

/* Collapsed state */
.cb-expandable {
  max-height: 340px;                 /* visible teaser height */
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Expanded state â€” large enough for any DB content */
.cb-expandable.is-expanded {
  max-height: 6000px;
}

/* Fade gradient at bottom when collapsed */
.cb-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 243, 0) 0%,
    #faf8f3 75%
  );
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* Hide fade when open */
.cb-expandable.is-expanded ~ .cb-fade-overlay {
  opacity: 0;
}

/* Toggle button */
.cb-toggle-btn {
	position:relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px auto 0;
  padding: 11px 28px;
  background: transparent;
  border: 1.5px solid #c9a84c;
  border-radius: 100px;
  color: #5c3b00;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cb-toggle-btn:hover {
  background: #c9a84c;
  color: #fff;
  border-color: #c9a84c;
}

.cb-toggle-btn:active {
  transform: translateY(1px);
}
.cb-toggle-wrap{
	
}
