/* ==========================================================================
   OYIZA & OMI — Design System
   Direction: editorial publication + founder portfolio + institution.
   Signature element: thin schematic "corner bracket" marks (⌐ ¬) on cards
   and section labels — a quiet nod to building infrastructure/blueprints,
   used once as the memorable device rather than scattered everywhere.
   ========================================================================== */

:root{
	/* ---- Color ---- */
	--ink:        #12141A;   /* near-black, primary text */
	--navy:       #0E1B2E;   /* deep navy, dark sections */
	--paper:      #F5F2EC;   /* warm neutral background */
	--paper-deep: #ECE7DC;   /* slightly deeper warm panel */
	--white:      #FFFFFF;
	--line:       rgba(18,20,26,0.14);
	--line-soft:  rgba(18,20,26,0.08);
	--blue:       #2A4EA6;   /* restrained signal blue accent */
	--blue-deep:  #1B3676;
	--clay:       #A85A2D;   /* warm secondary accent, used sparingly */
	--muted:      #5B5B52;   /* warm gray for secondary text */
	--on-navy:    #EDE9DE;

	/* ---- Type ---- */
	--font-display: 'Fraunces', Georgia, serif;
	--font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono:    'IBM Plex Mono', 'SFMono-Regular', monospace;

	/* ---- Layout ---- */
	--wrap: 1220px;
	--wrap-narrow: 760px;
	--radius: 2px;
	--speed: 220ms;
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                            */
/* ---------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
h1, h2, h3, h4{ font-family: var(--font-display); font-weight: 500; line-height: 1.1; margin: 0 0 0.5em; color: var(--ink); }
p{ margin: 0 0 1em; }

.screen-reader-text{ position:absolute !important; clip:rect(1px,1px,1px,1px); width:1px; height:1px; overflow:hidden; }
.skip-link{ position:absolute; top:-100px; left:0; background:var(--ink); color:#fff; padding:12px 20px; z-index:1000; }
.skip-link:focus{ top:0; }

:focus-visible{ outline: 2px solid var(--blue); outline-offset: 3px; }

.wrap{ max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.content-narrow{ max-width: var(--wrap-narrow); margin: 0 auto; padding-left: 32px; padding-right: 32px; }

@media (prefers-reduced-motion: reduce){
	*, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------------------------------------------------------------------- */
/* Type utilities                                                          */
/* ---------------------------------------------------------------------- */
.eyebrow{
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--blue-deep);
	margin: 0 0 14px;
}
.section-label{
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 20px;
	display: inline-block;
	position: relative;
	padding-left: 14px;
}
.section-label::before{
	content: "";
	position: absolute;
	left: 0; top: 50%;
	width: 8px; height: 1px;
	background: var(--clay);
	transform: translateY(-50%);
}
.section-heading{ font-size: clamp(28px, 3.4vw, 42px); max-width: 16ch; }
.section-heading-row{ display:flex; justify-content:space-between; align-items:flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.text-link{ font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.02em; border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: border-color var(--speed); }
.text-link:hover{ border-color: var(--ink); }
.prose{ font-size: 18px; }
.prose h2{ font-size: 28px; margin-top: 1.6em; }
.prose h3{ font-size: 22px; margin-top: 1.4em; }
.prose a{ text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol{ list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.prose ol{ list-style: decimal; }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                  */
/* ---------------------------------------------------------------------- */
.btn{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 14px 26px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	transition: background var(--speed), color var(--speed), border-color var(--speed), transform var(--speed);
}
.btn--primary{ background: var(--ink); color: var(--paper); }
.btn--primary:hover{ background: var(--blue-deep); transform: translateY(-1px); }
.btn--ghost{ border-color: var(--line); color: var(--ink); }
.btn--ghost:hover{ border-color: var(--ink); }
.btn--disabled{ background: var(--paper-deep); color: var(--muted); border: 1px solid var(--line); cursor: default; }
.enroll-note{ font-size: 13px; color: var(--muted); margin-top: 10px; }

/* ---------------------------------------------------------------------- */
/* Header                                                                   */
/* ---------------------------------------------------------------------- */
.site-header{ position: sticky; top: 0; z-index: 100; background: rgba(245,242,236,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line-soft); }
.site-header__inner{ display: flex; align-items: center; justify-content: space-between; height: 84px; }
.site-branding__text{ font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.main-nav{ display: flex; align-items: center; gap: 40px; }
#primary-menu{ display: flex; gap: 32px; }
#primary-menu a{ font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase; position: relative; }
#primary-menu a::after{ content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--ink); transition: width var(--speed); }
#primary-menu a:hover::after{ width: 100%; }
.main-nav__cta{ display: flex; gap: 12px; }
.main-nav__cta .btn{ padding: 10px 18px; }
.menu-toggle{ display: none; background: none; border: none; width: 32px; height: 24px; flex-direction: column; justify-content: space-between; padding: 0; }
.menu-toggle__bar{ display:block; height: 1px; background: var(--ink); width: 100%; }

@media (max-width: 960px){
	.menu-toggle{ display: flex; }
	.main-nav{ position: fixed; top: 84px; left: 0; right: 0; bottom: 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 32px; gap: 28px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity var(--speed), transform var(--speed); overflow-y: auto; }
	.main-nav.is-open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
	#primary-menu{ flex-direction: column; gap: 20px; }
	#primary-menu a{ font-size: 16px; }
	.main-nav__cta{ flex-direction: column; width: 100%; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                     */
/* ---------------------------------------------------------------------- */
.hero{
	padding: 120px 0 100px;
	background-image:
		linear-gradient(var(--line-soft) 1px, transparent 1px),
		linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
	background-size: 48px 48px;
	background-position: center top;
}
.hero__inner{ max-width: 920px; }
.hero__headline{ font-size: clamp(36px, 6vw, 68px); letter-spacing: -0.01em; }
.hero__headline p{ margin: 0; }
.hero__subtext{ font-size: 19px; color: var(--muted); max-width: 52ch; margin-top: 20px; }
.hero__actions{ display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.reveal{ opacity: 0; transform: translateY(14px); animation: oyiza-reveal 700ms ease forwards; }
.reveal:nth-child(1){ animation-delay: 0ms; }
.reveal:nth-child(2){ animation-delay: 90ms; }
.reveal:nth-child(3){ animation-delay: 180ms; }
.reveal:nth-child(4){ animation-delay: 270ms; }
@keyframes oyiza-reveal{ to{ opacity: 1; transform: translateY(0); } }

/* ---------------------------------------------------------------------- */
/* Sections, generic                                                       */
/* ---------------------------------------------------------------------- */
.section{ padding: 96px 0; border-top: 1px solid var(--line-soft); }
.idea-section__statement{ font-family: var(--font-display); font-size: clamp(24px, 3.2vw, 36px); max-width: 20ch; line-height: 1.35; }
.empty-state{ padding: 48px; border: 1px dashed var(--line); text-align: center; color: var(--muted); font-family: var(--font-mono); font-size: 13px; }

/* ---------------------------------------------------------------------- */
/* Capability grid (What I Do)                                             */
/* ---------------------------------------------------------------------- */
.capability-grid{ display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-bottom: 32px; }
.capability-card{ padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background var(--speed); }
.capability-card:hover, .capability-card:focus{ background: var(--white); }
.capability-card__num{ font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.capability-card__verb{ font-size: 26px; margin: 14px 0 4px; }
.capability-card__label{ font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue-deep); margin-bottom: 10px; }
.capability-card__desc{ font-size: 14.5px; color: var(--muted); margin: 0; }
@media (max-width: 780px){ .capability-grid{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Ecosystem (Ventures)                                                     */
/* ---------------------------------------------------------------------- */
.ecosystem-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ecosystem-card{ background: var(--paper); padding: 40px 32px; position: relative; transition: background var(--speed); }
.ecosystem-card:hover{ background: var(--white); }
.ecosystem-card::before, .ecosystem-card::after{ content:""; position:absolute; width: 14px; height: 14px; border: 1px solid transparent; transition: border-color var(--speed); }
.ecosystem-card::before{ top: 14px; left: 14px; border-top-color: var(--clay); border-left-color: var(--clay); }
.ecosystem-card::after{ bottom: 14px; right: 14px; border-bottom-color: var(--clay); border-right-color: var(--clay); }
.ecosystem-card:hover::before, .ecosystem-card:hover::after{ border-color: var(--clay); }
.ecosystem-card__type{ font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 18px; }
.ecosystem-card__name{ font-size: 24px; margin-bottom: 12px; }
.ecosystem-card__desc{ font-size: 14.5px; color: var(--muted); }
@media (max-width: 780px){ .ecosystem-grid{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* OMI section (dark panel)                                                */
/* ---------------------------------------------------------------------- */
.omi-section{ background: var(--navy); color: var(--on-navy); border-top: none; }
.omi-section .section-label{ color: rgba(237,233,222,0.6); }
.omi-section .section-label::before{ background: var(--clay); }
.omi-section__inner{ max-width: 720px; }
.omi-section__heading{ color: var(--white); font-size: clamp(28px, 4vw, 44px); }
.omi-section__tagline{ font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: #C9B08A; margin-bottom: 20px; }
.omi-section__text{ color: rgba(237,233,222,0.82); font-size: 17px; max-width: 60ch; margin-bottom: 32px; }
.omi-flow{ display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 40px; color: var(--white); }
.omi-flow__arrow{ color: var(--clay); }
.omi-section .btn--primary{ background: var(--white); color: var(--navy); }
.omi-section .btn--primary:hover{ background: var(--clay); color: var(--white); }

/* ---------------------------------------------------------------------- */
/* Card grids (Programs / Insights)                                        */
/* ---------------------------------------------------------------------- */
.card-grid{ display: grid; gap: 28px; }
.card-grid--3{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){ .card-grid--3{ grid-template-columns: 1fr; } }

.program-card{ display: block; border: 1px solid var(--line); background: var(--white); transition: transform var(--speed), border-color var(--speed); }
.program-card:hover{ transform: translateY(-3px); border-color: var(--ink); }
.program-card__media{ position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-deep); }
.program-card__media img{ width: 100%; height: 100%; object-fit: cover; }
.program-card__placeholder{ width: 100%; height: 100%; background: repeating-linear-gradient(45deg, var(--paper-deep), var(--paper-deep) 10px, var(--paper) 10px, var(--paper) 20px); }
.badge{ position: absolute; top: 14px; left: 14px; font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 10px; background: var(--white); border: 1px solid var(--line); }
.badge.is-open{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.badge.is-coming-soon{ background: var(--clay); color: var(--white); border-color: var(--clay); }
.badge.is-closed, .badge.is-draft{ color: var(--muted); }
.program-card__body{ padding: 24px; }
.program-card__school{ font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 8px; }
.program-card__title{ font-size: 21px; margin-bottom: 8px; }
.program-card__positioning{ font-size: 14px; color: var(--muted); margin-bottom: 16px; }

.insight-card{ display: block; }
.insight-card__media{ aspect-ratio: 4/3; overflow: hidden; margin-bottom: 16px; background: var(--paper-deep); }
.insight-card__media img{ width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; }
.insight-card:hover .insight-card__media img{ transform: scale(1.03); }
.insight-card__meta{ font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.insight-card__title{ font-size: 20px; margin-bottom: 8px; }
.insight-card__excerpt{ font-size: 14px; color: var(--muted); }

/* ---------------------------------------------------------------------- */
/* Filter tabs (Programs archive)                                          */
/* ---------------------------------------------------------------------- */
.filter-tabs{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-tab{ font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.03em; padding: 9px 16px; border: 1px solid var(--line); background: transparent; border-radius: 999px; transition: background var(--speed), color var(--speed), border-color var(--speed); }
.filter-tab.is-active, .filter-tab:hover{ background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------------------------------------------------------------------- */
/* What I'm Building list                                                  */
/* ---------------------------------------------------------------------- */
.building-list{ border-top: 1px solid var(--line); }
.building-row{ display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid var(--line); transition: padding-left var(--speed); }
.building-row:hover{ padding-left: 12px; }
.building-row__name{ font-family: var(--font-display); font-size: 22px; }
.building-row__status{ font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; color: var(--muted); }
.building-row__arrow{ color: var(--clay); }

/* ---------------------------------------------------------------------- */
/* Contact CTA                                                             */
/* ---------------------------------------------------------------------- */
.contact-cta{ text-align: center; }
.contact-cta__inner{ max-width: 640px; margin: 0 auto; }
.contact-cta__heading{ font-size: clamp(26px, 3.6vw, 38px); }
.contact-cta__text{ color: var(--muted); margin-bottom: 32px; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */
.site-footer{ background: var(--ink); color: rgba(245,242,236,0.86); margin-top: 0; }
.footer__top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 80px 0 48px; border-bottom: 1px solid rgba(245,242,236,0.14); }
.footer__mark{ font-family: var(--font-display); font-size: 24px; color: #fff; margin-bottom: 6px; }
.footer__tagline{ font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: #C9B08A; margin-bottom: 24px; }
.footer__socials{ display: flex; gap: 16px; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; }
.footer__socials a{ border-bottom: 1px solid transparent; }
.footer__socials a:hover{ border-color: currentColor; }
.footer__nav ul{ display: flex; flex-direction: column; gap: 12px; }
.footer__nav a{ font-size: 14.5px; }
.footer__widget-title{ font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; color: #C9B08A; margin-bottom: 14px; }
.newsletter-form{ display: flex; gap: 8px; }
.newsletter-form input{ flex: 1; padding: 12px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: var(--radius); }
.newsletter-form__note{ font-size: 12px; color: rgba(245,242,236,0.5); margin-top: 10px; }
.footer__bottom{ display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 13px; color: rgba(245,242,236,0.55); flex-wrap: wrap; gap: 12px; }
.footer__legal ul{ display: flex; gap: 20px; }
@media (max-width: 860px){ .footer__top{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Generic page / article entry                                            */
/* ---------------------------------------------------------------------- */
.page-entry__header{ padding: 64px 0 40px; }
.page-entry__title{ font-size: clamp(32px, 5vw, 52px); }
.page-entry__subtitle{ font-size: 18px; color: var(--muted); }
.page-entry__media{ margin-bottom: 40px; }
.page-entry__media img{ width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.article-entry__meta{ font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; color: var(--muted); }
.breadcrumbs ol{ display: flex; gap: 8px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.breadcrumbs li:not(:last-child)::after{ content: "/"; margin-left: 8px; }
.tag-row{ display: flex; gap: 10px; flex-wrap: wrap; margin: 40px 0; }
.tag{ font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }

/* ---------------------------------------------------------------------- */
/* Archive header                                                          */
/* ---------------------------------------------------------------------- */
.archive-header{ padding: 72px 0 48px; border-bottom: 1px solid var(--line-soft); margin-bottom: 56px; }
.archive-header__title{ font-size: clamp(32px, 5vw, 52px); }
.archive-header__text{ color: var(--muted); max-width: 60ch; }

/* ---------------------------------------------------------------------- */
/* Program single page                                                     */
/* ---------------------------------------------------------------------- */
.program-hero{ padding: 56px 0 40px; }
.program-hero__top{ display: flex; justify-content: space-between; align-items: center; }
.program-hero__title{ font-size: clamp(32px, 5vw, 54px); }
.program-hero__positioning{ font-size: 19px; color: var(--muted); max-width: 50ch; margin-bottom: 32px; }
.program-facts{ display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; margin-bottom: 32px; }
.program-facts dt{ font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.program-facts dd{ margin: 0; font-size: 16px; }
.program-section{ margin: 48px 0; }
.program-section h2{ font-size: 24px; }
.curriculum-list{ counter-reset: none; }
.curriculum-list__item{ display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.curriculum-list__num{ font-family: var(--font-mono); font-size: 13px; color: var(--clay); flex-shrink: 0; }
.program-body__cta{ margin-top: 48px; }
.related-programs{ background: var(--paper-deep); }

/* ---------------------------------------------------------------------- */
/* OMI page — schools grid                                                 */
/* ---------------------------------------------------------------------- */
.omi-hero{ padding: 72px 0 40px; text-align: center; }
.omi-hero__title{ font-size: clamp(36px, 6vw, 60px); }
.omi-hero__tagline{ font-family: var(--font-mono); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue-deep); }
.school-card{ display: block; padding: 32px; border: 1px solid var(--line); background: var(--white); transition: border-color var(--speed); }
.school-card:hover{ border-color: var(--ink); }
.school-card__num{ font-family: var(--font-mono); font-size: 12px; color: var(--clay); }
.school-card h3{ font-size: 19px; margin: 14px 0 8px; }
.school-card p{ font-size: 13.5px; color: var(--muted); margin: 0; }
.check-list{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0 32px; }
.check-list li{ padding-left: 22px; position: relative; font-size: 15px; }
.check-list li::before{ content: "—"; position: absolute; left: 0; color: var(--clay); }
.disclaimer{ font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 20px; }

/* ---------------------------------------------------------------------- */
/* Contact page                                                            */
/* ---------------------------------------------------------------------- */
.contact-layout{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 40px 0 96px; }
.contact-list{ margin-top: 32px; }
.contact-list div{ padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; }
.contact-list dt{ font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; color: var(--muted); }
.contact-form{ display: flex; flex-direction: column; gap: 6px; }
.contact-form label{ font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; margin-top: 14px; color: var(--muted); }
.contact-form input, .contact-form select, .contact-form textarea{ padding: 12px 14px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); font-family: var(--font-body); font-size: 15px; }
.contact-form button{ margin-top: 24px; align-self: flex-start; }
@media (max-width: 860px){ .contact-layout{ grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Search / 404                                                            */
/* ---------------------------------------------------------------------- */
.search-form{ display: flex; gap: 10px; margin-top: 24px; }
.search-form input{ flex: 1; padding: 12px 16px; border: 1px solid var(--line); }
.search-form button{ padding: 12px 20px; background: var(--ink); color: var(--paper); border: none; }
.search-result{ display: block; padding: 24px 0; border-bottom: 1px solid var(--line); }
.search-result__type{ font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--blue-deep); }
.error-404{ padding: 96px 0; text-align: left; }

/* ---------------------------------------------------------------------- */
/* Comments                                                                 */
/* ---------------------------------------------------------------------- */
.comments-wrap{ margin-top: 64px; border-top: 1px solid var(--line); padding-top: 40px; }
.comment-list{ margin-bottom: 32px; }
