:root {
    --cream: #faf8f4;
    --cream-dark: #f2ede4;
    --ink: #1a1a2e;
    --ink-mid: #2d3560;
    --ink-light: #4a5280;
    --blue: #1e3a8a;
    --blue-mid: #2b50b8;
    --blue-light: #dce8f7;
    --blue-accent: #3b6fd4;
    --red: #b91c1c;
    --red-light: #fde8e8;
    --mid: #7a8099;
    --border: #d4ccbc;
    --border-blue: #b8cde8;
    --card-bg: #ffffff;
    --section-alt: #f0ebdf;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    height: 64px;
    background: var(--blue);
    border-bottom: 3px solid var(--red);
  }

  .nav-logo {
    font-family: 'Source Code Pro', monospace;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-decoration: none;
  }

  .nav-logo span { color: #f9d87a; }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: #ffffff; }

  .nav-cta {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: #ffffff;
    color: var(--blue);
    padding: 0.45rem 1.4rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .nav-cta:hover { background: #f9d87a; color: var(--ink); }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 5rem;
    overflow: hidden;
    /* ─── Replace hero-bg.jpg with your image file ───────────────────────────
       Free high-quality options:
       · https://unsplash.com/s/photos/microchip  (search "microchip" or "semiconductor")
       · https://www.pexels.com/search/microchip/
       Download, rename to hero-bg.jpg, place in static/content/ folder        */
    background:
      linear-gradient(
        to right,
        rgba(250,248,244,0.92) 0%,
        rgba(250,248,244,0.82) 50%,
        rgba(250,248,244,0.55) 100%
      ),
      url('../content/hero-bg.jpg') center center / cover no-repeat;
    background-color: var(--cream); /* fallback if image missing */
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--red) 50%, var(--blue) 100%);
  }

  .hero-watermark {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Source Code Pro', monospace;
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 500;
    color: rgba(30,58,138,0.05);
    letter-spacing: 0.1em;
    pointer-events: none;
    user-select: none;
    line-height: 1;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
  }

  .hero-tag {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--blue);
  }

  .hero-acronym {
    font-family: 'Source Code Pro', monospace;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.18em;
    line-height: 1;
    margin-bottom: 1.2rem;
  }

  .hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--ink);
  }

  .hero h1 em {
    font-style: italic;
    color: var(--blue-mid);
  }

  .hero p {
    font-size: 1rem;
    color: var(--ink-light);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.85;
  }

  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
  }

  .badge {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    padding: 0.3rem 0.85rem;
    color: var(--mid);
    background: rgba(255,255,255,0.7);
  }

  .badge.highlight {
    border-color: rgba(30,58,138,0.3);
    color: var(--blue);
    background: rgba(30,58,138,0.06);
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: var(--blue);
    color: #ffffff;
    padding: 0.85rem 2.2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); }

  .btn-outline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    background: rgba(255,255,255,0.7);
    color: var(--blue);
    padding: 0.85rem 2.2rem;
    border: 1px solid var(--blue);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-outline:hover { background: var(--blue-light); transform: translateY(-1px); }

  /* STATS STRIP */
  .stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--cream-dark);
    border-bottom: 1px solid var(--border);
  }

  .stat-item {
    padding: 2rem 2.5rem;
    border-right: 1px solid var(--border);
  }

  .stat-item:last-child { border-right: none; }

  .stat-number {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
  }

  /* SECTIONS */
  section {
    padding: 6rem 4rem;
  }

  .section-tag {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .section-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--red);
  }

  .section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    max-width: 600px;
    color: var(--ink);
  }

  .section-lead {
    font-size: 1rem;
    color: var(--ink-light);
    max-width: 560px;
    margin-bottom: 3.5rem;
    line-height: 1.85;
  }

  /* ABOUT */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .about-text p {
    color: var(--ink-light);
    margin-bottom: 1.2rem;
    line-height: 1.9;
    font-size: 0.97rem;
  }

  .about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .highlight-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    padding: 1.3rem 1.5rem;
    transition: border-left-color 0.2s, transform 0.2s;
  }

  .highlight-card:hover {
    border-left-color: var(--red);
    transform: translateX(3px);
  }

  .highlight-card h4 {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 0.4rem;
  }

  .highlight-card p {
    font-size: 0.88rem;
    color: var(--ink-light);
    line-height: 1.6;
  }

  /* CURRICULUM */
  #curriculum {
    background: var(--section-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .course-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--border-blue);
    padding: 1.8rem;
    transition: border-top-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }

  .course-card:hover {
    border-top-color: var(--blue-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30,58,138,0.08);
  }

  .course-num {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--mid);
    margin-bottom: 1rem;
  }

  .course-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: block;
  }

  .course-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }

  .course-card p {
    font-size: 0.82rem;
    color: var(--ink-light);
    line-height: 1.65;
  }

  .course-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
  }

  /* REGISTRATION */
  #register {
    background: var(--cream);
    border-top: 1px solid var(--border);
  }

  .register-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
  }

  .register-info p {
    font-size: 0.92rem;
    color: var(--ink-light);
    line-height: 1.85;
    margin-bottom: 1.5rem;
  }

  .deadline-box {
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    background: var(--red-light);
    padding: 1.1rem 1.4rem;
    margin-bottom: 1.2rem;
  }

  .deadline-box .label {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.3rem;
  }

  .deadline-box .date {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem;
    color: var(--ink);
  }

  /* FORM */
  .register-form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(30,58,138,0.06);
  }

  .form-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group { margin-bottom: 1.1rem; }

  .form-group label {
    display: block;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--ink);
    padding: 0.7rem 0.9rem;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--mid); }

  .form-group select option { background: #ffffff; color: var(--ink); }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--blue-accent);
    background: var(--blue-light);
  }

  .form-group textarea { resize: vertical; min-height: 90px; }

  .form-group input[type="file"] {
    padding: 0.5rem 0.9rem;
    cursor: pointer;
    color: var(--ink-light);
  }

  .form-group input[type="file"]::-webkit-file-upload-button {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid var(--border-blue);
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    margin-right: 0.75rem;
  }

  .form-group input[type="file"]::file-selector-button {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid var(--border-blue);
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    margin-right: 0.75rem;
  }

  .form-field-hint {
    font-size: 0.72rem;
    color: var(--mid);
    margin-top: 0.3rem;
  }

  .form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.3rem;
  }

  .form-check input[type="checkbox"] {
    width: 15px; height: 15px;
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: var(--blue);
  }

  .form-check label { font-size: 0.8rem; color: var(--ink-light); line-height: 1.5; }
  .form-check a { color: var(--blue-accent); }

  .btn-submit {
    width: 100%;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: var(--blue);
    color: #ffffff;
    padding: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-submit:hover { background: var(--blue-mid); transform: translateY(-1px); }

  .form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
  }

  .form-success .check { font-size: 2.5rem; margin-bottom: 1rem; color: var(--blue); }

  .form-success h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
  }

  .form-success p { font-size: 0.9rem; color: var(--ink-light); }

  /* PARTNERS */
  #partners {
    background: var(--section-alt);
    border-top: 1px solid var(--border);
  }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
  }

  .partner-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.2s, border-color 0.2s;
  }

  .partner-card:hover {
    border-color: var(--border-blue);
    box-shadow: 0 4px 16px rgba(30,58,138,0.08);
  }

  .partner-logo {
    font-family: 'Source Code Pro', monospace;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
  }

  .partner-logo img {
    max-height: 56px;
    max-width: 100%;
    object-fit: contain;
  }

  .partner-name { font-size: 0.82rem; color: var(--mid); line-height: 1.55; }

  /* EU CO-FUNDING STRIP */
  .eu-funding {
    background: #fff;
    padding: 1.2rem 4rem;
    text-align: center;
  }

  .eu-funding img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
  }

  /* FOOTER */
  footer {
    background: var(--blue);
    border-top: 3px solid var(--red);
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-left {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
  }

  .footer-left strong { color: #ffffff; font-weight: 500; }

  .footer-right {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
  }

  .footer-right a { color: #f9d87a; text-decoration: none; }

  /* DIVIDER */
  .divider {
    height: 1px;
    background: var(--border);
    margin: 0;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content > * { animation: fadeUp 0.6s ease both; }
  .hero-tag { animation-delay: 0.05s; }
  .hero-acronym { animation-delay: 0.15s; }
  .hero h1 { animation-delay: 0.25s; }
  .hero p { animation-delay: 0.35s; }
  .hero-badges { animation-delay: 0.45s; }
  .hero-ctas { animation-delay: 0.55s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    section { padding: 4rem 1.5rem; }
    .hero { padding: 7rem 1.5rem 4rem; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .register-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .curriculum-grid { grid-template-columns: 1fr 1fr; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
    .eu-funding { padding: 1.2rem 1.5rem; }
  }

  @media (max-width: 600px) {
    .curriculum-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 1.2rem 1.5rem; }
  }

  /* ABOUT LIST */
  .about-list {
    list-style: none;
    margin-top: 0.8rem;
  }

  .about-list li {
    padding: 0.45rem 0 0.45rem 1.1rem;
    border-left: 2px solid var(--red);
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    color: var(--ink-light);
    line-height: 1.5;
  }

  .about-list-label {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 1.4rem;
    margin-bottom: 0.5rem;
  }

  /* TIMELINE */
  #timeline {
    background: var(--cream);
    border-top: 1px solid var(--border);
  }

  .timeline-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .timeline-badge {
    display: inline-block;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid var(--border-blue);
    padding: 0.3rem 0.85rem;
    margin-bottom: 0.75rem;
  }

  .timeline-badge--onsite {
    background: var(--red-light);
    color: var(--red);
    border-color: #f5c0c0;
  }

  .timeline-col-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }

  .timeline-col p {
    font-size: 0.88rem;
    color: var(--ink-light);
    line-height: 1.7;
  }

  .timeline-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }

  .timeline-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
  }

  .timeline-row > div {
    padding: 0.75rem 1rem;
    color: var(--ink-light);
  }

  .timeline-row > div:not(:last-child) {
    border-right: 1px solid var(--border);
  }

  .timeline-row--header {
    background: var(--cream-dark);
  }

  .timeline-row--header > div {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 500;
  }

  .timeline-row--total {
    background: var(--blue-light);
    border-bottom: 2px solid var(--border-blue);
  }

  .timeline-row--total > div {
    font-weight: 600;
    color: var(--blue);
  }

  .timeline-note {
    font-size: 0.82rem;
    color: var(--mid);
    font-style: italic;
    margin-top: 1rem;
  }

  /* VENUE */
  #venue {
    background: var(--section-alt);
    border-top: 1px solid var(--border);
  }

  .venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .venue-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1.8rem;
  }

  .venue-block-title {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 0.75rem;
  }

  .venue-block p {
    font-size: 0.88rem;
    color: var(--ink-light);
    line-height: 1.7;
    margin-bottom: 0.6rem;
  }

  .venue-links {
    list-style: none;
    margin-top: 0.5rem;
  }

  .venue-links li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .venue-links li::before {
    content: '→ ';
    color: var(--red);
    font-weight: 600;
  }

  .venue-links a {
    color: var(--blue-accent);
    text-decoration: none;
  }

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

  /* DEADLINE BOX BLUE VARIANT */
  .deadline-box--blue {
    border-left-color: var(--blue);
    background: var(--blue-light);
  }

  .deadline-box--blue .label { color: var(--blue); }

  @media (max-width: 900px) {
    .timeline-cols { grid-template-columns: 1fr; }
    .venue-grid { grid-template-columns: 1fr; }
    .timeline-row { grid-template-columns: 2fr 1fr 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .timeline-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 0.8rem; }
    .timeline-row > div { padding: 0.5rem 0.6rem; }
  }

.doc-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--blue);
  border-radius: 4px;
  text-decoration: none;
  color: var(--blue);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}
.doc-link:hover { background: rgba(30,58,138,0.06); }
.doc-link-icon { font-size: 1.1rem; flex-shrink: 0; }
.doc-link-sub {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--mid);
  font-family: 'Source Code Pro', monospace;
}
