:root {
  --paper: #F4F0E8;
  --ink: #1F1F1F;
  --muted: #68645D;
  --rule: rgba(31, 31, 31, 0.18);
  --page: min(1460px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.38), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  width: var(--page);
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  border-bottom: 1px solid var(--rule);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
  font-size: 0.96rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.hero-links a:hover,
footer a:hover {
  opacity: 0.58;
}

.resume-link {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

main {
  width: var(--page);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding: clamp(34px, 4vw, 54px) 0 clamp(90px, 8vw, 130px);
}

.hero-copy {
  align-self: start;
  padding-top: 8px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  margin: 0;
  font-size: clamp(4.8rem, 8.3vw, 9rem);
  line-height: 0.78;
  letter-spacing: -0.055em;
  font-weight: 500;
}



.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
  font-size: 0.95rem;
}

.hero-links a {
  text-underline-offset: 5px;
}

.hero-image-wrap {
  margin: 0;
}

.hero-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 58% center;
  display: block;
}

figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.feature {
  padding: 120px 0 135px;
  border-top: 1px solid var(--rule);
}

.feature-image-wrap {
  margin: 0;
}

.feature-image {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.feature-meta {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(44px, 7vw, 110px);
  margin-top: 34px;
}

.feature-meta h2,
.split-content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.feature-meta p {
  margin: 12px 0 0;
  color: var(--muted);
}

blockquote {
  margin: 0;
}

.press-quotes {
  display: grid;
  gap: 28px;
  max-width: 850px;
}

.press-quote {
  margin: 0;
}

.press-quote blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 1.75vw, 2.05rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.press-quote figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.split-section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(44px, 7vw, 110px);
  padding: 110px 0;
  border-top: 1px solid var(--rule);
}

.split-content p {
  max-width: 770px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 1.4vw, 1.3rem);
  line-height: 1.65;
}

.contact {
  padding-bottom: 150px;
}

footer {
  width: var(--page);
  margin: 0 auto;
  padding: 28px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.85rem;
}

footer a {
  color: inherit;
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 36px, 760px);
  }

  .site-header {
    min-height: 72px;
  }


  .site-nav {
    gap: 17px;
    font-size: 0.83rem;
  }

  .site-nav a:nth-child(2),
  .site-nav a:nth-child(3) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 68px 0 90px;
  }

  h1 {
    font-size: clamp(4.5rem, 18vw, 7rem);
  }

  

  .hero-image {
    aspect-ratio: 5 / 4;
    object-position: 56% center;
  }

  .feature {
    padding: 85px 0 95px;
  }

  .feature-meta,
  .split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-section {
    padding: 80px 0;
  }

  .feature-meta {
    margin-top: 26px;
  }

  .press-quote blockquote {
    font-size: clamp(1.3rem, 5.5vw, 1.85rem);
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    padding: 22px 0 18px;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .site-nav a:first-child,
  .site-nav a:nth-child(4) {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-image {
    aspect-ratio: 1 / 1.08;
  }

  .feature-image {
    aspect-ratio: 1 / 1;
    object-position: 52% center;
  }

  footer {
    flex-direction: column;
  }
}


.casting-meta {
  margin-top: 42px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.casting-meta p {
  margin: 0;
}

.casting-meta p + p {
  margin-top: 5px;
}

.work-project {
  padding-top: 135px;
}

.feature-meta--simple {
  grid-template-columns: 1fr;
  max-width: 760px;
}

@media (max-width: 900px) {
  .casting-meta {
    margin-top: 30px;
  }

  .work-project {
    padding-top: 95px;
  }
}


.apprentice-note {
  max-width: 760px;
  align-self: start;
}

.apprentice-note p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.6;
}

.apprentice-note .apprentice-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plays-section {
  padding: 58px 0 100px;
  border-top: 1px solid var(--rule);
}

.plays-heading {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: baseline;
  justify-content: start;
  padding-bottom: 24px;
}

.plays-heading .section-kicker {
  margin: 0;
}

.plays-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 2.6vw, 2.75rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.plays-count {
  color: var(--muted);
  font-size: 0.9rem;
}

.plays-list {
  border-bottom: 1px solid var(--rule);
}

.play-entry {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(44px, 7vw, 110px);
  padding: 30px 0 34px;
  border-top: 1px solid var(--rule);
}

.play-title h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 2.5vw, 3rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.play-meta {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.play-details {
  max-width: 900px;
}

.play-logline {
  margin: 0;
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.play-note {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.play-image-wrap {
  margin: 30px 0 0;
}

.play-image {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.request-script {
  display: inline-block;
  margin-top: 42px;
  font-size: 0.95rem;
  text-underline-offset: 5px;
}

.request-script:hover {
  opacity: 0.58;
}

@media (max-width: 900px) {
  .plays-section {
    padding: 46px 0 82px;
  }

  .plays-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 24px;
  }

  .plays-heading h2 {
    white-space: normal;
  }

  .play-entry {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .play-entry {
    padding: 32px 0 36px;
  }

  .play-image {
    aspect-ratio: 4 / 3;
  }
}


.directing-section {
  padding: 110px 0 72px;
  border-top: 1px solid var(--rule);
}

.directing-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.directing-image-wrap {
  margin: 0;
}

.directing-image {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.directing-copy h2,
.directing-text-credit h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 4.4vw, 5.2rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.directing-byline {
  margin: 20px 0 0;
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  line-height: 1.5;
}

.directing-logline {
  margin: 34px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.45vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.directing-note {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.directing-text-credit {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(32px, 5vw, 72px);
  margin-top: 48px;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}

.directing-text-credit h2 {
  font-size: clamp(2rem, 3.1vw, 3.7rem);
}

.directing-text-copy {
  align-self: start;
}

.directing-text-credit .directing-byline {
  margin-top: 0;
}

.directing-text-credit .directing-note {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .directing-section {
    padding: 80px 0 95px;
  }

  .directing-feature,
  .directing-text-credit {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .directing-text-credit {
    margin-top: 42px;
    padding-top: 24px;
  }

  .directing-image {
    aspect-ratio: 4 / 3;
  }
}


.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
}

.contact-details a {
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  text-underline-offset: 5px;
}

.contact-details a:hover {
  opacity: 0.58;
}


.twirly-image-wrap {
  width: min(72%, 700px);
  margin: 22px 0 0;
  overflow: hidden;
}

.twirly-image {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 52%;
}

.empty-box-image-wrap {
  width: min(60%, 500px);
  margin: 24px 0 0;
  overflow: hidden;
}

.empty-box-image {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 52% 36%;
}

.play-note strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .twirly-image-wrap {
    width: min(86%, 700px);
  }

  .empty-box-image-wrap {
    width: min(72%, 500px);
  }
}

@media (max-width: 560px) {
  .twirly-image-wrap,
  .empty-box-image-wrap {
    width: 100%;
  }

  .twirly-image {
    aspect-ratio: 4 / 3;
  }

  .empty-box-image {
    aspect-ratio: 4 / 3;
    object-position: 52% 32%;
  }
}


/* --- COMPACT ACTING WORK BRANCH --- */
/* Keeps the landing hero intact, but makes the acting portfolio entries
   behave more like the directing / playwriting material: image and text
   visible together rather than giant full-screen production stills. */

.acting-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  grid-template-areas:
    "kicker kicker"
    "image meta";
  gap: 26px clamp(42px, 6vw, 92px);
  align-items: start;
  padding: 74px 0 84px;
}

.acting-feature > .section-kicker {
  grid-area: kicker;
  margin-bottom: 4px;
}

.acting-feature > .feature-image-wrap {
  grid-area: image;
}

.acting-feature > .feature-meta {
  grid-area: meta;
  display: block;
  margin-top: 0;
  max-width: 680px;
  align-self: center;
}

.acting-feature .feature-image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.acting-feature .feature-meta h2 {
  font-size: clamp(2.45rem, 3.7vw, 4.5rem);
}

.acting-feature .feature-meta > div:first-child > p {
  margin-bottom: 28px;
}

.acting-feature .press-quotes {
  margin-top: 30px;
  gap: 22px;
}

.acting-feature .press-quote blockquote {
  font-size: clamp(1.2rem, 1.45vw, 1.72rem);
  line-height: 1.25;
}

.acting-feature .apprentice-note {
  margin-top: 30px;
}

.acting-feature .apprentice-note p {
  font-size: clamp(0.94rem, 1.05vw, 1.05rem);
}

/* Alternate the middle project so the page has some rhythm. */
.acting-feature:nth-of-type(even) {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  grid-template-areas:
    "kicker kicker"
    "meta image";
}

/* Keep captions quieter and close to the image. */
.acting-feature figcaption {
  max-width: 92%;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .acting-feature,
  .acting-feature:nth-of-type(even) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "image"
      "meta";
    gap: 24px;
    padding: 64px 0 74px;
  }

  .acting-feature .feature-image {
    aspect-ratio: 4 / 3;
  }

  .acting-feature .feature-meta {
    max-width: 100%;
  }

  .acting-feature .press-quotes,
  .acting-feature .apprentice-note {
    margin-top: 24px;
  }
}


.twirly-copy {
  align-self: start;
}

.twirly-credit .directing-byline {
  margin-top: 20px;
}

.twirly-credit .directing-note {
  margin-top: 14px;
}

.twirly-credit .twirly-image-wrap {
  width: 100%;
  margin: 0;
}

.twirly-credit .twirly-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 52%;
}

@media (max-width: 900px) {
  .twirly-credit {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .twirly-credit .twirly-image {
    aspect-ratio: 4 / 3;
  }
}


/* Empty Box: award-forward, compact two-column opener for playwriting */
.empty-box-feature {
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding: 30px 0 34px;
}

.empty-box-copy {
  display: grid;
  grid-template-columns: minmax(190px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.empty-box-feature .empty-box-image-wrap {
  width: 100%;
  max-width: 300px;
  margin: 0;
  justify-self: end;
  align-self: start;
}

.empty-box-feature .empty-box-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 52% 32%;
}

.empty-box-feature .empty-box-video {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
  border: 0;
}

.empty-box-feature .empty-box-image-wrap figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.empty-box-feature .play-note {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .empty-box-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .empty-box-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .empty-box-feature .empty-box-image-wrap {
    width: min(62%, 320px);
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .empty-box-feature .empty-box-image-wrap {
    width: 100%;
  }
}


.project-meta {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.play-production-meta {
  margin-top: 5px;
}


/* PLAY FEATURE ROWS — DOG DREAM / IHMWN */
.play-feature-row {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: start;
  padding: 34px 0 38px;
}

.play-feature-copy {
  align-self: start;
}

.play-feature-copy .play-details {
  margin-top: 24px;
}

.play-feature-image-wrap {
  margin: 0;
  width: 100%;
}

.play-feature-image {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.dog-dream-feature .play-feature-image {
  object-position: center;
}

.ihmwn-feature .play-feature-image {
  object-position: center 48%;
}

.compact-play-entry {
  min-height: 0;
}

.compact-play-entry .play-details:empty {
  display: none;
}

@media (max-width: 900px) {
  .play-feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .play-feature-image {
    aspect-ratio: 4 / 3;
  }
}


/* FINAL BALANCE: Twirly image slightly smaller than Last Call */
.twirly-credit {
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
}

.twirly-credit .twirly-image-wrap {
  width: 100%;
  max-width: 620px;
  justify-self: start;
}

@media (max-width: 900px) {
  .twirly-credit {
    grid-template-columns: 1fr;
  }

  .twirly-credit .twirly-image-wrap {
    max-width: 100%;
  }
}


/* Alternating playwriting feature rows */
.play-feature-row--reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
}

.play-feature-row--reverse .play-feature-image-wrap {
  grid-column: 1;
}

.play-feature-row--reverse .play-feature-copy {
  grid-column: 2;
}

@media (max-width: 900px) {
  .play-feature-row--reverse {
    grid-template-columns: 1fr;
  }

  .play-feature-row--reverse .play-feature-image-wrap,
  .play-feature-row--reverse .play-feature-copy {
    grid-column: 1;
  }
}


.hero-recent {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 480px;
  margin-top: 44px;
  color: var(--muted);
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  line-height: 1.45;
}

.hero-recent-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-recent {
    margin-top: 34px;
  }
}


/* V25 — clearer medium changes */
.directing-section > .section-kicker,
.plays-heading > .section-kicker {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 600;
  letter-spacing: 0.11em;
}

.directing-section > .section-kicker {
  margin-bottom: 34px;
}

/* V25 — quiet three-row Recent block */
.hero-recent {
  gap: 5px;
  max-width: 530px;
  margin-top: 42px;
}

.hero-recent-label {
  margin-bottom: 4px;
}

.hero-recent-row {
  color: var(--muted);
  font-size: clamp(0.75rem, 0.86vw, 0.86rem);
  line-height: 1.35;
}

.hero-recent-company strong {
  color: var(--ink);
  font-weight: 500;
}

/* V25 — Twirly Zone is deliberately more compact than Last Call */
.twirly-credit {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 0.78fr);
  gap: clamp(36px, 5vw, 72px);
  margin-top: 42px;
  padding-top: 26px;
  align-items: start;
}

.twirly-credit h2 {
  font-size: clamp(2rem, 2.85vw, 3.35rem);
}

.twirly-credit .twirly-image-wrap {
  width: 100%;
  max-width: 540px;
  margin: 0;
  justify-self: start;
}

.twirly-credit .twirly-image {
  width: 100%;
  display: block;
  aspect-ratio: 1.69 / 1;
  object-fit: cover;
  object-position: center;
}

.twirly-credit .directing-byline {
  margin-top: 14px;
}

.twirly-logline {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.16;
  letter-spacing: -0.012em;
}

.twirly-credit .directing-note {
  max-width: 600px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.twirly-media-note {
  margin-top: 16px !important;
}

.twirly-hive-note {
  margin-top: 6px !important;
}

.dog-dream-note {
  margin-top: 16px;
  max-width: 520px;
}

@media (max-width: 900px) {
  .twirly-credit {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .twirly-credit .twirly-image-wrap {
    max-width: 620px;
  }

  .directing-section > .section-kicker {
    margin-bottom: 28px;
  }
}


.footer-minimal {
  justify-content: flex-end;
}


/* V28 — simplified Playwriting heading */
.playwriting-heading {
  color: var(--ink);
  margin-bottom: 34px;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 600;
  letter-spacing: 0.11em;
}

/* V28 — compact ending/contact treatment */
.contact {
  padding: 58px 0 64px;
}

.contact .split-content h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.7rem);
}

.contact .contact-details {
  gap: 8px;
  margin-top: 20px;
}

.contact .contact-details a {
  font-size: clamp(1rem, 1.16vw, 1.14rem);
}

.contact .contact-script-link {
  margin-top: 12px;
  font-size: 0.9rem;
}

.footer-minimal {
  padding-top: 20px;
  padding-bottom: 28px;
}

@media (max-width: 900px) {
  .playwriting-heading {
    margin-bottom: 26px;
  }

  .contact {
    padding: 48px 0 54px;
  }
}
