/* =========================================================
   Jasper Ezekiel Studios — shared styles
   ========================================================= */

:root {
  --bg: #19191a;
  --bg-alt: #1c1c1d;
  --bg-card: #1e1e1f;
  --bg-footer: #141415;
  --text: #f9f9f9;
  --text-muted: #a7a7ab;
  --text-faint: #7d7d81;
  --accent: #e2ac70;
  --accent-soft: rgba(226, 172, 112, 0.1);
  --accent-soft-2: rgba(226, 172, 112, 0.18);
  --border: rgba(255, 255, 255, 0.07);
  --border-soft: rgba(255, 255, 255, 0.05);
  --radius-card: 16px;
  --radius-btn: 8px;
  --radius-sm: 8px;
  --font: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.8, 0.25, 1);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- page load reveal ---------- */
body {
  opacity: 0;
  animation: page-in 0.6s var(--ease) forwards;
}
@keyframes page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.37s; }

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 0;
  background: linear-gradient(rgba(20, 20, 21, 0.55), rgba(20, 20, 21, 0));
  backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(20, 20, 21, 0.94);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  transition: opacity 0.25s var(--ease);
}
.brand:hover { opacity: 0.85; }
.brand img { width: 30px; height: auto; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links > li {
  position: relative;
}
.nav-link {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 2px;
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--text);
  transition: width 0.3s var(--ease);
}
.nav-link:hover {
  color: var(--text);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link .chev {
  width: 10px;
  height: 10px;
  transition: transform 0.3s var(--ease);
}
.has-dropdown:hover .chev,
.has-dropdown.is-open .chev {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  max-width: 90vw;
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
}
.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-inner {
  background: #101011;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  transform: translateY(10px);
  transition: transform 0.28s var(--ease);
}
.has-dropdown:hover .dropdown-inner,
.has-dropdown.is-open .dropdown-inner {
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.dropdown a:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(2px);
}
.dropdown a strong {
  display: block;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
}
.dropdown a span {
  display: block;
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.4;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }

.btn-solid {
  background: var(--text);
  color: #19191a;
}
.btn-solid:hover {
  background: var(--accent);
  color: #19191a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(226, 172, 112, 0.45);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
}

.btn-sm {
  padding: 10px 16px;
  font-size: 13.5px;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(90deg, rgba(25, 25, 26, 0.98) 0%, rgba(25, 25, 26, 0.92) 40%, rgba(25, 25, 26, 0) 56%),
    url("../images/hero-cover.webp");
  background-size: 100% 100%, 130% auto;
  background-position: 0 0, 68% -15%;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-inner {
  width: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: 28px;
  margin-left: 0;
  margin-right: auto;
}
.hero-face-guard {
  display: none;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.hero .tagline {
  font-style: italic;
  color: #e7e7e8;
  font-size: clamp(16px, 2vw, 19px);
  max-width: 640px;
  margin: 0 0 20px;
  line-height: 1.6;
}
.hero-lead {
  color: #d5d5d7;
  font-size: clamp(15px, 1.8vw, 17px);
  max-width: 640px;
  margin: 0 0 40px;
  line-height: 1.65;
}
.hero-lead em {
  font-style: italic;
  color: #e7e7e8;
}
.hero-lead strong {
  font-weight: 600;
  color: var(--text);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================= SECTION HEADERS ================= */
.section {
  padding: 120px 0;
}
.section-tight { padding: 90px 0; }
.eyebrow {
  color: var(--accent);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
  display: block;
}
.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0;
  max-width: 620px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ================= WHAT I DO CARDS ================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-soft-2);
  box-shadow: 0 28px 48px -24px rgba(0, 0, 0, 0.55);
}
.service-card .thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .thumb img {
  transform: scale(1.08);
}
.service-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0) 55%);
}
.service-card .thumb .mark {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 30px;
  height: 20px;
  object-fit: contain;
  object-position: left top;
  z-index: 2;
  opacity: 0.95;
}
.service-card .thumb h3 {
  position: absolute;
  bottom: 14px;
  left: 18px;
  right: 18px;
  z-index: 2;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}
.service-card .body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card .kicker {
  font-size: 13px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}
.service-card p.desc {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.service-card .tags {
  font-size: 12.5px;
  color: var(--text-faint);
  margin: 0 0 18px;
  line-height: 1.6;
}
.view-link {
  margin-top: auto;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.view-link .arrow {
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.service-card:hover .view-link .arrow,
.view-link:hover .arrow {
  transform: translateX(5px);
}

/* ================= FEATURED PROJECTS ================= */
.featured-grid {
  display: grid;
  grid-template-columns: 0.6328fr 1fr;
  column-gap: 24px;
  row-gap: 8px;
}
.video-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px -24px rgba(0, 0, 0, 0.6);
}
.video-card .frame-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.featured-tall {
  grid-row: 1 / 3;
  align-self: start;
}
.featured-tall .frame-wrap {
  aspect-ratio: 9 / 16;
}

/* ================= CAPABILITIES ================= */
.cap-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cap-list .cap-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border-soft);
}
.cap-list .cap-item:first-child { padding-top: 0; }
.cap-item h4 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 500;
}
.cap-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tool-note {
  margin: 32px 0 0;
  color: var(--text-faint);
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
}
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.tool-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-soft-2);
  background: #212122;
}
.tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}
.tool-card:hover .tool-icon {
  transform: scale(1.08) rotate(-3deg);
}
.tool-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.tool-icon.icon-invert img {
  filter: brightness(0) invert(1);
}
.tool-card h5 {
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 500;
}
.tool-card span {
  font-size: 13px;
  color: var(--text-faint);
}

/* ================= CONTACT ================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-top: 56px;
}
.contact-item {
  transition: transform 0.35s var(--ease);
}
.contact-item:hover {
  transform: translateY(-4px);
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.contact-item:hover .contact-icon {
  transform: scale(1.1);
  background: var(--accent-soft-2);
}
.contact-icon svg {
  width: 24px;
  height: 24px;
}
.contact-item h4 {
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 18px;
}
.contact-item .sub {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 10px;
}
.contact-item a.clink {
  display: block;
  color: var(--accent);
  font-size: 14.5px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.contact-item a.clink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.contact-item a.clink:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--bg-footer);
  padding: 48px 0;
  border-top: 1px solid var(--border-soft);
}
.footer .container {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer .qr {
  width: 78px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.footer .qr:hover { transform: scale(1.06) rotate(-2deg); }
.footer p {
  margin: 0 0 6px;
  color: var(--text-faint);
  font-size: 13.5px;
  line-height: 1.6;
}
.footer p:first-child { color: var(--text-muted); }

/* ================= EXPERTISE PAGE ================= */
.expertise-hero {
  padding: 160px 0 40px;
}
.category-block {
  padding: 90px 0;
  border-top: 1px solid var(--border-soft);
}
.category-banner {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 56px;
  aspect-ratio: 2659 / 720;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
}
.category-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(25, 25, 26, 0.95), rgba(25, 25, 26, 0.78) 45%, rgba(25, 25, 26, 0.2));
}
.category-banner-text {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 0 clamp(24px, 5vw, 64px);
}
.category-banner-text .eyebrow {
  display: block;
  margin-bottom: 12px;
}
.category-banner-text h2 {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 14px;
}
.category-banner-text p {
  color: var(--text-muted);
  font-size: clamp(13px, 1.4vw, 15.5px);
  line-height: 1.65;
  margin: 0;
}
.category-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.category-head .eyebrow { margin-bottom: 14px; }
.category-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  margin: 0 0 16px;
}
.category-head p {
  color: var(--text-muted);
  font-size: 16.5px;
  margin: 0;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 32px;
}
.project-card {
  display: flex;
  flex-direction: column;
}
.project-card .ptags {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.7;
}
.project-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px;
}
.project-card p.pdesc {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 22px;
}
.project-card .frame-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-soft);
  margin-bottom: 24px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color .45s var(--ease);
}
.project-card .frame-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px -24px rgba(0, 0, 0, 0.6);
  border-color: var(--accent-soft-2);
}
.project-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.empty-note {
  color: var(--text-faint);
  font-size: 15px;
  font-style: italic;
}

/* ================= BACK TO TOP ================= */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease), visibility 0.3s;
  z-index: 400;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--accent);
  color: #19191a;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .cap-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .project-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 16, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 24px;
    gap: 2px;
    border-bottom: 1px solid var(--border-soft);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.is-open-mobile { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-link { padding: 13px 0; width: 100%; justify-content: space-between; }
  .dropdown {
    position: static;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 100%;
    max-width: none;
    padding-top: 0;
    display: none;
  }
  .has-dropdown.is-open .dropdown { display: block; }
  .dropdown-inner {
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 6px 10px;
    grid-template-columns: 1fr;
  }
  .has-dropdown.is-open .chev { transform: rotate(180deg); }
  .menu-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .brand span { font-size: 16px; white-space: nowrap; }
  .card-grid, .tool-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; row-gap: 24px; }
  .featured-tall { grid-row: auto; }
  .section { padding: 80px 0; }
  .footer .container { flex-direction: column; text-align: center; }

  .hero {
    min-height: auto;
    padding-top: 320px;
    padding-bottom: 56px;
  }
  .hero-content {
    max-width: none;
    margin-top: 0;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    border-radius: 0;
    background-image: url("../images/hero-cover-mobile.jpg");
    background-size: 165% auto;
    background-position: 0% top;
    animation: none;
  }
  .hero h1 {
    margin-bottom: 18px;
  }
  .hero .tagline {
    margin-bottom: 14px;
  }
  .hero-lead {
    margin-bottom: 32px !important;
  }
  .category-banner {
    aspect-ratio: auto;
    min-height: 300px;
    background-size: cover;
    padding: 28px 0;
    border-radius: 0;
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .category-banner-text {
    max-width: 100%;
    padding: 0 24px;
  }
  #cd .category-banner { background-position: 93% center; }
  #dop .category-banner { background-position: 80% center; }
  #multimedia-specialist .category-banner { background-position: 80% center; }
  #video-compositing-vfx .category-banner { background-position: 64% center; }
  #motion-graphics-design .category-banner { background-position: 73% center; }
  #branding-marketing .category-banner { background-position: 68% center; }
}
