  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:    #1a3a5c;
    --blue:    #2d6a9f;
    --sky:     #a8d4f0;
    --teal:    #4caf7d;
    --bg:      #e8f4fd;
    --bgsoft:  #f0f8ff;
    --white:   #ffffff;
    --text:    #1a2b3c;
    --muted:   #6b8aa8;
    --border:  #c8e0f5;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bgsoft);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
    box-shadow: 0 1px 12px rgba(26,58,92,.07);
  }
  .nav-brand {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }
  .nav-logo-icon {
    width: 110px; height: 70px;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .nav-logo-icon span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600; font-size: 13px; color: var(--white); letter-spacing: .5px;
  }
  .nav-brand-text { line-height: 1.15; }
  .nav-brand-text strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); }
  .nav-brand-text small { font-size: 10.5px; color: var(--muted); letter-spacing: .4px; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a { text-decoration: none; color: var(--text); font-size: 13.5px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--blue); }
  .nav-issn { font-size: 11px; color: var(--muted); background: var(--bg); padding: 4px 10px; border-radius: 20px; }
  .btn { display: inline-block; padding: 10px 22px; border-radius: 8px; font-size: 13.5px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all .2s; border: none; }
  .btn-primary { background: var(--blue); color: var(--white); }
  .btn-primary:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(45,106,159,.35); }
  .btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
  .btn-outline:hover { background: var(--blue); color: var(--white); }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1e4d7b 45%, #2d6a9f 100%);
    padding: 72px 5% 80px;
    display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(168,212,240,.12) 0%, transparent 60%);
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(76,175,125,.18); border: 1px solid rgba(76,175,125,.4);
    color: #7edba8; padding: 5px 14px; border-radius: 30px;
    font-size: 11.5px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .hero-badge::before { content: '●'; font-size: 8px; color: var(--teal); }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.18; color: var(--white);
    margin-bottom: 18px; font-weight: 700;
  }
  .hero h1 em { color: var(--sky); font-style: normal; }
  .hero-desc { color: rgba(168,212,240,.82); font-size: 15px; max-width: 460px; margin-bottom: 32px; }
  .hero-search {
    display: flex; gap: 0; background: var(--white);
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,.25); max-width: 480px; margin-bottom: 28px;
    position: relative;
  }
  .hero-search input {
    flex: 1; border: none; padding: 14px 18px; font-size: 14px;
    font-family: 'Inter', sans-serif; outline: none; color: var(--text);
  }
  .hero-search input::placeholder { color: var(--muted); }
  .hero-search button {
    background: var(--blue); color: var(--white); border: none;
    padding: 14px 22px; font-size: 14px; font-weight: 600; cursor: pointer;
    font-family: 'Inter', sans-serif; transition: background .2s;
  }
  .hero-search button:hover { background: var(--navy); }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; position: relative;}
  .hero-ctas .btn-primary { background: var(--teal); }
  .hero-ctas .btn-primary:hover { background: #3d9a6b; box-shadow: 0 4px 14px rgba(76,175,125,.4); }
  .hero-ctas .btn-outline { border-color: rgba(168,212,240,.5); color: var(--sky); }
  .hero-ctas .btn-outline:hover { background: rgba(168,212,240,.12); color: var(--white); }

  /* Journal cover card */
  .hero-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    position: relative; z-index: 1;
    animation: floatCard 4s ease-in-out infinite;
  }
  @keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .hero-card-header {
    background: var(--bgsoft);
    padding: 14px 18px 10px;
    border-bottom: 1px solid var(--border);
  }
  .hero-card-header .issn { font-size: 10.5px; color: var(--muted); letter-spacing: .6px; margin-bottom: 6px; }
  .hero-card-logo { display: flex; align-items: center; gap: 10px; }
  .logo-circle {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid var(--navy);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    flex-shrink: 0;
  }
  .logo-circle span { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; color: var(--navy); line-height: 1; }
  .logo-circle small { font-size: 6.5px; color: var(--muted); line-height: 1; }
  .hero-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600; }
  .hero-card-title span { color: var(--teal); }
  .hero-cover {
    background: linear-gradient(180deg, #a8d4f0 0%, #5a9fd4 40%, #1a3a5c 100%);
    height: 160px;
    display: flex; align-items: center; justify-content: center; gap: 16px;
    position: relative; overflow: hidden;
  }
  /* Stethoscope SVG illustration placeholder */
  .cover-illustration { opacity: .9; }
  .hero-card-body { padding: 14px 18px; }
  .journal-scope { font-size: 11px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
  .scope-tags { display: flex; flex-wrap: wrap; gap: 5px; }
  .scope-tag {
    font-size: 10.5px; padding: 3px 9px; border-radius: 20px;
    background: var(--bg); color: var(--blue); font-weight: 500;
    border-left: 2.5px solid var(--blue);
  }

  /* Stats strip */
  .stats-strip {
    background: var(--navy);
    padding: 24px 5%;
    display: flex; justify-content: center; gap: 0;
    flex-wrap: wrap;
  }
  .stat-item {
    text-align: center; padding: 0 40px;
    border-right: 1px solid rgba(168,212,240,.2);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--sky); line-height: 1; }
  .stat-num span { font-size: 16px; color: var(--teal); }
  .stat-label { font-size: 11px; color: rgba(168,212,240,.65); margin-top: 4px; letter-spacing: .5px; text-transform: uppercase; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy); color: rgba(168,212,240,.75);
    padding: 48px 5% 28px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
  .footer-brand { }
  .footer-brand .nav-logo-icon { margin-bottom: 14px; }
  .footer-brand p { font-size: 13px; line-height: 1.65; max-width: 260px; }
  .footer-contact { margin-top: 16px; font-size: 12.5px; }
  .footer-contact div { margin-bottom: 5px; display: flex; align-items: flex-start; gap: 7px; }
  .footer-col h5 { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 14px; }
  .footer-col a { display: block; color: rgba(168,212,240,.65); text-decoration: none; font-size: 13px; margin-bottom: 8px; transition: color .2s; }
  .footer-col a:hover { color: var(--sky); }
  .footer-bottom { border-top: 1px solid rgba(168,212,240,.15); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; font-size: 12px; }
  .footer-bottom p { color: rgba(168,212,240,.5); }
  .footer-badges { display: flex; gap: 10px; }
  .badge {
    padding: 4px 10px; border-radius: 20px; font-size: 10.5px; font-weight: 600;
    border: 1px solid rgba(168,212,240,.25); color: rgba(168,212,240,.6);
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-card { max-width: 340px; }
    .aim-grid { grid-template-columns: 1fr; }
    .cfp-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 0 20px; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-strip { gap: 8px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(168,212,240,.2); padding: 12px 0; width: 100%; }
    .stat-item:last-child { border-bottom: none; }
  }


  .submission-success {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    margin: 20px 0;
    background: #eafaf1;
    border: 1px solid #28a745;
    border-left: 6px solid #28a745;
    border-radius: 8px;
    color: #155724;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.success-icon {
    width: 45px;
    height: 45px;
    background: #28a745;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-content h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #155724;
}

.success-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgb(34 129 86);
}

@media (max-width: 576px) {
    .submission-success {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .success-content h3 {
        font-size: 20px;
    }
}


/*contact us */

  /* ── HERO ── */
  .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1e4d7b 50%, #2d6a9f 100%);
    padding: 52px 5% 60px; position: relative; overflow: hidden;
  }
  .page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 80% 50%, rgba(168,212,240,.1), transparent 60%); pointer-events:none; }
  .page-hero::after  { content:''; position:absolute; width:500px; height:500px; border-radius:50%; border:1px solid rgba(168,212,240,.07); top:-180px; right:3%; pointer-events:none; }
  .breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:18px; font-size:12.5px; position:relative; }
  .breadcrumb a { color:rgba(168,212,240,.7); text-decoration:none; transition:color .18s; }
  .breadcrumb a:hover { color:var(--sky); }
  .breadcrumb span { color:rgba(168,212,240,.35); }
  .breadcrumb strong { color:var(--sky); }
  .hero-eyebrow { display:inline-flex; align-items:center; gap:7px; background:rgba(76,175,125,.18); border:1px solid rgba(76,175,125,.4); color:#7edba8; padding:5px 14px; border-radius:30px; font-size:11.5px; font-weight:600; letter-spacing:.6px; text-transform:uppercase; margin-bottom:16px; position:relative; }
  .page-hero h1  { font-family:'Playfair Display',serif; font-size:clamp(28px,4vw,46px); color:var(--white); font-weight:700; margin-bottom:12px; position:relative; }
  .page-hero p   { color:rgba(168,212,240,.82); max-width:560px; font-size:15.5px; line-height:1.72; position:relative; }

  /* ── MAIN GRID ── */
  .main-wrap { max-width: 1100px; margin: 0 auto; padding: 52px 5% 80px; }
  .contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }

  /* ── FORM CARD ── */
  .form-card {
    background: var(--white); border-radius: 18px;
    border: 1.5px solid var(--border); overflow: hidden;
    box-shadow: 0 6px 40px rgba(26,58,92,.08);
  }
  .form-card-header {
    background: linear-gradient(90deg, var(--navy), #1e4d7b);
    padding: 26px 32px; display: flex; align-items: center; gap: 16px;
  }
  .fch-icon  { font-size: 32px; }
  .fch-title { font-family: 'Space Grotesk',sans-serif; font-size: 20px; font-weight: 700; color: var(--white); }
  .fch-sub   { font-size: 13px; color: rgba(168,212,240,.72); margin-top: 3px; }

  .form-body { padding: 36px 32px; }

  /* Fields */
  .fg { margin-bottom: 24px; }
  .fg:last-of-type { margin-bottom: 0; }
  label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
  label .req { color: var(--red); margin-left: 2px; }
  label .hint { display: block; font-size: 11.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }

  input[type=text], input[type=email], textarea {
    width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
    padding: 13px 16px; font-size: 14.5px; font-family: 'Inter',sans-serif;
    color: var(--text); background: var(--white); outline: none; transition: all .22s;
  }
  input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3.5px rgba(45,106,159,.1); background: var(--white); }
  input.err, textarea.err   { border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,82,82,.1); }
  input::placeholder, textarea::placeholder { color: var(--muted); font-size: 14px; }
  textarea { resize: vertical; min-height: 160px; line-height: 1.7; }

  .char-count { display: flex; justify-content: flex-end; margin-top: 6px; font-size: 12px; color: var(--muted); }
  .char-count.warn { color: #d4840a; }
  .char-count.ok   { color: var(--teal); }
  .ferr { font-size: 12px; color: var(--red); margin-top: 6px; display: none; }
  .ferr.show { display: block; }

  /* Submit button */
  .form-actions { margin-top: 28px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
  .btn-send { background: var(--teal); color: var(--white); padding: 13px 36px; font-size: 15px; border-radius: 10px; border: none; }
  .btn-send:hover { background: #3d9a6b; box-shadow: 0 4px 18px rgba(76,175,125,.4); transform: translateY(-1px); }
  .form-note { font-size: 12px; color: var(--muted); }

  /* Success state */
  .success-block {
    display: none; text-align: center; padding: 48px 20px; animation: fadeUp .4s ease;
  }
  .success-block.show { display: block; }
  .suc-icon  { font-size: 64px; animation: popIn .5s cubic-bezier(.175,.885,.32,1.275); display: block; }
  @keyframes popIn  { from{transform:scale(.4);opacity:0} to{transform:scale(1);opacity:1} }
  @keyframes fadeUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }
  .suc-title { font-family: 'Playfair Display',serif; font-size: 26px; font-weight: 700; color: var(--navy); margin: 16px 0 10px; }
  .suc-sub   { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 360px; margin: 0 auto 24px; }
  .suc-again { background: var(--bg); border: 1.5px solid var(--border); color: var(--blue); padding: 10px 22px; border-radius: 8px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .2s; }
  .suc-again:hover { border-color: var(--blue); background: #ddeef8; }

  /* ── SIDEBAR CARDS ── */
  .sidebar { display: flex; flex-direction: column; gap: 20px; }

  .info-card {
    background: var(--white); border-radius: 16px; border: 1.5px solid var(--border);
    overflow: hidden; box-shadow: 0 3px 20px rgba(26,58,92,.06);
  }
  .ic-head {
    background: var(--navy); padding: 14px 20px;
    font-family: 'Space Grotesk',sans-serif; font-size: 12px; font-weight: 600;
    color: var(--sky); letter-spacing: .8px; text-transform: uppercase;
  }
  .ic-body { padding: 20px; }

  /* Contact details */
  .contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .contact-item:last-child { border-bottom: none; padding-bottom: 0; }
  .ci-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
  .ci-blue   { background: #e8f0fb; }
  .ci-teal   { background: #e7f5ef; }
  .ci-orange { background: #fff3e0; }
  .ci-purple { background: #f3e5f5; }
  .ci-label  { font-size: 10.5px; font-weight: 700; color: var(--muted); letter-spacing: .6px; text-transform: uppercase; margin-bottom: 3px; }
  .ci-value  { font-size: 13.5px; color: var(--navy); font-weight: 500; line-height: 1.5; }
  .ci-value a { color: var(--blue); text-decoration: none; }
  .ci-value a:hover { text-decoration: underline; }

  /* Office hours */
  .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .hours-row  { display: contents; }
  .hours-day  { font-size: 12.5px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); }
  .hours-time { font-size: 12.5px; color: var(--navy); font-weight: 600; padding: 7px 0; border-bottom: 1px solid var(--border); text-align: right; }
  .hours-day:nth-last-child(2), .hours-time:last-child { border-bottom: none; }

  /* Quick links */
  .quick-links { display: flex; flex-direction: column; gap: 7px; }
  .ql { display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 13px; font-weight: 500; color: var(--text); padding: 9px 12px; border-radius: 8px; border: 1.5px solid var(--border); transition: all .18s; }
  .ql:hover { border-color: var(--blue); color: var(--blue); background: var(--bg); }
  .ql-icon { font-size: 16px; }

  /* Map placeholder card */
  .map-card {
    border-radius: 16px; overflow: hidden;
    border: 1.5px solid var(--border); box-shadow: 0 3px 20px rgba(26,58,92,.06);
  }
  .map-visual {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d6a9f 60%, #a8d4f0 100%);
    height: 160px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .map-visual::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.15)'/%3E%3C/svg%3E") repeat;
  }
  .map-pin-wrap { position: relative; z-index: 1; text-align: center; }
  .map-pin { font-size: 48px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); animation: pinBounce 2s ease-in-out infinite; }
  @keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  .map-pin-label { font-family: 'Space Grotesk',sans-serif; font-size: 13px; font-weight: 600; color: var(--white); margin-top: 8px; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
  .map-footer { background: var(--white); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
  .map-addr { font-size: 12px; color: var(--muted); line-height: 1.5; }
  .map-btn  { font-size: 12px; font-weight: 600; color: var(--blue); text-decoration: none; white-space: nowrap; padding: 6px 12px; border-radius: 6px; border: 1.5px solid var(--border); transition: all .18s; }
  .map-btn:hover { border-color: var(--blue); background: var(--bg); }

/* home warning */


/* Container for the warning */
.submission-warning {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 12px 20px;
    background-color: #fff9e6; /* Soft amber/yellow background */
    border: 1px solid #ffe0b2; /* Subtle border */
    border-radius: 6px;        /* Smooth rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    max-width: 400px;          /* Limits width so it doesn't stretch too far */
    margin-left: auto;         /* Centers the container itself */
    margin-right: auto;
}

/* Wrapper for content/icon if needed later */
.warning-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* The actual text styling */
.text-center {
    color: #b78103;            /* Dark amber text for readability and contrast */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 0;                 /* Removes default paragraph margins */
}
  /* ── HERO ── */
  .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1e4d7b 50%, #2d6a9f 100%);
    padding: 52px 5% 60px; position: relative; overflow: hidden;
  }
  .page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 80% 50%, rgba(168,212,240,.1), transparent 60%); pointer-events:none; }
  .page-hero::after  { content:''; position:absolute; width:500px; height:500px; border-radius:50%; border:1px solid rgba(168,212,240,.07); top:-180px; right:3%; pointer-events:none; }
  .breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:18px; font-size:12.5px; position:relative; flex-wrap:wrap; }
  .breadcrumb a { color:rgba(168,212,240,.7); text-decoration:none; }
  .breadcrumb a:hover { color:var(--sky); }
  .breadcrumb span { color:rgba(168,212,240,.35); }
  .breadcrumb strong { color:var(--sky); }
  .hero-eyebrow { display:inline-flex; align-items:center; gap:7px; background:rgba(76,175,125,.18); border:1px solid rgba(76,175,125,.4); color:#7edba8; padding:5px 14px; border-radius:30px; font-size:11.5px; font-weight:600; letter-spacing:.6px; text-transform:uppercase; margin-bottom:16px; position:relative; }
  .page-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(26px,4vw,44px); color:var(--white); font-weight:700; margin-bottom:12px; position:relative; }
  .page-hero p  { color:rgba(168,212,240,.82); max-width:600px; font-size:15px; line-height:1.72; position:relative; margin-bottom:24px; }
  .hero-pills { display:flex; gap:10px; flex-wrap:wrap; position:relative; }
  .hero-pill  { display:flex; align-items:center; gap:6px; background:rgba(255,255,255,.08); border:1px solid rgba(168,212,240,.2); color:rgba(168,212,240,.85); padding:6px 14px; border-radius:30px; font-size:12px; font-weight:500; }

  /* ── MAIN LAYOUT ── */
  .main-layout { display:grid; /*grid-template-columns:1fr 770px;*/ gap:32px; max-width:1200px; margin:0 auto; padding:44px 5% 80px; align-items:start; }
  .ethicslayout{ grid-template-columns:1fr 770px; !important }
  /* ── TOC SIDEBAR ── */
  .sidebar { position:sticky; top:84px; display:flex; flex-direction:column; gap:16px; }
  .sc { background:var(--white); border-radius:14px; border:1.5px solid var(--border); overflow:hidden; }
  .sc-head { background:var(--navy); padding:13px 18px; font-family:'Space Grotesk',sans-serif; font-size:11.5px; font-weight:600; color:var(--sky); letter-spacing:.8px; text-transform:uppercase; }
  .sc-body { padding:10px 0; }
  .toc-link {
    display:flex; align-items:center; gap:10px; padding:9px 16px;
    text-decoration:none; font-size:12.5px; font-weight:500; color:var(--text);
    transition:all .18s; border-left:3px solid transparent; line-height:1.4;
  }
  .toc-link:hover { background:var(--bg); color:var(--blue); border-left-color:var(--blue); }
  .toc-link.active { background:var(--bg); color:var(--blue); border-left-color:var(--blue); font-weight:600; }
  .toc-link .toc-icon { font-size:14px; flex-shrink:0; }
  .toc-sub-link {
    display:block; padding:7px 16px 7px 42px;
    text-decoration:none; font-size:12px; color:var(--muted);
    transition:all .18s; border-left:3px solid transparent;
  }
  .toc-sub-link:hover { background:var(--bg); color:var(--blue); border-left-color:var(--blue); }
  .dated-tag { margin:14px 16px 0; background:var(--bg); border:1px solid var(--border); border-radius:7px; padding:8px 12px; font-size:11.5px; color:var(--muted); display:flex; align-items:center; gap:6px; }
  .print-btn { display:flex; align-items:center; justify-content:center; gap:7px; margin:12px 16px; padding:9px; background:var(--bgsoft); border:1.5px solid var(--border); border-radius:8px; font-size:12.5px; font-weight:600; color:var(--blue); cursor:pointer; transition:all .18s; font-family:'Inter',sans-serif; }
  .print-btn:hover { border-color:var(--blue); background:var(--bg); }

  /* Quick links card */
  .ql-list { display:flex; flex-direction:column; gap:6px; padding:14px; }
  .ql { display:flex; align-items:center; gap:9px; text-decoration:none; font-size:13px; font-weight:500; color:var(--text); padding:9px 12px; border-radius:8px; border:1.5px solid var(--border); transition:all .18s; }
  .ql:hover { border-color:var(--blue); color:var(--blue); background:var(--bg); }

  /* ── CONTENT AREA ── */
  .content-area { min-width:0; }

  /* Section card */
  .ethics-section {
    background:var(--white); border-radius:16px; border:1.5px solid var(--border);
    margin-bottom:24px; overflow:hidden; scroll-margin-top:90px;
    transition:box-shadow .2s;
  }
  .ethics-section:hover { box-shadow:0 4px 24px rgba(26,58,92,.07); }

  .es-header {
    display:flex; align-items:center; gap:14px;
    padding:20px 26px; border-bottom:1.5px solid var(--border);
    cursor:pointer; user-select:none; transition:background .18s;
  }
  .es-header:hover { background:var(--bgsoft); }
  .es-icon {
    width:44px; height:44px; border-radius:11px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center; font-size:20px;
  }
  .ic-blue   { background:#e8f0fb; }
  .ic-teal   { background:#e7f5ef; }
  .ic-orange { background:#fff3e0; }
  .ic-purple { background:#f3e5f5; }
  .ic-red    { background:#fdecea; }
  .ic-green  { background:#f0f7e0; }
  .ic-indigo { background:#eef0ff; }
  .ic-sky    { background:var(--bg); }
  .ic-gold   { background:#fffbe6; }

  .es-title-wrap { flex:1; }
  .es-eyebrow { font-size:10.5px; font-weight:700; color:var(--teal); letter-spacing:1px; text-transform:uppercase; margin-bottom:3px; }
  .es-title   { font-family:'Space Grotesk',sans-serif; font-size:17px; font-weight:700; color:var(--navy); }
  .es-toggle  { font-size:18px; color:var(--muted); transition:transform .25s; flex-shrink:0; }
  .ethics-section.collapsed .es-toggle { transform:rotate(-90deg); }
  .es-body { padding:26px 28px; }
  .ethics-section.collapsed .es-body { display:none; }

  /* Prose styles */
  .prose p     { color:#3a5268; line-height:1.82; margin-bottom:16px; font-size:14.5px; }
  .prose p:last-child { margin-bottom:0; }
  .prose a     { color:var(--blue); text-decoration:underline; text-decoration-color:var(--border); }
  .prose a:hover { text-decoration-color:var(--blue); }
  .prose strong { color:var(--navy); font-weight:600; }

  /* Numbered duties list */
  .duty-list { list-style:none; display:flex; flex-direction:column; gap:0; }
  .duty-item {
    display:flex; gap:0; border-bottom:1px solid var(--border);
    padding:0;
  }
  .duty-item:last-child { border-bottom:none; }
  .duty-num {
    flex-shrink:0; width:44px; padding:18px 0;
    font-family:'Space Grotesk',sans-serif; font-size:11.5px; font-weight:700;
    color:var(--blue); text-align:center; background:var(--bgsoft);
    border-right:1px solid var(--border);
  }
  .duty-content { padding:18px 20px; flex:1; }
  .duty-title { font-family:'Space Grotesk',sans-serif; font-size:14px; font-weight:700; color:var(--navy); margin-bottom:8px; }
  .duty-text  { font-size:13.5px; color:#3a5268; line-height:1.78; }
  .duty-text a { color:var(--blue); text-decoration:underline; }
  .duty-text strong { color:var(--navy); font-weight:600; }

  /* Info callout boxes */
  .callout { border-radius:10px; padding:14px 18px; margin:18px 0; display:flex; gap:12px; align-items:flex-start; font-size:13.5px; line-height:1.65; }
  .callout-icon { font-size:18px; flex-shrink:0; margin-top:1px; }
  .callout p { color:#3a5268; margin:0; }
  .callout strong { color:var(--navy); }
  .callout a { color:var(--blue); }
  .cb-blue   { background:#e8f0fb; border-left:3px solid var(--blue); }
  .cb-teal   { background:#e7f5ef; border-left:3px solid var(--teal); }
  .cb-gold   { background:#fff8e1; border-left:3px solid #d4940a; }
  .cb-red    { background:#fdecea; border-left:3px solid #e05252; }

  /* External link badges */
  .ext-links { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
  .ext-badge {
    display:inline-flex; align-items:center; gap:5px;
    font-size:11.5px; font-weight:600; padding:4px 12px; border-radius:20px;
    border:1.5px solid var(--border); color:var(--blue); background:var(--bgsoft);
    text-decoration:none; transition:all .18s;
  }
  .ext-badge:hover { border-color:var(--blue); background:var(--bg); }

  /* Date stamp */
  .date-stamp {
    background:var(--bg); border:1.5px solid var(--border); border-radius:10px;
    padding:14px 20px; display:flex; align-items:center; gap:12px;
    margin-top:24px; font-size:13px; color:var(--muted);
  }
  .date-stamp strong { color:var(--navy); }
