:root {
  --vod-font-display: "neue-haas-grotesk-display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;

  --vod-font-text: "neue-haas-grotesk-text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;

  --vod-charcoal: #23252a;
  --vod-near-black: #141217;
  --vod-cream: #f2eee7;
  --vod-blue-paper: #e4ecf5;

  --vod-purple: #6c3bff;
  --vod-orange: #ff8c24;
  --vod-rose: #fa003f;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--vod-charcoal);
  font-family: var(--vod-font-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font-family: var(--vod-font-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--vod-font-display);
}

.vod-fullwidth-wrapper,
.vod-fullwidth-wrapper > .et_pb_row {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.vod-fullwidth-wrapper .et_pb_column,
.vod-fullwidth-wrapper .et_pb_module,
.vod-fullwidth-wrapper .et_pb_code_inner {
  margin: 0 !important;
  padding: 0 !important;
}

.vod-create-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  background: #ffffff;
  color: var(--vod-charcoal);
  padding: clamp(64px, 9vw, 150px) clamp(24px, 7vw, 110px);
}

.vod-create-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.vod-create-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

.vod-create-title {
  margin: 0 0 28px;
  color: var(--vod-charcoal);
  font-family: var(--vod-font-display);
  font-size: clamp(58px, 9vw, 142px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 1.75em;
}

.vod-create-name {
  margin: 0 0 8px;
  font-family: var(--vod-font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.vod-create-roles {
  margin: 0 0 26px;
  color: rgba(35, 37, 42, 0.62);
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vod-create-copy {
  max-width: 660px;
  margin: 0 0 34px;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.vod-create-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid var(--vod-charcoal);
  border-radius: 999px;
  color: var(--vod-charcoal);
  background: transparent;
  font-family: var(--vod-font-display);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.vod-create-button:hover,
.vod-create-button:focus-visible {
  color: #ffffff;
  background: var(--vod-charcoal);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .vod-create-inner {
    grid-template-columns: 1fr;
  }

  .vod-create-image {
    max-height: 62vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}