/*
 * Rising Careers — Blog Post Stylesheet (rc-blog.css)
 * Loaded ONLY on single posts (see functions.php).
 * All classes are prefixed with .rc- to avoid clashing with Divi.
 *
 * Fonts are loaded separately via functions.php (Google Fonts).
 */

/* ═══ CSS VARIABLES ═════════════════════════════════════════════════════ */
:root {
  --rc-bg:       #FEFCF8;
  --rc-bg2:      #F7F3EB;
  --rc-bg3:      #EFE9DC;
  --rc-navy:     #0D1B2A;
  --rc-navy2:    #1C3049;
  --rc-text:     #2A3A4A;
  --rc-muted:    #6B7D8E;
  --rc-faint:    #A8B5BF;
  --rc-gold:     #B8892A;
  --rc-gold-lt:  #D4A843;
  --rc-gold-bg:  #FBF5E6;
  --rc-gold-bdr: #E6D09A;
  --rc-green:    #1A7F5A;
  --rc-green-bg: #E8F5EF;
  --rc-red:      #C0392B;
  --rc-red-bg:   #FDECEA;
  --rc-border:   #E5DDD0;
  --rc-shadow:   0 2px 12px rgba(13,27,42,.06);
  --rc-shadow-lg:0 20px 56px rgba(13,27,42,.09);
  --rc-r:        14px;
  --rc-ease:     cubic-bezier(.25,.46,.45,.94);
}

/* ═══ RESET (scoped to blog posts only) ════════════════════════════════ */
.rc-page-body *, .rc-page-body *::before, .rc-page-body *::after {
  box-sizing: border-box;
}
body { background: var(--rc-bg); }
body.rc-mob-sticky-active { padding-bottom: 76px; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--rc-bg2); }
::-webkit-scrollbar-thumb { background: var(--rc-gold); border-radius: 2px; }

/* ═══ READING PROGRESS BAR ══════════════════════════════════════════════ */
#readProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--rc-gold), var(--rc-green));
  z-index: 9999; transition: width .1s linear;
}

/* ═══ ANNOUNCEMENT BAR ══════════════════════════════════════════════════ */
.rc-annc-bar {
  background: var(--rc-navy); color: rgba(255,255,255,.82);
  text-align: center; padding: 10px 5vw;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .74rem; font-weight: 500; letter-spacing: .04em;
  position: relative; z-index: 1001;
  display: flex; align-items: center; justify-content: center;
  gap: .65rem; flex-wrap: wrap;
}
.rc-annc-dot {
  width: 6px; height: 6px; background: #27AE60; border-radius: 50%;
  flex-shrink: 0; animation: rc-blink 2s infinite;
}
@keyframes rc-blink { 0%,100%{opacity:1;} 50%{opacity:.15;} }
.rc-annc-bar a {
  color: var(--rc-gold); font-weight: 700; text-decoration: none;
  border-bottom: 1px solid rgba(184,137,42,.3); transition: border-color .2s;
}
.rc-annc-bar a:hover { border-color: var(--rc-gold); }
.rc-annc-close {
  position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.4);
  cursor: pointer; font-size: 1rem; padding: 4px; transition: color .2s; line-height: 1;
}
.rc-annc-close:hover { color: rgba(255,255,255,.85); }

/* ═══ NAV ════════════════════════════════════════════════════════════════ */
nav#mainNav {
  position: fixed; left: 0; right: 0; z-index: 1000; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; transition: background .35s, box-shadow .35s, top .15s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
nav#mainNav.scrolled {
  background: rgba(254,252,248,.96); backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--rc-border);
}
.rc-nav-logo {
  font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 700;
  color: var(--rc-navy); text-decoration: none; letter-spacing: .02em;
  display: flex; align-items: center; gap: 10px;
}
.rc-nav-logo-img {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--rc-gold); box-shadow: 0 2px 8px rgba(184,137,42,.25);
}
.rc-nav-logo span { color: var(--rc-gold); }
.rc-nav-links { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.rc-nav-links a {
  font-size: .8rem; font-weight: 600; color: var(--rc-muted); text-decoration: none;
  letter-spacing: .06em; text-transform: uppercase; transition: color .2s;
}
.rc-nav-links a:hover { color: var(--rc-navy); }
.rc-nav-cta {
  background: var(--rc-navy); color: #fff; padding: 9px 20px; border-radius: 100px;
  font-size: .8rem; font-weight: 600; text-decoration: none; letter-spacing: .04em;
  transition: background .2s, transform .2s; white-space: nowrap;
}
.rc-nav-cta:hover { background: var(--rc-gold); transform: translateY(-1px); }
.rc-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.rc-hamburger span { display: block; width: 22px; height: 2px; background: var(--rc-navy); border-radius: 2px; transition: .3s; }
.rc-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.rc-hamburger.active span:nth-child(2) { opacity: 0; }
.rc-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.rc-mob-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(254,252,248,.97); backdrop-filter: blur(16px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.rc-mob-menu.open { display: flex; }
.rc-mob-menu a {
  font-family: 'Lora', serif; font-size: 1.7rem; font-weight: 700;
  color: var(--rc-navy); text-decoration: none; transition: color .2s;
}
.rc-mob-menu a:hover { color: var(--rc-gold); }
.rc-has-dropdown { position: relative; }
.rc-nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(40,44,52,.96); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
  padding: .5rem 0; min-width: 190px;
  opacity: 0; visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 1100; white-space: nowrap;
}
.rc-has-dropdown:hover .rc-nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.rc-nav-dropdown a {
  display: block; padding: .6rem 1.35rem; font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.7); text-decoration: none; letter-spacing: .06em;
  text-transform: uppercase; transition: color .15s, background .15s;
}
.rc-nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,.06); }
.rc-has-dropdown > a::after { content: ' ▾'; font-size: .65rem; opacity: .6; }

/* ═══ MOBILE STICKY BAR ═════════════════════════════════════════════════ */
.rc-mob-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: #fff; border-top: 1px solid var(--rc-border);
  box-shadow: 0 -4px 24px rgba(13,27,42,.1);
  padding: 12px 5vw; gap: 10px; align-items: center;
  animation: rc-slideUp .4s var(--rc-ease) both;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.rc-mob-sticky.show { display: flex; }
@keyframes rc-slideUp { from{transform:translateY(100%);opacity:0;} to{transform:none;opacity:1;} }
.rc-mob-sticky-text { flex: 1; }
.rc-mob-sticky-text strong { display: block; font-size: .85rem; font-weight: 700; color: var(--rc-navy); }
.rc-mob-sticky-text span  { font-size: .72rem; color: var(--rc-muted); }
.rc-mob-sticky a {
  background: var(--rc-navy); color: #fff; padding: 11px 20px;
  border-radius: 100px; font-size: .82rem; font-weight: 700;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}

/* ═══ WHATSAPP FAB ══════════════════════════════════════════════════════ */
.rc-wa-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.35); text-decoration: none;
  transition: transform .2s, bottom .3s; animation: rc-wapulse 3s ease-in-out infinite;
}
.rc-wa-fab:hover { transform: scale(1.1); }
@keyframes rc-wapulse { 0%,100%{box-shadow:0 8px 24px rgba(37,211,102,.35);} 50%{box-shadow:0 8px 36px rgba(37,211,102,.6);} }
.rc-wa-fab svg { width: 25px; height: 25px; fill: #fff; }
.rc-wa-fab.sticky-shown { bottom: 6.5rem; }

/* ═══ FOOTER ════════════════════════════════════════════════════════════ */
footer { background: var(--rc-navy); padding: 4rem 5vw 2rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.rc-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.rc-footer-logo { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: .45rem; display: flex; align-items: center; gap: 12px; }
.rc-footer-logo-img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid var(--rc-gold); }
.rc-footer-logo span { color: var(--rc-gold); }
.rc-footer-tagline { font-size: .83rem; color: rgba(255,255,255,.38); line-height: 1.75; max-width: 260px; margin-bottom: .9rem; }
.rc-footer-license { font-size: .7rem; color: rgba(255,255,255,.22); margin-bottom: 1.2rem; }
.rc-social-links { display: flex; gap: .55rem; }
.rc-soc-link { width: 34px; height: 34px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.4); text-decoration: none; transition: all .2s; }
.rc-soc-link:hover { background: var(--rc-gold); border-color: var(--rc-gold); color: var(--rc-navy); }
.rc-footer-col-title { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.rc-footer-col a { display: block; font-size: .85rem; color: rgba(255,255,255,.48); text-decoration: none; margin-bottom: .45rem; transition: color .2s; }
.rc-footer-col a:hover { color: #fff; }
.rc-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.6rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.rc-footer-copy { font-size: .78rem; color: rgba(255,255,255,.22); }
.rc-footer-bottom-links { display: flex; gap: 1.5rem; }
.rc-footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.28); text-decoration: none; }
.rc-footer-bottom-links a:hover { color: rgba(255,255,255,.6); }
.rc-sub-form { display: flex; gap: .55rem; margin-top: .75rem; }
.rc-sub-form input { flex: 1; min-width: 0; padding: 8px 13px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .8rem; outline: none; }
.rc-sub-form input::placeholder { color: rgba(255,255,255,.28); }
.rc-sub-form input:focus { border-color: var(--rc-gold); }
.rc-sub-form button { padding: 8px 16px; background: var(--rc-gold); color: var(--rc-navy); border: none; border-radius: 100px; font-weight: 700; cursor: pointer; font-size: .78rem; font-family: 'Plus Jakarta Sans', sans-serif; transition: opacity .2s; flex-shrink: 0; }
.rc-sub-form button:hover { opacity: .85; }

/* ═══ BLOG PAGE LAYOUT ═══════════════════════════════════════════════════ */
.rc-blog-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.rc-page-body { padding-top: 110px; font-family: 'Plus Jakarta Sans', sans-serif; }

/* ═══ BREADCRUMB ════════════════════════════════════════════════════════ */
.rc-breadcrumb-bar {
  background: rgba(255,255,255,.7); border-bottom: 1px solid var(--rc-border);
  padding: 10px 0; backdrop-filter: blur(8px);
}
.rc-breadcrumb-bar ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; list-style: none; font-size: .78rem; color: var(--rc-muted); margin: 0; padding: 0; }
.rc-breadcrumb-bar ol li a { color: var(--rc-gold); text-decoration: none; }
.rc-breadcrumb-bar ol li a:hover { text-decoration: underline; }
.rc-breadcrumb-bar ol li::after { content: '/'; margin-left: 4px; color: var(--rc-border); }
.rc-breadcrumb-bar ol li:last-child::after { display: none; }

/* ═══ ARTICLE LAYOUT ════════════════════════════════════════════════════ */
.rc-article-layout {
  display: grid; grid-template-columns: 1fr 310px;
  gap: 4rem; align-items: start; padding: 52px 0 80px;
}

/* ═══ ARTICLE HEADER ════════════════════════════════════════════════════ */
.rc-article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 16px; }
.rc-article-tag { background: #DBEAFE; color: #1a5fa8; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.rc-article-date, .rc-article-read-time { font-size: .78rem; color: var(--rc-muted); }
.rc-article-read-time { background: var(--rc-bg2); padding: 3px 10px; border-radius: 20px; border: 1px solid var(--rc-border); }
.rc-article-title { font-family: 'Lora', serif; font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--rc-navy); line-height: 1.25; margin-bottom: 16px; }
.rc-article-subtitle { font-size: 1.02rem; color: var(--rc-muted); line-height: 1.7; max-width: 680px; }

/* ═══ FEATURED BLOCK ════════════════════════════════════════════════════ */
.rc-featured-block {
  background: linear-gradient(135deg, var(--rc-navy) 0%, var(--rc-navy2) 100%);
  border-radius: var(--rc-r); padding: 36px 40px; color: #fff; margin: 2rem 0;
  position: relative; overflow: hidden;
}
.rc-featured-block-emoji { position: absolute; right: 30px; top: 20px; font-size: 80px; opacity: .1; pointer-events: none; }
.rc-featured-block-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rc-gold); margin-bottom: 8px; }
.rc-featured-block-title { font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 600; margin-bottom: 12px; }
.rc-featured-block-text { font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.7; max-width: 560px; }
.rc-featured-block-update { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 8px 14px; font-size: .8rem; }

/* ═══ KEY FACTS ══════════════════════════════════════════════════════════ */
.rc-key-facts { background: var(--rc-navy); border-radius: var(--rc-r); padding: 28px 32px; margin-bottom: 2.5rem; color: #fff; }
.rc-key-facts-title { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rc-gold); margin-bottom: 18px; }
.rc-kf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.rc-kf-item { display: flex; flex-direction: column; gap: 4px; }
.rc-kf-val { font-size: 1.3rem; font-weight: 800; font-family: 'Lora', serif; color: var(--rc-gold); }
.rc-kf-label { font-size: .74rem; color: rgba(255,255,255,.65); }

/* ═══ KEY TAKEAWAYS ══════════════════════════════════════════════════════ */
.rc-key-takeaways { background: #fff; border-left: 4px solid var(--rc-gold); border-radius: var(--rc-r); padding: 24px 28px; margin-bottom: 2.5rem; box-shadow: var(--rc-shadow); }
.rc-kt-title { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rc-gold); margin-bottom: 14px; }
.rc-key-takeaways ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; }
.rc-key-takeaways ul li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; line-height: 1.55; }
.rc-key-takeaways ul li::before { content: '✓'; color: var(--rc-green); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

/* ═══ ARTICLE BODY TYPOGRAPHY ════════════════════════════════════════════ */
.rc-article-body h2 { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700; color: var(--rc-navy); margin: 2.5rem 0 1rem; padding-bottom: 10px; border-bottom: 2px solid var(--rc-border); scroll-margin-top: 90px; }
.rc-article-body h3 { font-family: 'Lora', serif; font-size: 1.12rem; font-weight: 600; color: var(--rc-navy2); margin: 1.8rem 0 .75rem; scroll-margin-top: 90px; }
.rc-article-body p { font-size: .97rem; line-height: 1.85; color: var(--rc-text); margin-bottom: 1rem; }
.rc-article-body ul, .rc-article-body ol { margin: .8rem 0 1.2rem 1.4rem; }
.rc-article-body li { font-size: .95rem; line-height: 1.7; margin-bottom: .4rem; }
.rc-article-body strong { color: var(--rc-navy); }

/* ═══ CALLOUT BOXES (use these classes in the WordPress editor) ══════════ */
.callout { display: flex; gap: 14px; border-radius: var(--rc-r); padding: 18px 20px; margin: 1.5rem 0; }
.callout-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.callout-title { font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.callout-text { font-size: .87rem; line-height: 1.6; }
.callout-key  { background: var(--rc-gold-bg); border-left: 4px solid var(--rc-gold); }
.callout-key .callout-title { color: #7a5c10; }
.callout-key .callout-text  { color: #6b5020; }
.callout-tip  { background: var(--rc-green-bg); border-left: 4px solid var(--rc-green); }
.callout-tip .callout-title { color: var(--rc-green); }
.callout-tip .callout-text  { color: #155d3a; }
.callout-warn { background: var(--rc-red-bg); border-left: 4px solid var(--rc-red); }
.callout-warn .callout-title { color: var(--rc-red); }
.callout-warn .callout-text  { color: #8b2516; }
.callout-info { background: #DBEAFE; border-left: 4px solid #1a5fa8; }
.callout-info .callout-title { color: #1a5fa8; }
.callout-info .callout-text  { color: #1a406e; }

/* ═══ STEP CARDS ════════════════════════════════════════════════════════ */
.step-list { display: flex; flex-direction: column; gap: 14px; margin: 1.5rem 0; }
.step-card { display: flex; gap: 18px; background: #fff; border: 1px solid var(--rc-border); border-radius: var(--rc-r); padding: 18px 20px; align-items: flex-start; box-shadow: var(--rc-shadow); transition: transform .2s var(--rc-ease), box-shadow .2s var(--rc-ease); }
.step-card:hover { transform: translateY(-2px); box-shadow: var(--rc-shadow-lg); }
.step-num { background: var(--rc-navy); color: var(--rc-gold); font-weight: 800; font-size: 1rem; min-width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Lora', serif; }
.step-title { font-weight: 700; font-size: .95rem; color: var(--rc-navy); margin-bottom: 4px; }
.step-desc { font-size: .87rem; color: var(--rc-muted); line-height: 1.55; }

/* ═══ DOCUMENT CHECKLIST ════════════════════════════════════════════════ */
.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 1rem 0; }
.doc-item { display: flex; align-items: flex-start; gap: 10px; background: #fff; border: 1px solid var(--rc-border); border-radius: 10px; padding: 12px 14px; font-size: .88rem; }
.doc-item-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ═══ TABLES ════════════════════════════════════════════════════════════ */
.table-wrapper { overflow-x: auto; margin: 1.2rem 0; }
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; background: #fff; border-radius: var(--rc-r); overflow: hidden; box-shadow: var(--rc-shadow); }
.data-table thead { background: var(--rc-navy); color: #fff; }
.data-table thead th { padding: 12px 16px; text-align: left; font-weight: 600; font-size: .8rem; letter-spacing: .04em; }
.data-table tbody tr:nth-child(even) { background: var(--rc-bg2); }
.data-table tbody td { padding: 11px 16px; border-bottom: 1px solid var(--rc-border); vertical-align: top; }
.data-table tbody tr:last-child td { border-bottom: none; }

/* ═══ DEFINITION BOX ════════════════════════════════════════════════════ */
.definition-box { background: #fff; border: 1px solid var(--rc-gold-bdr); border-radius: var(--rc-r); padding: 18px 22px; margin: 1.2rem 0; }
.definition-term { font-weight: 700; color: var(--rc-navy); font-size: .95rem; margin-bottom: 6px; }
.definition-text { font-size: .88rem; color: var(--rc-muted); line-height: 1.65; }

/* ═══ FAQ ACCORDION ══════════════════════════════════════════════════════ */
.rc-faq-section h2 { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700; color: var(--rc-navy); margin: 2.5rem 0 1rem; padding-bottom: 10px; border-bottom: 2px solid var(--rc-border); scroll-margin-top: 90px; }
.rc-faq-list { display: flex; flex-direction: column; gap: 10px; margin: 1rem 0; }
.rc-faq-item { background: #fff; border: 1px solid var(--rc-border); border-radius: var(--rc-r); overflow: hidden; }
.rc-faq-question { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .93rem; font-weight: 600; color: var(--rc-navy); text-align: left; transition: background .15s var(--rc-ease); }
.rc-faq-question:hover { background: var(--rc-bg2); }
.rc-faq-question.open { background: var(--rc-navy); color: #fff; }
.rc-faq-icon { font-size: 1.1rem; flex-shrink: 0; transition: transform .25s var(--rc-ease); }
.rc-faq-question.open .rc-faq-icon { transform: rotate(45deg); }
.rc-faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s var(--rc-ease); }
.rc-faq-answer-inner { padding: 16px 20px; font-size: .9rem; line-height: 1.75; color: var(--rc-text); border-top: 1px solid var(--rc-border); }

/* ═══ SHARE BAR ══════════════════════════════════════════════════════════ */
.rc-share-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--rc-border); border-bottom: 1px solid var(--rc-border); margin: 2rem 0; }
.rc-share-label { font-size: .82rem; font-weight: 600; color: var(--rc-muted); }
.rc-share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 8px; font-size: .82rem; font-weight: 600; text-decoration: none; transition: opacity .2s; }
.rc-share-btn:hover { opacity: .85; }
.rc-share-wa { background: #25d366; color: #fff; }
.rc-share-fb { background: #1877f2; color: #fff; }
.rc-share-li { background: #0a66c2; color: #fff; }

/* ═══ AUTHOR BIO ═════════════════════════════════════════════════════════ */
.rc-author-bio { display: flex; gap: 18px; background: #fff; border: 1px solid var(--rc-border); border-radius: var(--rc-r); padding: 22px 24px; margin: 2rem 0; align-items: flex-start; }
.rc-author-avatar { width: 56px; height: 56px; background: linear-gradient(135deg, var(--rc-navy), var(--rc-navy2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.rc-author-name { font-weight: 700; color: var(--rc-navy); margin-bottom: 4px; font-size: .95rem; }
.rc-author-title { font-size: .82rem; color: var(--rc-muted); margin-bottom: 8px; }
.rc-author-desc { font-size: .87rem; line-height: 1.65; color: var(--rc-muted); }

/* ═══ RELATED ARTICLES ══════════════════════════════════════════════════ */
.rc-related-section { margin: 3rem 0 0; }
.rc-related-title { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 700; color: var(--rc-navy); margin-bottom: 1.2rem; padding-bottom: 10px; border-bottom: 2px solid var(--rc-border); }
.rc-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.rc-related-card { background: #fff; border: 1px solid var(--rc-border); border-radius: var(--rc-r); overflow: hidden; text-decoration: none; color: inherit; transition: transform .2s var(--rc-ease), box-shadow .2s var(--rc-ease); }
.rc-related-card:hover { transform: translateY(-3px); box-shadow: var(--rc-shadow-lg); }
.rc-related-card-img { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.rc-related-card-img img { width: 100%; height: 100%; object-fit: cover; }
.rc-related-card-body { padding: 14px; }
.rc-related-card-tag { font-size: .7rem; font-weight: 700; color: var(--rc-gold); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.rc-related-card-title { font-size: .9rem; font-weight: 700; color: var(--rc-navy); line-height: 1.4; }

/* ═══ SIDEBAR ════════════════════════════════════════════════════════════ */
.rc-sidebar { position: sticky; top: 88px; }
.rc-sidebar-widget { background: #fff; border: 1px solid var(--rc-border); border-radius: var(--rc-r); overflow: hidden; margin-bottom: 20px; box-shadow: var(--rc-shadow); }
.rc-widget-header { background: var(--rc-navy); color: #fff; padding: 14px 18px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.rc-widget-body { padding: 16px 18px; }
.rc-sidebar-cta { background: linear-gradient(135deg, var(--rc-navy), var(--rc-navy2)); border-radius: var(--rc-r); padding: 24px 20px; color: #fff; margin-bottom: 20px; text-align: center; }
.rc-sidebar-cta .rc-sidebar-cta-icon { font-size: 2rem; margin-bottom: 10px; }
.rc-sidebar-cta h3 { font-family: 'Lora', serif; font-size: 1rem; margin-bottom: 8px; color: var(--rc-gold); }
.rc-sidebar-cta p { font-size: .82rem; color: rgba(255,255,255,.78); line-height: 1.55; margin-bottom: 16px; }
.rc-btn-gold-solid { display: inline-block; background: var(--rc-gold); color: #fff; font-weight: 700; font-size: .87rem; padding: 10px 20px; border-radius: 100px; text-decoration: none; width: 100%; text-align: center; transition: background .2s var(--rc-ease); }
.rc-btn-gold-solid:hover { background: var(--rc-gold-lt); }
.rc-toc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; margin: 0; padding: 0; }
.rc-toc-list a { display: block; font-size: .84rem; color: var(--rc-muted); text-decoration: none; padding: 5px 8px; border-radius: 6px; border-left: 2px solid transparent; transition: all .2s var(--rc-ease); line-height: 1.4; }
.rc-toc-list a:hover { color: var(--rc-navy); background: var(--rc-bg2); }
.rc-toc-list a.active { color: var(--rc-navy); border-left-color: var(--rc-gold); background: var(--rc-gold-bg); font-weight: 600; }
.rc-qr-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.rc-qr-item { display: flex; flex-direction: column; gap: 2px; padding-bottom: 10px; border-bottom: 1px solid var(--rc-border); }
.rc-qr-item:last-child { border-bottom: none; padding-bottom: 0; }
.rc-qr-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--rc-muted); font-weight: 600; }
.rc-qr-value { font-size: .88rem; font-weight: 700; color: var(--rc-navy); }
.rc-contact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.rc-contact-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; }
.rc-contact-item-icon { width: 32px; height: 32px; background: var(--rc-bg2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.rc-contact-item a { color: var(--rc-gold); text-decoration: none; }
.rc-contact-item a:hover { text-decoration: underline; }

/* ═══ CTA STRIP ══════════════════════════════════════════════════════════ */
.rc-cta-strip { background: linear-gradient(135deg, var(--rc-navy) 0%, var(--rc-navy2) 100%); padding: 56px 0; }
.rc-cta-strip-inner { text-align: center; max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.rc-cta-strip h2 { font-family: 'Lora', serif; font-size: clamp(1.4rem,3vw,2rem); color: #fff; margin-bottom: 12px; }
.rc-cta-strip p { color: rgba(255,255,255,.78); font-size: .97rem; margin-bottom: 28px; }
.rc-cta-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.rc-btn-primary { background: var(--rc-gold); color: #fff; font-weight: 700; padding: 13px 28px; border-radius: 100px; text-decoration: none; font-size: .95rem; transition: background .2s var(--rc-ease); }
.rc-btn-primary:hover { background: var(--rc-gold-lt); }
.rc-btn-outline-white { border: 2px solid rgba(255,255,255,.4); color: #fff; font-weight: 600; padding: 11px 28px; border-radius: 100px; text-decoration: none; font-size: .95rem; transition: all .2s var(--rc-ease); }
.rc-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ═══ RESPONSIVE ════════════════════════════════════════════════════════ */
@media (max-width: 1100px) { .rc-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 900px) {
  .rc-article-layout { grid-template-columns: 1fr; }
  .rc-sidebar { position: static; }
  .rc-kf-grid { grid-template-columns: repeat(2,1fr); }
  .rc-related-grid { grid-template-columns: 1fr 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .rc-nav-links, .rc-nav-cta { display: none; }
  .rc-hamburger { display: flex; }
  .rc-footer-top { grid-template-columns: 1fr 1fr; }
  .rc-featured-block { padding: 24px 22px; }
  .rc-article-title { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  .rc-footer-top { grid-template-columns: 1fr; }
  .rc-related-grid { grid-template-columns: 1fr; }
  .rc-kf-grid { grid-template-columns: 1fr 1fr; }
}
