/* main.css — Minimal layout styled to match the reference */

@import url('https://fonts.googleapis.com/css2?family=Afacad:wght@400;500;600;700&display=swap');

:root {
  --page-max: 1440px;
  /* increased ~20% */
  --gap: 24px;
  --grid-gap: 16px;
  /* tighter spacing between projects */
  --muted: #6b7280;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

html {
  background: transparent;
  scrollbar-gutter: stable
}

body {
  margin: 0;
  color: #111;
  font-family: 'Afacad', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Header */
.site-header {
  position: static;
  top: auto;
  z-index: auto;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.1) blur(6px);
  padding: var(--gap) 0;
  /* equal top/bottom spacing for items */
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto
}

.site-nav {
  display: flex;
  gap: 18px;
  font-weight: 500
}

.site-nav a {
  color: var(--muted)
}

.site-nav a.is-active {
  color: #111;
  font-weight: 600
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: inherit
}

/* Content wrapper */
.container,
.content {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 8px
}

.content {
  margin-top: 32px;
  margin-bottom: 60px
}

/* Project details: reset UA margins so images align flush */
.project figure {
  margin: 0
}

.project #media,
.project #media>* {
  margin: 0;
  padding: 0
}

.project img,
.project video,
.project iframe {
  display: block
}

/* Rich text classes for project render */
.font-afacad {
  font-family: 'Afacad', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif
}

.font-afacad-600 {
  font-family: 'Afacad', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600
}

.font-afacad-700 {
  font-family: 'Afacad', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700
}

.align-left {
  text-align: left
}

.align-center {
  text-align: center
}

.align-right {
  text-align: right
}

/* Grid: two columns per row */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap)
}

.projects-loading .cta {
  opacity: 0;
  pointer-events: none
}

.tile {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
  border-radius: 0
}

.tile:hover img,
.tile:focus-visible img {
  transform: scale(1.07);
}

.tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--overlay, transparent);
  color: var(--overlay-text, #fff);
  opacity: 0;
  transition: opacity .25s ease
}

.tile:hover .tile__overlay,
.tile:focus-visible .tile__overlay {
  opacity: 1
}

.tile__overlay .title {
  font-family: 'Afacad', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 26px;
  line-height: 1.1
}

.tile:hover .tile__overlay .title,
.tile:focus-visible .tile__overlay .title {
  font-size: 28px;
}

.tile__overlay .tags {
  color: rgba(255, 255, 255, .85);
  font-size: 14px
}

/* Project nav */
.project-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px
}

.project-nav__link {
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 1.3em;
  letter-spacing: normal
}

.project-nav__link.slot-hover {
  font-weight: 700
}

.project-nav .slot-text {
  letter-spacing: 0
}

.project-nav__link .nav-swap {
  display: block;
  position: relative;
  height: 1.4em
}

.project-nav__link .nav-swap__inner {
  display: block;
  position: relative
}

.project-nav__link .nav-label,
.project-nav__link .nav-title {
  display: block;
  height: 1.4em;
  line-height: 1.4em;
  font-weight: 700;
  transition: transform .35s ease, opacity .35s ease
}

.project-nav__link .nav-title {
  font-weight: 400;
}

.project-nav__link .nav-title {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(0)
}

.project-nav__link:hover .nav-label,
.project-nav__link:focus-visible .nav-label {
  transform: translateY(-15px)
}

.project-nav__link:hover .nav-title,
.project-nav__link:focus-visible .nav-title {
  opacity: 1;
  transform: translateY(15px)
}

@media (max-width:900px) {
  .project-nav {
    flex-direction: column
  }
}

.tile__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0 14px;
  border-bottom: 1px solid #eee;
  margin-bottom: var(--grid-gap)
}

.tile__meta .title {
  font-weight: 600
}

.tile__meta .tags {
  color: var(--muted);
  font-size: 14px
}

/* Simple page placeholder */
.page {
  max-width: 800px
}

.page h1 {
  margin: 0 0 8px;
  font-size: 28px
}

.page p {
  margin: 0;
  color: var(--muted)
}

/* Responsive */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr
  }
}

/* About page */
.about {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 8px
}

.about-row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin: 72px 0
}

.about-row--reverse {
  flex-direction: row-reverse
}

.about-media {
  flex: 0 0 510px;
  max-width: 510px
}

.about-media img {
  width: 100%;
  height: auto;
  display: block
}

.about-text {
  flex: 1 1 auto;
  font-family: 'Afacad', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  position: relative
}

.about-text::before {
  content: '';
  position: absolute;
  inset: -20px;
  z-index: 0
}

.about-text>* {
  position: relative;
  z-index: 1
}

.about-text h1 {
  font-size: 96px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0
}

.about-text p {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  margin: 16px 0 0;
  letter-spacing: 0
}

.about-text--brush {
  cursor: default
}

.about-text--brush h1,
.about-text--brush p {
  --brush-size: 100px;
  --brush-x: -9999px;
  --brush-y: -9999px;
  color: transparent;
  background-image:
    radial-gradient(circle var(--brush-size) at var(--brush-x) var(--brush-y), #FF5E00 0%, rgba(255, 94, 0, 0.7) 35%, rgba(17, 17, 17, 0) 55%),
    linear-gradient(#111, #111);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px
}

.about-social a {
  display: inline-flex
}

.about-social .social-icon {
  width: 28px;
  height: 28px;
  display: block;
  background-color: #111;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color .2s ease
}

.about-social a:hover .social-icon,
.about-social a:focus-visible .social-icon {
  background-color: #FF5E00
}

.social-icon--instagram {
  -webkit-mask-image: url("../assets/images/insta.png");
  mask-image: url("../assets/images/insta.png")
}

.social-icon--linkedin {
  -webkit-mask-image: url("../assets/images/linkedin.png");
  mask-image: url("../assets/images/linkedin.png")
}

.social-icon--behance {
  -webkit-mask-image: url("../assets/images/behance.png");
  mask-image: url("../assets/images/behance.png")
}

.about-cta {
  display: flex;
  justify-content: center;
  margin: 120px 0 40px;
  text-align: center
}

.about-cta p {
  font-size: 20px;
  color: #111
}

.about-link {
  text-decoration: underline
}

/* Footer */
.site-footer {
  border-top: 1px solid #eee;
  padding: 24px 0;
  margin-top: 60px
}


.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.site-footer .about-social {
  margin-top: 0
}

.site-footer .footer-email {
  order: 1
}

.site-footer .about-social {
  order: 2
}

.site-footer .about-social .social-icon {
  width: 20px;
  height: 20px
}

.site-footer .about-social a:hover .social-icon,
.site-footer .about-social a:focus-visible .social-icon {
  background-color: #111
}

.site-footer a {
  color: inherit
}

.site-footer .footer-email {
  display: inline-flex
}

.slot-text {
  display: inline-flex;
  align-items: baseline
}

.slot-text .slot {
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2em;
  vertical-align: baseline;
}

.slot-text .slot__track {
  display: block;
  height: 3.6em;
  transform: translateY(0);
  transition: transform .2s linear;
}

.slot-text .slot__cell {
  display: block;
  height: 1.2em;
  line-height: 1.2em;
}

.slot-hover:hover .slot__track,
.slot-hover:focus-visible .slot__track {
  animation: footer-slot 0.2s linear;
  animation-delay: var(--slot-delay, 0s);
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

@keyframes footer-slot {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1.2em);
  }

  100% {
    transform: translateY(-2.4em);
  }
}

@media (max-width:900px) {
  .site-footer .container {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap
  }

  .work-panel__footer {
    padding-top: 31px;
  }
}

@media (max-width: 1100px) {
  .about-row {
    gap: 40px
  }

  .about-media {
    flex-basis: 425px;
    max-width: 425px
  }
}

@media (max-width: 900px) {
  .about-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin: 48px 0
  }

  .about-row--reverse {
    flex-direction: column
  }

  .about-media {
    flex-basis: auto;
    max-width: none;
    width: 100%
  }

  .about-text p {
    font-size: 20px
  }

  .about-cta {
    margin: 80px 0 24px
  }
}

/* Interactive button hovers for dashboard/selector */
button[data-action],
.btn[data-action],
.pe-btn[data-action] {
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

button[data-action="edit"]:hover,
.btn[data-action="edit"]:hover,
.pe-btn[data-action="edit"]:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}

button[data-action="delete"]:hover,
.btn[data-action="delete"]:hover,
.pe-btn[data-action="delete"]:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: #fff;
}

/* CTA: Let's Work Together swap on hover */
.cta {
  display: flex;
  justify-content: center;
  margin: 80px 0 60px
}

.cta-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: scale(.85);
  transform-origin: center top
}

.cta-swap {
  cursor: pointer;
  font-family: 'Afacad', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 45px;
  line-height: 1.2;
  height: 1.2em;
  overflow: hidden;
}

.cta-swap__inner {
  display: block;
  transform: translateY(0%);
  transition: transform 1.6s cubic-bezier(.22, 1, .36, 1);
}

.cta-swap span {
  display: block;
}

.cta-box:hover .cta-swap__inner,
.cta-box:focus-within .cta-swap__inner {
  transform: translateY(-50%);
}

/* CTA underline that swaps horizontally with a gap, matching text width */
:root {
  --line-gap: 65px;
}

.cta-line {
  width: 100%;
  height: 2px;
  position: relative;
  overflow: hidden
}

.cta-line__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 1.6s cubic-bezier(.22, 1, .36, 1);
}

.cta-line__inner span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #111;
}

.cta-line__inner span:nth-child(2) {
  left: calc(-100% - var(--line-gap));
}

.cta-box:hover .cta-line__inner,
.cta-box:focus-within .cta-line__inner {
  transform: translateX(calc(100% + var(--line-gap)));
}

@media (max-width: 900px) {
  .cta-swap {
    font-size: 25px
  }
}

/* Work Together panel */
.work-panel {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none
}

.work-panel__sheet {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 80vh;
  background: #B1684D;
  color: #111;
  transform: translateY(-100%);
  transition: transform var(--panel-dur, 1.1s) var(--panel-ease, cubic-bezier(.4, 0, .2, 1)), border-bottom-left-radius var(--panel-dur, 1.1s) var(--panel-ease, cubic-bezier(.4, 0, .2, 1)), border-bottom-right-radius var(--panel-dur, 1.1s) var(--panel-ease, cubic-bezier(.4, 0, .2, 1));
  will-change: transform, border-radius;
  overflow: hidden;
  box-sizing: border-box;
  padding-bottom: var(--bottom-safe, 0);
  /* Panel-local muted */
  --muted: #89745D;
  /* bottom arc curve (vertical) */
  --curve-ry: 30%;
  /* safe padding for content above curve (kept constant to avoid jumps) */
  --bottom-safe: 12vh;
  border-bottom-left-radius: 50% var(--curve-ry);
  border-bottom-right-radius: 50% var(--curve-ry);
}

.work-panel.is-open .work-panel__sheet {
  --curve-ry: 0%;
}

.work-panel__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  height: 20vh;
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease-in;
}


.page-about .wp-close-box {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 8px 16px;
  backdrop-filter: blur(6px);
}

.work-panel.is-open {
  pointer-events: auto
}

.work-panel.is-open .work-panel__sheet {
  transform: translateY(0);
  --panel-dur: 1.2s;
  --panel-ease: cubic-bezier(.2, .9, .1, 1)
}

.work-panel.is-sent .work-panel__inner {
  display: none
}

.work-panel.is-sent .work-panel__thanks {
  display: flex
}

.work-panel.is-open .work-panel__footer {
  opacity: 1;
  visibility: visible;
}

.wp-close-box {
  position: relative;
  z-index: 5;
}

.work-panel.is-cooling .work-panel__footer {
  pointer-events: none
}

.work-panel__thanks {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.work-panel__thanks p {
  font-weight: 600;
  font-size: clamp(2.1rem, 4.9vw, 2.8rem);
  line-height: 1.25;
  white-space: pre-wrap;
}

/* Typing caret */
.work-panel__thanks p.typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #111;
  margin-left: 4px;
  vertical-align: -2px;
  animation: caret-blink 1s steps(1, end) infinite;
}

.work-panel__thanks p.typing-done::after {
  animation: none;
  opacity: 0;
}

@keyframes caret-blink {

  0%,
  49% {
    opacity: 1
  }

  50%,
  100% {
    opacity: 0
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .work-panel__thanks p.typing::after {
    animation: none;
    opacity: 0
  }
}

.work-panel__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 8px 32px;
  display: grid;
  gap: 0
}

.work-panel__inner h2 {
  font-family: 'Afacad', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 8px 0 26px;
  font-size: 28px;
  line-height: 1.25
}

.work-panel__inner .sep {
  height: 0;
  border-top: 1px solid #111;
  margin: 16px 0
}

.work-panel__inner .field {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 16px 0;
  position: relative
}

.work-panel__inner .field:not(.field--message) {
  min-height: 24px;
  padding: 8px 0
}

.work-panel__inner label {
  font-weight: 500
}

.work-panel__inner input,
.work-panel__inner textarea {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  padding: 8px 10px;
  outline: none;
  margin: 0
}

.work-panel__inner .field:not(.field--message) input {
  height: 28px;
  line-height: 28px;
  padding: 0 10px;
  align-self: center
}

.work-panel__inner .field>div {
  position: relative
}

.work-panel__inner .field:not(.field--message)>div {
  gap: 0
}

.work-panel__inner textarea {
  resize: vertical;
  min-height: 140px;
  padding-top: 0;
}

.work-panel__inner input::placeholder,
.work-panel__inner textarea::placeholder {
  color: #8A4F3A;
  opacity: 1
}

/* Cross-browser placeholder color within the panel */
.work-panel__sheet input::-webkit-input-placeholder {
  color: #8A4F3A;
  opacity: 1
}

.work-panel__sheet textarea::-webkit-input-placeholder {
  color: #8A4F3A;
  opacity: 1
}

.work-panel__sheet input::-moz-placeholder {
  color: #8A4F3A;
  opacity: 1
}

.work-panel__sheet textarea::-moz-placeholder {
  color: #8A4F3A;
  opacity: 1
}

.work-panel__sheet input:-ms-input-placeholder {
  color: #8A4F3A;
  opacity: 1
}

.work-panel__sheet textarea:-ms-input-placeholder {
  color: #8A4F3A;
  opacity: 1
}

.work-panel__sheet input::-ms-input-placeholder {
  color: #8A4F3A;
  opacity: 1
}

.work-panel__sheet textarea::-ms-input-placeholder {
  color: #8A4F3A;
  opacity: 1
}


.work-panel__inner .field--error input,
.work-panel__inner .field--error textarea {
  outline: 1px solid #b00020;
  outline-offset: 2px
}

.work-panel__inner .wp-err {
  font-size: 12px;
  color: #b00020;
  min-height: 20px;
  line-height: 20px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
}

.work-panel__inner .wp-err:empty {
  visibility: hidden
}

.work-panel__inner .pill {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #fff;
  padding: 16px 24px;
  border-radius: 24px;
  font-weight: 600;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  user-select: none;
  transition: color .35s ease
}

.work-panel__inner .pill::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  z-index: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1.2s cubic-bezier(.16, .84, .44, 1)
}

.work-panel__inner .pill>* {
  position: relative;
  z-index: 1
}

.work-panel__inner .pill:hover,
.work-panel__inner .pill:focus-visible {
  color: #111 !important;
  outline: none
}

.work-panel__inner .pill:hover::before,
.work-panel__inner .pill:focus-visible::before {
  transform: translate(-50%, -50%) scale(60);
  transition-duration: 3s;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1)
}

/* Rounded tooltip (floating, non-clipped) */
.copy-tooltip {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -100%) translateY(6px);
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 9999px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  z-index: 1000;
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
  pointer-events: none
}

.copy-tooltip.show {
  opacity: 1;
  transform: translate(-50%, -100%) translateY(0)
}

/* Custom tooltip for copy pill */
/* Floating tooltip (via JS), positioned relative to viewport */
/* removing custom tooltip styles to use native title */
.work-panel__inner .actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  position: sticky;
  bottom: calc(var(--bottom-safe, 0px) - 182px);
  z-index: 3
}

.work-panel__inner .wp-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 24px;
  padding: 21px 24px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 720px;
  transition: color .35s ease;
}

.work-panel__inner .wp-btn::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  z-index: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1.2s cubic-bezier(.16, .84, .44, 1);
}

.work-panel__inner .wp-btn>span {
  position: relative;
  z-index: 1
}

.work-panel__inner .wp-btn:hover,
.work-panel__inner .wp-btn:focus-visible {
  color: #111 !important
}

.work-panel__inner .wp-btn:hover::before,
.work-panel__inner .wp-btn:focus-visible::before {
  transform: translate(-50%, -50%) scale(60);
}

.work-panel__inner .field--message {
  align-items: flex-start;
  padding: 16px 0;
}

.wp-close {
  appearance: none;
  background: transparent;
  border: 0;
  color: #111;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  cursor: pointer
}

/* Close hover swap: "Close" -> "X" */
.wp-close {
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2;
}

.wp-close__inner {
  display: block;
  transform: translateY(0%);
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.wp-close__inner span {
  display: block;
}

.wp-close:hover .wp-close__inner,
.wp-close:focus-visible .wp-close__inner {
  transform: translateY(-50%);
}

/* Close underline animation (matches CTA style) */
.wp-close-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.wp-close-line {
  width: 100%;
  height: 1px;
  overflow: hidden
}

.wp-close-line__inner {
  width: 200%;
  height: 100%;
  display: flex;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.wp-close-line__inner span {
  width: 50%;
  height: 100%;
  background: #111;
  display: block
}

.wp-close:hover+.wp-close-line .wp-close-line__inner,
.wp-close:focus-visible+.wp-close-line .wp-close-line__inner {
  transform: translateX(calc(100% + var(--line-gap)));
}

@media (max-width: 900px) {
  .work-panel__inner {
    padding: 16px 8px 24px
  }

  .work-panel__inner .field {
    grid-template-columns: 90px 1fr
  }
}
