/* ============================================================
   Monil — personal site
   Brand: navy #0E2841 · orange #E76B1C · mint #8FD5A9 · gray #D9D9D9
   Light, airy base with one confident navy hero band + navy footer.
   ============================================================ */

:root {
  /* brand */
  --navy:       #0E2841;
  --navy-2:     #163A57;
  --navy-3:     #1E4868;
  --orange:     #E76B1C;
  --orange-dk:  #C85A14;
  --mint:       #8FD5A9;
  --mint-dk:    #5FB585;
  --gray:       #D9D9D9;

  /* surfaces & text */
  --paper:      #FAFAF8;
  --surface:    #FFFFFF;
  --paper-2:    #F1F2F1;
  --line:       #E3E4E1;
  --ink:        #0E2841;
  --body:       #41505E;
  --muted:      #76828E;
  --orange-soft:#FBE7D6;
  --mint-soft:  #E4F4EA;

  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --maxw: 1140px;
  --pad: clamp(20px, 5vw, 64px);
  --r: 16px;
  --shadow: 0 22px 48px -28px rgba(14,40,65,.32);
}

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

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--body);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--orange);
}

/* ---------- Headings ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.012em; color: var(--ink); }
h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: 22px; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad);
}
.brand { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.brand span { color: var(--orange); }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a { font-size: 15px; color: var(--body); position: relative; padding: 4px 0; transition: color .2s ease; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--orange); transition: width .25s ease; border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 22px; color: var(--ink); }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a { padding: 16px var(--pad); border-top: 1px solid var(--line); }
  .nav-links a::after { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; padding: 13px 26px; border-radius: 999px;
  border: 1.5px solid transparent; transition: all .22s ease; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 10px 22px -12px rgba(231,107,28,.7); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-light:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }

/* ============================================================
   HERO (navy band)
   ============================================================ */
.hero-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 82% -10%, rgba(231,107,28,.30), transparent 60%),
    radial-gradient(700px 600px at 0% 110%, rgba(143,213,169,.16), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #EAF0F4;
}
.hero-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(circle at 50% 40%, #000, transparent 80%);
  pointer-events: none;
}
.hero { position: relative; padding: clamp(64px, 9vw, 116px) 0 clamp(56px, 8vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.hero h1 { font-size: clamp(48px, 8vw, 84px); margin: 16px 0 0; color: #fff; }
.hero .lede { font-size: clamp(19px, 2.4vw, 24px); color: var(--mint); font-family: var(--font-display); font-style: italic; margin-top: 12px; }
.hero p.intro { color: #C5D0DA; font-size: 18px; max-width: 52ch; margin-top: 24px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero .eyebrow { color: var(--orange); }

.portrait {
  aspect-ratio: 4/5; border-radius: var(--r); overflow: hidden; position: relative;
  background: linear-gradient(150deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center;
}
.portrait::after { content: ''; position: absolute; right: -1px; bottom: -1px; width: 64px; height: 64px;
  border-right: 4px solid var(--orange); border-bottom: 4px solid var(--orange); border-bottom-right-radius: var(--r); }
.portrait .monogram { font-family: var(--font-display); font-size: 104px; color: rgba(255,255,255,.6); }
.portrait img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 840px) {
  .hero-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 260px; order: -1; }
}

/* ============================================================
   Sections
   ============================================================ */
section { padding: clamp(52px, 7vw, 92px) 0; }
.section-alt { background: var(--paper-2); border-block: 1px solid var(--line); }
.section-head { max-width: 62ch; margin-bottom: 46px; }
.section-head h2 { margin-top: 12px; }
.section-head p { color: var(--body); margin-top: 14px; font-size: 18px; }

.prose p { color: var(--body); max-width: 64ch; margin-bottom: 18px; font-size: 18px; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px; position: relative; transition: transform .22s ease, box-shadow .22s ease;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 0; background: var(--orange);
  border-radius: 3px 3px 0 0; transition: width .28s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card:hover::before { width: 100%; }
.card h3 { font-family: var(--font-body); font-weight: 700; font-size: 17px; color: var(--ink); }
.card p { color: var(--muted); font-size: 15px; margin-top: 8px; }
.card .num { font-family: var(--font-display); color: var(--orange); font-size: 15px; display: block; margin-bottom: 16px; }

/* ---------- Link cards ---------- */
.link-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 18px; }
.link-card {
  display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 32px; transition: transform .22s ease, box-shadow .22s ease;
}
.link-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.link-card .eyebrow { font-size: 11px; }
.link-card h3 { margin: 10px 0; }
.link-card p { color: var(--muted); font-size: 15px; }
.link-card .arrow { color: var(--orange); font-weight: 700; margin-top: 16px; display: inline-block; transition: transform .2s ease; }
.link-card:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Timeline
   ============================================================ */
.timeline { border-left: 2px solid var(--gray); margin-left: 6px; }
.job { position: relative; padding: 0 0 46px 36px; }
.job:last-child { padding-bottom: 0; }
.job::before {
  content: ''; position: absolute; left: -9px; top: 5px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--orange);
}
.job .when { font-size: 13px; letter-spacing: .05em; color: var(--muted); text-transform: uppercase; font-weight: 700; }
.job h3 { margin: 7px 0 2px; font-size: 24px; }
.job .org { color: var(--orange); font-weight: 700; font-size: 16px; }
.job ul { margin: 14px 0 0; padding-left: 18px; color: var(--body); }
.job ul li { margin-bottom: 8px; }
.job ul li::marker { color: var(--mint-dk); }

/* ============================================================
   Brief & Podcast
   ============================================================ */
.brief-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.brief-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r); padding: 28px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.brief-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.brief-card .date { font-size: 13px; color: var(--muted); font-weight: 700; letter-spacing: .03em; }
.brief-card h3 { margin: 10px 0 16px; font-size: 21px; line-height: 1.2; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag { font-size: 12px; font-weight: 700; color: var(--navy); background: var(--mint-soft); border-radius: 999px; padding: 5px 12px; }
.brief-card .read { margin-top: auto; color: var(--orange); font-weight: 700; font-size: 15px; }
.brief-card:hover .read { color: var(--orange-dk); }
.brief-card .read::after { content: ' →'; }

/* featured */
.featured {
  display: grid; grid-template-columns: 1.05fr 1fr; overflow: hidden;
  border-radius: var(--r); background: var(--surface); border: 1px solid var(--line);
  margin-bottom: 44px; box-shadow: var(--shadow); transition: transform .22s ease;
}
.featured:hover { transform: translateY(-4px); }
.featured .meta { padding: clamp(30px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.featured .visual {
  position: relative; overflow: hidden; color: #EAF0F4;
  padding: clamp(30px,4vw,48px); display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(600px 400px at 90% 0%, rgba(231,107,28,.34), transparent 60%),
              linear-gradient(155deg, var(--navy), var(--navy-2));
}
.featured .visual .eyebrow { color: var(--orange); }
.featured .visual .big { font-family: var(--font-display); font-size: clamp(32px,4vw,50px); margin-top: 12px; line-height: 1.04; color: #fff; }
.featured h3 { font-size: 28px; margin: 12px 0 18px; }
@media (max-width: 760px) { .featured { grid-template-columns: 1fr; } .featured .visual { order: -1; } }

/* podcast */
.episode {
  display: flex; gap: 20px; align-items: center; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r); padding: 22px; margin-bottom: 16px;
  transition: box-shadow .2s ease;
}
.episode:hover { box-shadow: var(--shadow); }
.episode .ep-num {
  flex: none; width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(150deg, var(--navy), var(--navy-3)); color: var(--orange);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 22px;
}
.episode .ep-body { flex: 1; min-width: 0; }
.episode .ep-body h3 { font-size: 18px; font-family: var(--font-body); font-weight: 700; }
.episode .ep-body p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.episode audio { width: 100%; margin-top: 12px; }
.episode .ep-link { color: var(--orange); font-weight: 700; font-size: 14px; white-space: nowrap; }

/* ============================================================
   Contact
   ============================================================ */
.contact-box { text-align: center; max-width: 660px; margin: 0 auto; }
.contact-box h2 { margin: 14px 0 16px; }
.contact-box p { color: var(--body); font-size: 19px; }
.contact-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ============================================================
   Footer (navy)
   ============================================================ */
.site-footer { background: var(--navy); color: #C5D0DA; padding: 48px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.footer-inner .brand { color: #fff; font-size: 19px; }
.footer-inner .brand span { color: var(--orange); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: #9DACB8; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.copyright { color: #6E8090; font-size: 13px; width: 100%; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; margin-top: 4px; }

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); animation: rise .7s ease forwards; }
.reveal:nth-child(2){animation-delay:.08s} .reveal:nth-child(3){animation-delay:.16s}
.reveal:nth-child(4){animation-delay:.24s} .reveal:nth-child(5){animation-delay:.32s}
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } }

/* ============================================================
   TARGET ACQUIRED — publication masthead (brief page only)
   Designed to lift out into a standalone targetacquired.com later.
   ============================================================ */
.masthead {
  text-align: center; background: var(--paper);
  padding: clamp(46px, 7vw, 82px) var(--pad) clamp(34px, 5vw, 52px);
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
}
.masthead::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(620px 320px at 50% -40%, rgba(231,107,28,.10), transparent 70%);
  pointer-events: none;
}
.masthead .inner { position: relative; max-width: 760px; margin: 0 auto; }
.masthead .kicker { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; font-weight: 700; color: var(--orange); }
.masthead .wordmark {
  font-family: var(--font-display); font-weight: 500; color: var(--navy);
  font-size: clamp(42px, 8.5vw, 88px); line-height: 1; letter-spacing: -0.02em; margin: 16px 0 18px;
}
.masthead .rule { width: min(540px, 84%); margin: 0 auto; border: 0; border-top: 3px double var(--orange); }
.masthead .issue-line {
  display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center; margin-top: 20px;
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--muted);
}
.masthead .issue-line .dot { color: var(--mint-dk); }
.masthead .byline { margin-top: 16px; font-size: 15px; color: var(--body); }
.masthead .byline a { color: var(--orange); font-weight: 700; }
.masthead .byline a:hover { text-decoration: underline; }

/* subscribe band */
.subscribe {
  background: radial-gradient(600px 360px at 88% 0%, rgba(231,107,28,.30), transparent 60%),
              linear-gradient(155deg, var(--navy), var(--navy-2));
  color: #EAF0F4; border-radius: var(--r); padding: clamp(30px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.subscribe h3 { color: #fff; font-size: clamp(24px, 3vw, 32px); }
.subscribe p { color: #C5D0DA; margin-top: 8px; max-width: 46ch; }
.subscribe .sub-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* about the author (back-link to personal site) */
.about-author { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.about-author .mono {
  flex: none; width: 76px; height: 76px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-3)); color: var(--orange);
  font-family: var(--font-display); font-size: 30px;
}
.about-author .bio { flex: 1; min-width: 260px; }
.about-author .bio h3 { font-size: 22px; }
.about-author .bio p { color: var(--body); margin-top: 8px; max-width: 60ch; }
.about-author .bio .more { color: var(--orange); font-weight: 700; margin-top: 12px; display: inline-block; }
.about-author .bio .more:hover { text-decoration: underline; }

/* logo placements */
.masthead .wordmark { margin: 6px 0 18px; }
.masthead .wordmark img { display: block; margin: 0 auto; width: min(440px, 82%); height: auto; }
.featured .visual .cover-logo { width: min(260px, 72%); height: auto; margin-bottom: 22px; }

  
/* ===== Target Acquired standalone site ===== */
section[id], [id].anchor { scroll-margin-top: 88px; }
.brand.ta { display:flex; align-items:center; }
.brand.ta img { height: 46px; width:auto; display:block; }
.nav-back { color: var(--orange) !important; font-weight: 700; }
.ta-hero { text-align:center; padding: clamp(58px,8vw,108px) 0; position:relative; }
.ta-hero img.lockup { width:min(520px,88%); height:auto; margin:0 auto 24px; display:block; }
.ta-hero .tagline { color:#C9D4DE; font-family:var(--font-display); font-style:italic; font-size:clamp(20px,2.6vw,26px); }
.ta-hero .blurb { color:#AEBDC9; font-size:18px; max-width:56ch; margin:14px auto 0; }
.ta-hero .issue { display:inline-flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:22px;
  font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; font-weight:600; color:var(--mint); }
.ta-hero .cta { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:30px; }
.listen-spot { display:flex; align-items:center; gap:12px; flex-wrap:wrap; background:var(--mint-soft);
  border:1px dashed var(--mint-dk); border-radius:12px; padding:14px 18px; color:var(--accent-ink); font-size:14px; }
/* ============================================================
   MULTI-PAGE ADDITIONS  (Briefs / Podcast / sub-page headers)
   ============================================================ */

/* compact navy header for sub-pages */
.hero-band.compact .ta-hero { padding: clamp(46px,6vw,78px) 0 clamp(36px,4.5vw,58px); }
.hero-band.compact .ta-hero .eyebrow { color: var(--mint); display:block; margin-bottom: 12px; }
.page-title { font-family: var(--font-display); font-weight: 500; color:#fff;
  font-size: clamp(30px,4.4vw,46px); line-height: 1.06; letter-spacing:-0.01em; }
.page-sub { color:#AEBDC9; font-size: 18px; max-width: 60ch; margin: 14px auto 0; }

/* minimal archive list — number · title · date */
.archive-list { border-top: 1px solid var(--line); margin-top: 4px; }
.archive-row { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: baseline;
  padding: 22px 6px; border-bottom: 1px solid var(--line); text-decoration: none; transition: background .15s ease; }
.archive-row:hover { background: var(--paper-2); }
.archive-row .no { font-family: var(--font-display); font-size: 15px; color: var(--muted);
  font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.archive-row .ttl { font-family: var(--font-display); font-size: clamp(19px,2.1vw,23px);
  color: var(--ink); line-height: 1.22; font-weight: 500; }
.archive-row:hover .ttl { color: var(--orange-dk); }
.archive-row .dt { font-size: 12.5px; color: var(--muted); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.archive-empty { padding: 38px 6px; color: var(--muted); font-size: 16px; border-bottom: 1px solid var(--line); }
@media (max-width: 620px){
  .archive-row { grid-template-columns: 1fr; gap: 7px; padding: 18px 4px; }
  .archive-row .dt { order: 3; }
}

/* podcast page */
.pod-cta { display:flex; align-items:center; justify-content:space-between; gap: 24px; flex-wrap: wrap;
  background: radial-gradient(600px 320px at 88% 0%, rgba(231,107,28,.30), transparent 60%),
              linear-gradient(155deg, var(--navy), var(--navy-2));
  border-radius: var(--r); padding: clamp(26px,3.6vw,42px); color:#EAF0F4; box-shadow: var(--shadow); }
.pod-cta .pod-copy h3 { color:#fff; font-family: var(--font-display); font-weight: 500; font-size: clamp(22px,2.6vw,28px); }
.pod-cta .pod-copy p { color:#C5D0DA; margin-top: 8px; max-width: 48ch; }
.pod-cta .pod-act { display:flex; gap:12px; flex-wrap:wrap; }
.embed-card { background: var(--surface); border:1px solid var(--line); border-radius: var(--r);
  padding: 16px; box-shadow: var(--shadow); margin-top: 28px; }
.embed-card iframe { display:block; border:0; width:100%; border-radius: 12px; }
.embed-note { color: var(--muted); font-size: 13.5px; margin-top: 14px; text-align:center; }

/* safety: JS-injected reveal content is always shown */
.reveal.is-in { opacity: 1 !important; transform: none !important; animation: none; }

/* featured card navy panel — typographic design (replaces logo) */
.featured .visual { position: relative; overflow: hidden; }
.featured .visual .v-body { position: relative; z-index: 1; }
.featured .visual .v-brand { font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 700; color: var(--mint); margin: 0 0 18px; }
.featured .visual .v-issue { font-family: var(--font-display); font-weight: 500; color: #fff;
  font-size: clamp(38px,5vw,58px); line-height: .98; letter-spacing: -.01em; }
.featured .visual .v-sub { color: #C9D6E2; font-size: 15px; margin-top: 14px; max-width: 26ch; }
.featured .visual .v-date { color: #93A6B6; font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14); display: inline-block; }
/* faint target / crosshair motif in the corner */
.featured .visual .v-mark { position: absolute; top: -56px; right: -56px; width: 264px; height: 264px;
  z-index: 0; border-radius: 50%; opacity: .55; pointer-events: none;
  background:
    radial-gradient(circle, transparent 0 37%, rgba(231,107,28,.60) 37% 38.4%, transparent 38.4%),
    radial-gradient(circle, transparent 0 59%, rgba(255,255,255,.18) 59% 60%, transparent 60%),
    radial-gradient(circle, transparent 0 81%, rgba(255,255,255,.11) 81% 82%, transparent 82%); }
.featured .visual .v-mark::before, .featured .visual .v-mark::after { content:''; position:absolute; background: rgba(255,255,255,.16); }
.featured .visual .v-mark::before { left:50%; top:6%; bottom:6%; width:1px; transform:translateX(-.5px); }
.featured .visual .v-mark::after  { top:50%; left:6%; right:6%; height:1px; transform:translateY(-.5px); }
