:root {
  color-scheme: light dark;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #fdfdfc;
  --fg: #1a1a1a;
  --muted: #4b4b4b;
  --border: #d0d0d0;
  --accent: #1e66f5;
  --accent-contrast: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f1f1f0;
  --focus: #ff7a18;
  --brand: #2563eb;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1014;
    --fg: #f4f4f4;
    --muted: #bbbbbb;
    --border: #2d2f39;
    --accent: #7aa2ff;
    --accent-contrast: #050608;
    --surface: #161821;
    --surface-muted: #1f2230;
    --focus: #f59e0b;
    --brand: #7aa2ff;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 0.5rem 0.75rem;
  border-radius: 0.3rem;
  transition: top 0.2s ease;
  z-index: 1000;
}

.skip-link:focus-visible {
  top: 1rem;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand-link {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}

.primary-nav ul,
.site-footer nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a,
.site-footer nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  text-decoration: underline;
}

.site-main {
  outline: none;
}

.container {
  width: min(100% - 2rem, 1024px);
  margin: 0 auto;
}

.content-area {
  width: min(100% - 2rem, 960px);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 96px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
}

.content-area > * {
  max-width: 100%;
}

.content-area h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
  letter-spacing: -0.02em;
  margin: 0;
}

.content-area h2 {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
  margin: clamp(24px, 4vw, 48px) 0 0.6em;
}

.content-area h3 {
  font-size: clamp(1.35rem, 1.5vw + 0.9rem, 1.8rem);
  margin: clamp(18px, 3vw, 32px) 0 0.5em;
}

.content-area p {
  margin: 0;
  max-width: 72ch;
  color: var(--fg);
}

.content-area p + p,
.content-area p + ul,
.content-area p + ol,
.content-area ul + p,
.content-area ol + p {
  margin-top: 1rem;
}

.content-area ul,
.content-area ol {
  padding-left: 1.5rem;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.content-area li {
  max-width: 70ch;
}

.content-area blockquote {
  border-left: 4px solid var(--brand);
  padding-left: 1rem;
  color: var(--muted);
  margin: 0;
}

.content-area pre {
  background: var(--surface-muted);
  border-radius: 0.75rem;
  padding: 1rem;
  overflow-x: auto;
  border: 1px solid var(--border);
}

.content-area code {
  font-family: "Source Code Pro", Menlo, monospace;
  font-size: 0.95em;
  background: var(--surface-muted);
  border-radius: 0.4rem;
  padding: 0.15rem 0.35rem;
}

.content-area table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 0.75rem;
  overflow: hidden;
}

.content-area th,
.content-area td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.content-area tr:last-child td {
  border-bottom: none;
}

.content-area img,
.content-area video,
.content-area iframe {
  max-width: 100%;
  height: auto;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

article.project,
article.teaching {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

article.project .meta,
article.teaching .meta {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

article.project .hero {
  width: 100%;
  border-radius: 1rem;
  margin: clamp(24px, 4vw, 40px) 0;
  border: 1px solid var(--border);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

article.project h2,
article.teaching h2 {
  margin-top: clamp(28px, 4vw, 48px);
}

article.project ul,
article.teaching ul {
  padding-left: 1.25rem;
  display: grid;
  gap: 0.6rem;
}

article.project li,
article.teaching li {
  max-width: 68ch;
}

@media (max-width: 720px) {
  .content-area {
    width: min(100% - 1.5rem, 960px);
    padding: clamp(32px, 10vw, 72px) 0;
  }

  article.project,
  article.teaching {
    padding: clamp(24px, 8vw, 40px);
  }
}

.hero {
  background: var(--surface);
  padding: 4rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
  margin-bottom: 0.5rem;
}

.hero-subhead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 32ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.6rem;
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.secondary {
  background: transparent;
  border-color: var(--border);
  color: inherit;
}

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

.card-visual,
.asset-preview {
  position: relative;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-visual,
.asset-preview {
  min-height: 200px;
}

.ph {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 1px dashed var(--border);
  background: repeating-linear-gradient(135deg, transparent 0, transparent 12px, rgba(0,0,0,0.05) 12px, rgba(0,0,0,0.05) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  padding: 1rem;
  text-align: center;
}

.pillars {
  padding: 3rem 0;
}

.card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 2rem 0 0;
}

.selected-grid {
  margin-top: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.card > a {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.card > a:hover,
.card > a:focus-visible {
  text-decoration: none;
}

.card img {
  border-radius: 0.55rem;
  border: 1px solid var(--border);
}

.selected-card .card-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 0.55rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.selected-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
}

.card p:not(.eyebrow) {
  color: var(--muted);
}

.card-body h2,
.card-body h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card-body p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.archive-link-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.archive-link-note a {
  color: inherit;
}

.archive-link-note a:hover,
.archive-link-note a:focus-visible {
  color: var(--fg);
}

.card-link {
  font-weight: 600;
}

.card-link.pending {
  color: var(--muted);
  cursor: default;
  text-decoration: none;
}

.whats-new,
.archive-note,
.contact-section,
.press-section {
  padding: 3rem 0;
}
.legacy-links {
  margin-top: 2rem;
}
.legacy-links h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.legacy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.legacy-list li {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.legacy-card-link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.legacy-card-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: inherit;
}
.legacy-card-link:hover .legacy-cta,
.legacy-card-link:focus-visible .legacy-cta {
  text-decoration: underline;
}
.legacy-list h4 {
  margin: 0;
  font-size: 1.1rem;
}
.legacy-lede {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.legacy-list a {
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}
.legacy-list a:hover,
.legacy-list a:focus-visible {
  text-decoration: underline;
}
.legacy-cta {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.download-section {
  padding: 0 0 4rem;
}

.download-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.download-list li {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 0.35rem;
}

.download-list a {
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}

.download-list a:hover,
.download-list a:focus-visible {
  text-decoration: underline;
}

.download-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.news-meta {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
}

.page-intro {
  padding: 3rem 0 1rem;
}

.page-intro .eyebrow,
.page-intro p.eyebrow,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.portfolio-list {
  padding: 1rem 0 4rem;
}

.portfolio-list .card-grid {
  gap: 2.5rem;
}


.content-area {
  padding: 3rem 0 4rem;
  display: grid;
  gap: 1.5rem;
}

.content-area > * {
  max-width: 72ch;
  margin: 0 auto;
  width: 100%;
}

.content-area > *:first-child {
  margin-top: 0;
}

.content-area h1 {
  font-size: clamp(2.25rem, 3.5vw + 1rem, 3.25rem);
  margin: 0 0 0.75rem;
}

.content-area h2 {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
  margin: 2.5rem 0 0.75rem;
}

.content-area h3 {
  font-size: clamp(1.35rem, 1.5vw + 1rem, 1.75rem);
  margin: 2rem 0 0.5rem;
}

.content-area p,
.content-area ul,
.content-area ol,
.content-area blockquote,
.content-area pre {
  margin: 0 0 1.25rem;
}

.content-area ul,
.content-area ol {
  padding-left: 1.5rem;
}

.content-area li + li {
  margin-top: 0.4rem;
}

.content-area blockquote {
  border-left: 4px solid var(--border);
  padding-left: 1rem;
  color: var(--muted);
}

.content-area table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.content-area th,
.content-area td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--muted);
}

.breadcrumb li:last-child::after {
  content: "";
}

.quick-facts,
.contact-list,
.asset-status-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.asset-status-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed var(--border);
  border-radius: 0.45rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.asset-path {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.875rem;
}

.asset-status {
  font-weight: 600;
}

.asset-note {
  margin: 0.5rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.asset-placeholder {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.asset-placeholder a {
  color: inherit;
  text-decoration: underline;
}

.asset-status[data-state="present"] {
  color: #0b8f3c;
}

.asset-status[data-state="missing"] {
  color: var(--muted);
}

.asset-status-list li[data-state="present"] {
  border-color: rgba(11, 143, 60, 0.5);
  background: rgba(11, 143, 60, 0.05);
}

.asset-drop {
  display: none;
  flex-basis: 100%;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: 0.4rem;
  padding: 0.35rem 0.5rem;
  background: var(--surface-muted);
  pointer-events: none;
  user-select: none;
}

.asset-status-list li[data-state="missing"] .asset-drop {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}

.footer-inner nav ul {
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

:focus-visible {
  outline: 3px solid var(--brand, var(--focus));
  outline-offset: 3px;
}

.hero-visual img,
.card-visual img,
.asset-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-banner {
  position: relative;
  z-index: 999;
  background: #111827;
  color: #f9fafb;
  padding: 0.6rem 1rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: clamp(18px, 4vw, 32px);
}

.archive-banner a {
  color: #facc15;
  text-decoration: underline;
}

/* Landing refresh */
.hero {
  padding: clamp(32px, 8vw, 96px) 0;
}

.hero-grid {
  display: grid;
  gap: clamp(24px, 6vw, 48px);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
  letter-spacing: -0.01em;
}
.hero-copy .eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.hero-copy .tagline {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 42ch;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 0.75rem;
  font-weight: 700;
  border: 2px solid transparent;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.hero-visual {
  height: clamp(280px, 42vh, 420px);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.hero[data-banner="css"] .hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(120deg, rgba(255,255,255,0.06) 0 8px, transparent 8px 16px),
    radial-gradient(1200px 400px at 0% 50%, #7dd3fc 0%, #3b82f6 35%, #a78bfa 65%, #ec4899 100%);
  filter: contrast(110%) saturate(105%);
  animation: drift 18s linear infinite;
  transform: translate3d(0,0,0) scale(1.15);
}

.hero[data-banner="canvas"] .hero-visual::before {
  display: none;
}

.hero[data-banner="canvas"] .hero-visual {
  background: radial-gradient(140% 140% at 0% 30%, rgba(125, 211, 252, 0.55) 0%, rgba(37, 99, 235, 0.35) 45%, rgba(236, 72, 153, 0.25) 100%),
    linear-gradient(125deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.65) 50%, rgba(15, 23, 42, 0.9) 100%);
}

.hero[data-banner="canvas"] .hero-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 0, 1600px 0; }
}

.updates {
  padding: clamp(32px, 8vw, 80px) 0;
}

.updates-grid {
  display: grid;
  gap: clamp(20px, 4vw, 40px);
}

.updates-grid > section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.updates-grid h2 {
  margin-top: 0;
}

.nn-list,
.patch-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.nn-list li,
.patch-notes ul li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.5;
}

.nn-list li::before,
.patch-notes ul li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
  transform: translateY(-50%);
}

.nn-list strong {
  color: var(--brand);
}

.playable {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.playable p {
  margin: 0;
}

.patch-notes ul li a {
  font-weight: 600;
}

.patch-note-groups {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(16px, 2vw, 24px);
}

.patch-list h3 {
  margin-top: 0;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.patch-list ul {
  margin-top: 0.75rem;
}

.patch-list .badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.45rem;
  margin-left: 0.35rem;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  color: var(--brand);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.patch-list.highlight {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(236, 72, 153, 0.08));
  border-radius: 0.75rem;
  padding: clamp(16px, 2vw, 20px);
}

.patch-list.latest {
  border: 1px dashed var(--border);
  border-radius: 0.75rem;
  padding: clamp(16px, 2vw, 20px);
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .patch-note-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .updates-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    grid-auto-rows: minmax(0, max-content);
  }

  .updates-grid > .now-next {
    position: sticky;
    top: clamp(72px, 12vw, 140px);
    align-self: start;
    z-index: 1;
  }

  .updates-grid > .playable {
    grid-column: 2;
    position: static;
    top: auto;
    align-self: stretch;
  }

  .updates-grid > .patch-notes {
    grid-column: 2;
    margin-top: clamp(20px, 3vw, 40px);
    position: relative;
    z-index: 0;
  }
}

@media (max-width: 899px) {
  .updates-grid > section {
    position: static !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero[data-banner="css"] .hero-visual::before {
    animation: none;
    transform: none;
  }
}
.content-area > .cards,
.content-area > .card-grid,
.content-area > .portfolio-list,
.content-area > .wide,
.content-area > .full-bleed {
  max-width: 100%;
}
