/*
 Theme Name: Hello Elementor Child
 Theme URI: https://elementor.com/
 Description: Child Theme for Hello Elementor
 Author: Gerico Agency
 Template: hello-elementor
 Version: 1.0.0
 Text Domain: hello-elementor-child
*/


/* === GLOBAL === */
html, body {
  overflow-x: clip;
}

:root { overflow-y: scroll; }



/* ==========================================================
   TEXT-ANIMATION-01 // Scroll Animation // text + svg + text
   ========================================================== */

.text-animation-01-about {
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  background-color: #FDC52E;
  text-align: center;
}

.text-animation-01-services .text-animation-01-services-header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.text-animation-01-about h1,
.text-animation-01-services-copy h1 {
  font-size: 5vw;
  line-height: 1em;
}

.text-animation-01-services {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 10vh;
}

.text-animation-01-services-header {
  position: relative;
  width: 100%;
  padding: 0 2rem;
  background-color: #FDC52E;
  will-change: transform;
}

.text-animation-01-services-header:nth-child(1),
.text-animation-01-services-header:nth-child(3) {
  transform: translateX(100%) translateY(0%);
}

.text-animation-01-services-header:nth-child(2) {
  transform: translateX(-100%) translateY(0%);
  z-index: 2;
}

.text-animation-01-services-copy {
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 155vh;
  padding: 2rem 2rem 25vh 2rem;
  text-align: center;
}

.text-animation-01-animate-text {
  position: relative;
  width: 80%;
  margin: 0 auto;
  color: #D39700;
  --clip-value: 100%;
}

.text-animation-01-animate-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #000000;
  clip-path: inset(0 0 var(--clip-value) 0);
  will-change: clip-path;
}

@media (max-width: 1000px) {
  .text-animation-01-about h1,
  .text-animation-01-services-copy h1 {
    font-size: clamp(1.2rem, 9vw, 2.5rem);
    letter-spacing: 0rem;
  }

  .text-animation-01-animate-text {
    width: 100%;
  }

  .text-animation-01-services {
    height: 40vh;
    margin-top: 8vh;
    justify-content: flex-start;
    padding-top: 2vh;
  }

  .text-animation-01-services-header {
    padding: 0 0;
    transform: scale(1.4) translateX(100%);
  }

  .text-animation-01-services-header:nth-child(2) {
    transform: scale(1.4) translateX(-100%);
  }

  .text-animation-01-services-copy {
    margin-top: 100vh;
    padding: 1.5rem 1.5rem 15vh 1.5rem;
  }

  .text-animation-01-about {
    padding: 2rem 1rem;
  }
}


/* ==========================================================
   TEXT-ANIMATION-02 // text horizontal
   ========================================================== */

.text-animation-02 {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 4vh;
  color: white;
  font-family: 'Inter Tight', sans-serif;
}

.text-animation-02__container {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.text-animation-02__text {
  display: flex;
  width: max-content;
  white-space: nowrap;
  gap: 4vw;
  padding-left: 100vw;
}

.text-animation-02 .heading-xl {
  font-size: clamp(2.5rem, 13vw, 13rem);
  font-weight: 600;
  line-height: 1.1;
}

.text-animation-02__box {
  width: 100%;
  padding: 0 2vw;
  color: white;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1.2rem);
  line-height: 1.8;
  text-align: center;
}

.text-animation-02__box p {
  margin: 0;
}


/* ==========================================================
   PORTFOLIO-ANIMATION-01 // Image + Image
   ========================================================== */

.portfolio-animation-01-work-item {
  height: 100svh;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 25px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect width="100" height="100" rx="5" ry="5" fill="white"/></svg>') 0/100% 100% no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect width="100" height="100" rx="5" ry="5" fill="white"/></svg>') 0/100% 100% no-repeat;
}

.portfolio-animation-01-img {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 25%, 75% 40%, 100% 100%, 0% 100%);
  z-index: 0;
}

.portfolio-animation-01-work-item .portfolio-animation-01-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portfolio-animation-01-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.portfolio-animation-01-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  text-align: center;
}

.portfolio-animation-01-name h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 7vw;
  font-weight: 550;
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  line-height: 1;
  margin: 0;
}

.portfolio-animation-01-name h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 2rem;
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  line-height: 1;
  margin: 0;
}

.portfolio-animation-01-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.portfolio-animation-01-subtitle {
  font-size: 2vw;
  color: #fff;
  font-family: "TheSilverEditorial-Italic", sans-serif;
  line-height: 1.2;
}

.portfolio-animation-01-link {
  display: inline-block;
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  font-size: clamp(0.625rem, 1.04vw, 1rem);
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 0.5em 1.5em;
  letter-spacing: 0.03em;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.portfolio-animation-01-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

@media (max-width: 1000px) {
  .portfolio-animation-01-name h1 {
    font-size: 9vw;
  }

  .portfolio-animation-01-subtitle {
    font-size: 5vw;
  }

  .portfolio-animation-01-link {
    font-size: clamp(0.6rem, 2.5vw, 0.9rem);
  }
}


/* ==========================================================
   MASK-TRANSITION-01 // Scroll Animation // Text + svg + Image
   ========================================================== */

.mask-transition-01 {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #101010;
  color: #fff;
  overflow: hidden;
}

.mask-transition-01-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 300vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(5%);
  will-change: transform;
}

.mask-transition-01-row {
  width: 100%;
  padding: 2rem;
  display: flex;
  gap: 2rem;
}

.mask-transition-01-img {
  flex: 1;
  aspect-ratio: 5 / 7;
  overflow: hidden;
}

.mask-transition-01 .mask-transition-01-img img {
  opacity: 0.5;
  filter: saturate(0);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mask-transition-01-mask-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-mask: url('/wp-content/uploads/2025/10/spotlight-mask.svg') center/contain no-repeat;
  mask: url('/wp-content/uploads/2025/10/spotlight-mask.svg') center/contain no-repeat;
  overflow: hidden;
  -webkit-mask-size: 0%;
  mask-size: 0%;
  z-index: 10;
}

.mask-transition-01-mask-img {
  width: 100%;
  height: 100%;
  transform-origin: center;
}

.mask-transition-01-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 50%;
  z-index: 1;
}

.mask-transition-01-header h1 {
  text-transform: uppercase;
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.02rem;
}

.mask-transition-01-word {
  opacity: 0;
  display: inline-block;
}

@media (max-width: 1000px) {
  .mask-transition-01-header {
    width: calc(100% - 4rem);
  }

  .mask-transition-01-header h1 {
    font-size: 4rem;
  }

  .mask-transition-01-images {
    width: 200vw;
    left: -25vw;
  }
}


/* ==========================================================
   MASK-TRANSITION-02 // Scroll Animation // Text + svg + Image
   ========================================================== */

section.spotlight {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-color: #1A1A1A;
  color: #fff;
  overflow: hidden;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

section.spotlight *,
section.spotlight *::before,
section.spotlight *::after {
  box-sizing: border-box;
}

.spotlight .header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 50vw;
  z-index: 1;
}

.spotlight .header h1 {
  font-size: 6rem;
  font-weight: 900;
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  line-height: 0.85;
  letter-spacing: -0.02rem;
}

.spotlight-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 300vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(5%);
  will-change: transform;
}

.spotlight .row {
  width: 100%;
  padding: 2rem;
  display: flex;
  gap: 2rem;
}

.spotlight .img {
  flex: 1;
  aspect-ratio: 5 / 7;
  overflow: hidden;
}

section.spotlight .img img {
  opacity: 0.5;
  filter: saturate(0);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.mask-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-mask: url('/wp-content/uploads/2025/10/spotlight-mask.svg') center/contain no-repeat;
  mask: url('/wp-content/uploads/2025/10/spotlight-mask.svg') center/contain no-repeat;
  overflow: hidden;
  -webkit-mask-size: 0%;
  mask-size: 0%;
  z-index: 10;
}

.mask-container .mask-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform-origin: center;
  position: absolute;
  top: 0;
  left: 0;
}

.spotlight .mask-word {
  opacity: 0;
  display: inline-block;
}

@media (max-width: 1000px) {
  section.spotlight {
    min-height: 100vh;
    height: auto;
    padding: 0;
  }

  .spotlight .header {
    width: 90vw;
    left: 50%;
    top: 32vh;
    transform: translate(-50%, 0);
  }

  .spotlight .header h1 {
    font-size: 2.5rem;
    padding: 0 0.5rem;
  }

  .spotlight-images {
    width: 100vw;
    left: 0;
    height: auto;
    flex-direction: column;
    gap: 1rem;
    transform: none;
  }

  .spotlight .row {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    width: 100vw;
  }

  .spotlight .img {
    aspect-ratio: 1 / 1.2;
    width: 100%;
    margin-bottom: 1rem;
  }

  section.spotlight .img img {
    border-radius: 10px;
  }

  .mask-container {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    top: 0;
    left: 0;
    overflow: hidden;
  }

  .mask-container .mask-img {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .spotlight .header h1 {
    font-size: 1.4rem;
    padding: 0 0.2rem;
  }

  .spotlight .row,
  .spotlight-images {
    gap: 0.5rem;
  }
}


/* ==========================================================
   MASK-TRANSITION-03 // Scroll Animation // Text + Image + Text
   Prefixed with .mask-transition-03 to avoid global conflicts
   ========================================================== */

.mask-transition-03 section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.mask-transition-03 .outro {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d7dbd2;
  color: #0f0f0f;
  text-align: center;
  padding: 4rem;
  position: relative;
  z-index: 5;
}

.mask-transition-03 .spotlight {
  background-color: #0f0f0f;
  color: #d7dbd2;
  perspective: 2500px;
  perspective-origin: 50% 50%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.mask-transition-03 .spotlight-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.mask-transition-03 .spotlight-images,
.mask-transition-03 .spotlight-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.mask-transition-03 .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, -1000px);
  width: 500px;
  height: 350px;
  will-change: transform;
  overflow: hidden;
  z-index: 1;
}

.mask-transition-03 .spotlight .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.mask-transition-03 .spotlight-cover-img {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.mask-transition-03 .spotlight .spotlight-cover-img img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  will-change: transform;
  border-radius: 0;
}

.mask-transition-03 .spotlight-intro-header,
.mask-transition-03 .spotlight-outro-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  color: #d7dbd2;
  z-index: 20;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.mask-transition-03 .spotlight-intro-header h1,
.mask-transition-03 .spotlight-outro-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: 0em;
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
}

.mask-transition-03 .spotlight-outro-header h1 {
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

@media (max-width: 1000px) {
  .mask-transition-03 .img {
    width: 280px;
    height: 180px;
  }

  .mask-transition-03 .spotlight .spotlight-cover-img img {
    width: 100vw;
    height: 100vh;
  }

  .mask-transition-03 .spotlight-intro-header,
  .mask-transition-03 .spotlight-outro-header {
    width: 85%;
    font-size: 2.2rem;
  }
}


/* ==========================================================
   VIDEOFRAME-SCROLLING-01 // Text + Background + Dashboard
   ========================================================== */

.videoframe-scrolling-01 {
  position: relative;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background-color: black;
}

.videoframe-scrolling-01 canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100svh !important;
  z-index: 0;
  pointer-events: none;
}

.videoframe-scrolling-01-header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: white;
  font-family: 'Inter Tight', sans-serif;
}

.header1 {
  top: 45%;
}

.header2 {
  top: 45%;
}

.videoframe-scrolling-01-header h1 {
  font-size: 5vw;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  opacity: 0;
  transform: scale(1) translateY(0);
  will-change: transform, opacity;
}


/* ==========================================================
   GERICO-CLIP-TEXT // Reusable scroll clip-path text reveal
   ========================================================== */

.gerico-clip-text {
  --clip-color-base: #D39700;
  --clip-color-reveal: #1a1a1a;
  --clip-start: top 100%;
  --clip-end: bottom 60%;
}

.gerico-clip-text [data-clip-text] {
  position: relative;
  color: var(--clip-color-base);
  --clip-value: 100%;
}

.gerico-clip-text [data-clip-text]::before {
  content: attr(data-clip-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--clip-color-reveal);
  clip-path: inset(0 0 var(--clip-value) 0);
  will-change: clip-path;
  pointer-events: none;
}


/* ==========================================================
   GERICO-BG-CHANGE // Scroll background color transition
   ========================================================== */

.gerico-bg-change {
  --bg-from: #FDC52E;
  --bg-to: #1A1A1A;
  --bg-start: top bottom;
  --bg-end: top 40%;
}


/* ==========================================================
   GERICO-CHAR-REVEAL // SplitText character reveal from below
   ========================================================== */

.gerico-char-reveal {
  --char-duration: 0.8;
  --char-stagger: 0.03;
  --char-start: top 80%;
}

.gerico-char-reveal .line-wrapper {
  overflow: hidden;
}


/* ==========================================================
   GERICO-WORK-GRID // Portfolio grid for WORK page
   ========================================================== */

.gerico-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

.gerico-work-grid__card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: #161616;
  transition: transform 0.4s ease;
}

.gerico-work-grid__card:hover {
  transform: translateY(-5px);
}

.gerico-work-grid__media {
  aspect-ratio: 5 / 7;
  overflow: hidden;
}

.gerico-work-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gerico-work-grid__card:hover .gerico-work-grid__media img {
  transform: scale(1.05);
}

.gerico-work-grid__placeholder {
  width: 100%;
  height: 100%;
  background: #2a2a2a;
}

.gerico-work-grid__title {
  padding: 1.2rem 1rem;
  margin: 0;
  color: #fff;
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  text-transform: uppercase;
  line-height: 1.2;
}

@media (max-width: 1000px) {
  .gerico-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gerico-work-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/* ==========================================================
   HEADER MENU FIXES — Alignment
   ========================================================== */

/* --- Flex layout: convert buttons from absolute to flex items --- */

/* Container: keep center, add align-items */
.mdw-side-menu-area {
  align-items: center !important;
}

/* Push header down when admin bar is present (logged in) */
body.admin-bar .mdw-side-menu-area {
  top: 32px !important;
}

/* WORK button — from absolute to static, push left with margin */
.mdw-side-menu-area .mdw-side-menu-button {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-right: auto !important;
  order: 1;
}

/* Logo — stays centered */
.mdw-side-menu-area .site-logo,
.mdw-side-menu-area > .elementor-widget-theme-site-logo {
  order: 2;
}

/* LET'S TALK button — from absolute to static, push right with margin */
.mdw-side-menu-area .gerico-cta-button {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-left: auto !important;
  order: 3;
}

/* Panels — anchor to button positions, hidden when closed */
.mdw-side-menu-area .mdw-side-menu {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  transform-origin: top left !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.mdw-side-menu-area .gerico-cta-menu {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  transform-origin: top right !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Show panels when open */
.mdw-side-menu-area.menu-open .mdw-side-menu {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.mdw-side-menu-area.cta-open .gerico-cta-menu {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Swap panel ::before anchors: WORK from left, CTA from right */
.mdw-side-menu-area .mdw-side-menu:before {
  left: 0 !important;
  right: unset !important;
}
.mdw-side-menu-area:not(.menu-open) .mdw-side-menu:before {
  transform: translate(var(--button-left, 25px), var(--button-top, 25px)) !important;
}

.mdw-side-menu-area .gerico-cta-menu:before {
  right: 0 !important;
  left: unset !important;
}
.mdw-side-menu-area:not(.cta-open) .gerico-cta-menu:before {
  transform: translate(calc(-1 * var(--cta-button-right, 25px)), var(--cta-button-top, 25px)) !important;
}

/* --- End flex layout overrides --- */

.mdw-side-menu-area:not(.menu-open) .mdw-side-menu .e-con,
.mdw-side-menu-area:not(.menu-open) .mdw-side-menu .e-container {
  overflow: hidden !important;
}

/* Hide work-menu & shortcode content when side menu is closed */
.mdw-side-menu-area:not(.menu-open-instant) .mdw-side-menu .gerico-work-menu {
  opacity: 0;
  pointer-events: none;
}

.mdw-side-menu-area.menu-open-instant .mdw-side-menu .gerico-work-menu {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease 0.25s;
}

.mdw-side-menu-area .mdw-side-menu .e-con,
.mdw-side-menu-area .mdw-side-menu .e-container {
  align-items: flex-start !important;
}

.mdw-side-menu-area .mdw-side-menu .elementor-icon-list-items {
  text-align: left;
  width: 100%;
}

.mdw-side-menu-area .mdw-side-menu-social .elementor-icon-list-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
}

.mdw-side-menu-area .mdw-side-menu-social .elementor-icon-list-item {
  float: none;
}


/* ==========================================================
   GERICO-WORK-MENU // Project list inside header side menu
   ========================================================== */

.gerico-work-menu {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 0.9vw, 0.75rem);
  width: 100%;
}

.gerico-work-menu__item {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.875rem);
  text-decoration: none;
  padding: clamp(0.35rem, 0.7vw, 0.6rem) 0;
  border-bottom: 1px solid rgba(253, 197, 46, 0.12);
  transition: opacity 0.25s ease;
}

.gerico-work-menu__item:hover {
  opacity: 0.75;
}

.gerico-work-menu__thumb {
  width: clamp(2.5rem, 3.5vw, 3.2rem);
  height: clamp(2.5rem, 3.5vw, 3.2rem);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.gerico-work-menu__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gerico-work-menu__placeholder {
  width: 100%;
  height: 100%;
  background: #2a2a2a;
  border-radius: 8px;
}

.gerico-work-menu__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.gerico-work-menu__brand {
  display: inline-block;
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  font-size: clamp(0.5rem, 0.7vw, 0.65rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
  background: #E8734A;
  padding: 0.1em 0.45em;
  border-radius: 3px;
  line-height: 1.4;
  width: fit-content;
}

.gerico-work-menu__name {
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  font-size: clamp(0.8rem, 1.25vw, 1.1rem);
  color: #FDC52E;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gerico-work-menu__all {
  display: block;
  margin-top: clamp(0.5rem, 1vw, 0.875rem);
  font-family: "BaseNeueTrial-CondensedBlack", Sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: #FDC52E;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: clamp(0.4rem, 0.7vw, 0.6rem) 0;
  border-top: 1px solid rgba(253, 197, 46, 0.25);
  transition: opacity 0.25s ease;
}

.gerico-work-menu__all:hover {
  opacity: 0.7;
}