/* ============================================================
   MORE PROJECTS SECTION — getCredible Bento
   ============================================================ */

.more-projects-section {
  padding: 200px 320px 80px;
  box-sizing: border-box;
  background: linear-gradient(to bottom,
      #ffffff 0%,
      #ffffff 20%,
      #EDF0FF 50%,
      #ffffff 80%,
      #ffffff 100%);
}

@media (max-width: 1100px) {
  .more-projects-section {
    padding: 200px 192px 80px;
  }
}

@media (max-width: 768px) {
  .more-projects-section {
    padding: 56px 24px;
  }
}

/* ── Bento container ─────────────────────────────────────── */
.bento-getcredible {
  display: grid;
  grid-template-columns: 70fr 30fr;
  /* Default align-items:stretch makes both cells equal height.
     The left column's aspect-ratio drives the row height;
     the right column cell stretches to match automatically. */
  gap: 12px;
  max-width: 1200px;
  margin: 200px auto 0;
  border-radius: 24px;
  padding: 16px;
  box-sizing: border-box;
}

/* ── Columns ─────────────────────────────────────────────── */
.bento-col--right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* The grid cell already stretches to the row height (= left
     column's aspect-ratio height). Flex children below distribute
     that space with their flex-grow values. */
}

/* 35% */

/* ── Generic box ─────────────────────────────────────────── */
.bento-box {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

/* ── Left column box heights ─────────────────────────────── */
.bento-box--media {
  aspect-ratio: 705 / 568;
  flex-shrink: 0;
}

.bento-box--caption {
  height: 142px;
  flex-shrink: 0;
}

/* short ~21% */

/* ── Right column box heights ────────────────────────────── */
/* flex values distribute the column height: 3 : 2 : 5 */
.bento-box--kpi {
  flex: 3;
  background: #ffffff;
  overflow: hidden;
}

.bento-box--toggle {
  flex: 2;
}

.bento-box--contacts {
  flex: 5;
  position: relative;
}

.bento-contacts-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-contacts-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 48px 0 0;
  padding-bottom: 0;
  box-sizing: border-box;
  border-radius: clamp(12px, 2vw, 24px);
}

.bento-contacts-video-wrap {
  max-width: 400px;
  height: 100%;
  width: auto;
  aspect-ratio: 1510 / 1658;
  margin: 0 auto;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bento-contacts-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ── KPI image ───────────────────────────────────────────── */
.bento-kpi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* Shifts the image down to show more of the top content and crop from the bottom */
  display: block;
}

/* ── Toggle ──────────────────────────────────────────────── */
.toggle-label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #888;
  white-space: nowrap;
}

.toggle-label--active {
  color: #0c0c0c;
  font-weight: 600;
}

.toggle-switch {
  width: 44px;
  height: 26px;
  background: #6551FD;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 3px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.toggle-thumb {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.9;
}

/* ── Bento caption row ───────────────────────────────────── */
.bento-caption-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 0 16px;
  box-sizing: border-box;
}

.bento-caption-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* Mirrors .t-heading from testimonials, scaled for caption context */
.bento-caption-title {
  font-family: 'Libre Baskerville', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #333;
}

/* Exact replica of the .t-heading styling from testimonials section */
.bento-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.18;
  letter-spacing: 0.02px;
  color: #333;
  margin: 0;
}

@media (max-width: 768px) and (orientation: portrait) {
  .bento-getcredible {
    grid-template-columns: 1fr;
    /* Single column on mobile viewports */
    margin-top: 56px;
    padding: 12px;
  }

  .bento-col--right {
    height: auto !important;
    /* Overrides the JS-injected inline height style when columns stack */
    gap: 12px;
  }

  .bento-box--kpi {
    height: 130px;
  }

  .bento-box--toggle {
    height: auto;
    aspect-ratio: 3694 / 1080;
  }

  .bento-box--contacts {
    height: auto;
  }

  .bento-contacts-content {
    align-items: center;
    padding: 24px 0 0;
    padding-bottom: 0;
  }

  .bento-contacts-video-wrap {
    width: 160px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1510 / 1658;
  }

  .bento-caption-left {
    gap: 10px;
  }

  .bento-caption-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}







.bento-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Elegant, minimalist tags using Libre Baskerville italic & solid black */
.bento-tag {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: regular;
  font-size: 16px;
  /* 16px is perfect for elegant serif body details */
  font-weight: 400;
  line-height: 1.6;
  color: #3a3a3a;
  white-space: nowrap;
  cursor: default;
  user-select: none;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.bento-tag:hover {
  opacity: 0.6;
}

/* Elegant middle-dot divider */
.bento-tag:not(:last-child)::after {
  content: "·";
  margin: 0 10px;
  color: #000000;
  font-style: normal;
  font-weight: bold;
  display: inline-block;
}

/* ── Bento Action Button — 'View design process' (Pill fill morph) ── */
.bento-btn {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(16px, 1.5vw, 20px);
  color: #0f0f14;
  background: transparent;
  border: 1px solid #0f0f14;
  padding: 12px 22px 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease, border-color .25s ease, transform .1s ease;
}

.bento-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #6551FD;
  transform: translateX(-101%);
  transition: transform .5s cubic-bezier(.65, .05, .2, 1);
  z-index: -1;
}

.bento-btn:hover {
  color: #fff;
  border-color: #6551FD;
}

.bento-btn:hover::before {
  transform: translateX(0);
}

.bento-btn em {
  font-style: normal;
}

.bento-btn .arrow {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  /* SVG draws ↗; rotate 45° clockwise to rest at → */
  transform: rotate(45deg);
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}

.bento-btn:hover .arrow {
  /* Rotate back to the SVG's natural ↗ on hover */
  transform: rotate(0deg);
}

.bento-btn .arrow svg {
  width: 14px;
  height: 14px;
}

.bento-btn .arrow path {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Click: press down, then spring back */
.bento-btn:active {
  transform: scale(0.94);
  transition: transform .08s cubic-bezier(.4, 0, .6, 1), color .25s ease, border-color .25s ease;
}

@keyframes bento-btn-pop {
  0% {
    transform: scale(0.94);
  }

  60% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

.bento-btn.is-clicked {
  animation: bento-btn-pop .35s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

/* ── Open Source Button Modifier ── */
.bento-btn--open-source::before {
  background: #76ff9df0;
}

.bento-btn--open-source:hover {
  color: #0f0f14;
  border-color: #76ff9df0;
}

/* ── Extension Button Modifier ── */
.bento-btn--extension::before {
  background: #000000;
}

.bento-btn--extension:hover {
  color: #fff;
  border-color: #000000;
}

/* ── App Button Modifier ── */
.bento-btn--app::before {
  background: #3B4CE6;
}

.bento-btn--app:hover {
  color: #fff;
  border-color: #3B4CE6;
}

/* ── 3D Tilt ─────────────────────────────────────────────── */
.bento-box {
  will-change: transform;
  /* Spring-back transition when cursor leaves */
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (prefers-reduced-motion: reduce) {
  .bento-box {
    transition: none !important;
    transform: none !important;
  }
}

/* ============================================================
   BENTO VIEWPORT REVEAL SYSTEM
   ============================================================ */

/* ── Generic reveal base ── */
.bento-reveal {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

/* ── Bento Box reveal & tilt integration ── */
.bento-box.bento-reveal {
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.is-revealed .bento-box.bento-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Once revealed, reset transition delay to 0ms for active hover tracking
   and restore the default spring-back curve so there's NO lag on cursor leave */
.is-revealed .bento-box.bento-reveal:not(:hover) {
  transition:
    transform 0.65s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.65s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0ms;
}

/* ── Caption row reveal ── */
.bento-caption-row.bento-reveal {
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.is-revealed .bento-caption-row.bento-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  .bento-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   MORE PROJECTS SECTION — Paper Builder Bento
   ============================================================ */

.bento-paper-builder {
  display: grid;
  grid-template-columns: 30fr 70fr;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  /* Clear separation between bentos */
  border-radius: 24px;
  padding: 16px;
  box-sizing: border-box;
}

/* ── Columns ─────────────────────────────────────────────── */
.paper-bento-col--left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.paper-bento-col--right {
  display: block;
}

/* ── Box Heights ─────────────────────────────────────────── */
.bento-box--paper-winner {
  width: 100%;
  aspect-ratio: 160 / 144;
  flex-shrink: 0;
}

.bento-box--paper-logo-vertical {
  flex: 1;
}

.bento-box--paper-media {
  aspect-ratio: 1450 / 1080;
  width: 100%;
  height: auto;
  display: block;
}

/* ── Placeholders ────────────────────────────────────────── */
.bento-placeholder {
  width: 100%;
  height: 100%;
  background: #F4F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  color: #8E8E93;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.bento-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  animation: bento-shimmer 2.5s infinite;
}

@keyframes bento-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.bento-placeholder:hover {
  background: #EBEBEF;
}

.bento-placeholder--main {
  background: #ECECF0;
}

.bento-placeholder--main:hover {
  background: #E2E2E6;
}

.placeholder-text {
  letter-spacing: -0.01em;
}

/* ============================================================
   MORE PROJECTS SECTION — Lucida Bento
   ============================================================ */

.bento-lucida {
  display: grid;
  grid-template-columns: 75fr 25fr;
  gap: 12px;
  max-width: 1200px;
  margin: 200px auto 0;
  /* Clear separation between bentos */
  border-radius: 24px;
  padding: 16px;
  box-sizing: border-box;
}

/* ── Columns ─────────────────────────────────────────────── */
.lucida-bento-col--left {
  display: block;
}

.lucida-bento-col--right {
  display: block;
}

/* ── Box Heights ─────────────────────────────────────────── */
.bento-box--lucida-media {
  width: 100%;
  height: 100%;
}

.bento-box--lucida-right-media {
  width: 100%;
  height: 100%;
}

.bento-box--lucida-right-media video {
  object-position: center bottom;
}

/* ============================================================
   MORE PROJECTS SECTION — Mobbin Bento
   ============================================================ */

.bento-mobbin {
  display: grid;
  grid-template-columns: 171fr 520fr;
  gap: 12px;
  max-width: 1200px;
  margin: 200px auto 0;
  border-radius: 24px;
  padding: 16px;
  box-sizing: border-box;
}

/* ── Columns ─────────────────────────────────────────────── */
.mobbin-bento-col--left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobbin-bento-col--right {
  display: block;
}

/* ── Box Heights ─────────────────────────────────────────── */
.bento-box--mobbin-upper {
  width: 100%;
  aspect-ratio: 171 / 197;
  flex-shrink: 0;
}

.bento-box--mobbin-bottom {
  flex: 1;
}

.bento-box--mobbin-media {
  aspect-ratio: 520 / 360;
  width: 100%;
  height: auto;
  display: block;
}

/* ── Mobbin Card (WebGL 3D card) ── */
.bento-box--mobbin-bottom {
  flex: 1;
  position: relative;
  background: #06060a !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  overflow: hidden;
  isolation: isolate;
}

.mobbin-three {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.mobbin-glare {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: 8px;
  opacity: 0;
  transition: opacity .3s;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.09) 0%, transparent 60%);
}

.bento-box--mobbin-bottom:hover .mobbin-glare {
  opacity: 1;
}

.mobbin-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
}

.mobbin-stage>* {
  pointer-events: auto;
}

.mobbin-card-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.012em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .22s cubic-bezier(.34, 1.56, .64, 1), box-shadow .22s, background .22s;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  padding: clamp(10px, 1.2vw, 16px) clamp(14px, 2.2vw, 44px);
  border-radius: 999px;
  font-size: clamp(11px, 1.1vw, 15px);
  white-space: nowrap;
  font-weight: 600;
  color: #fff;
  background: rgba(18, 18, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.20);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.30);
  letter-spacing: -0.018em;
  text-decoration: none;
}

.mobbin-card-btn:focus-visible {
  outline: 2px solid #8aa8ff;
  outline-offset: 4px;
}

.mobbin-card-btn:hover {
  background: rgba(28, 28, 36, 0.90);
  transform: translateY(-2px);
}

.mobbin-card-btn:active {
  transform: scale(.96);
}

.mobbin-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  z-index: 3;
  pointer-events: none;
}



@media (max-width: 768px) and (orientation: portrait) {
  .bento-paper-builder {
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 0;
    padding: 12px;
  }

  .paper-bento-col--left {
    height: auto !important;
    gap: 12px;
    align-items: stretch;
  }

  .bento-box--paper-winner {
    width: 100%;
    height: auto;
    aspect-ratio: 160 / 144;
  }

  .bento-box--paper-logo-vertical {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 1080 / 1448;
  }

  /* ── Lucida Mobile ── */
  .bento-lucida {
    grid-template-columns: 1fr;
    margin-top: 56px;
    padding: 12px;
  }

  .lucida-bento-col--left {
    height: auto !important;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .bento-box--lucida-media {
    width: 100%;
    height: auto;
    aspect-ratio: 1754 / 1080;
  }

  .lucida-bento-col--right {
    height: auto !important;
    width: 100%;
    margin: 0;
  }

  .bento-box--lucida-right-media {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
  }

  /* ── Mobbin Mobile ── */
  .bento-mobbin {
    grid-template-columns: 1fr;
    margin-top: 56px;
    padding: 12px;
  }

  .mobbin-bento-col--left {
    height: auto !important;
    gap: 12px;
    align-items: stretch;
  }

  .bento-box--mobbin-upper {
    width: 100%;
    height: auto;
    aspect-ratio: 171 / 197;
  }

  .bento-box--mobbin-bottom {
    width: 100%;
    height: auto;
    aspect-ratio: 171 / 151;
  }

  .mobbin-bento-col--right {
    height: auto !important;
  }

  .bento-box--mobbin-media {
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 360;
  }
}

/* ── projects-container padding alignment with bento cards below ── */
#projects .projects-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 128px 0 128px !important;
  box-sizing: border-box;
}

#bento-projects-container {
  padding: 0 112px;
}

@media (max-width: 768px) {
  #projects .projects-container {
    padding: 36px 28px 0 28px !important;
  }

  #bento-projects-container {
    padding: 0 16px;
  }
}

/* ============================================================
   MORE PROJECTS LIST — 3-column card grid
   ============================================================ */

.more-projects-list-section {
  background: #ffffff;
}

.more-projects-list-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 128px 80px;
  box-sizing: border-box;
}

/* Tighten the title's bottom margin in this context */
.more-projects-title {
  font-size: clamp(18px, 1.8vw, 26px) !important;
  border-top: 1px solid #EBEBEB;
  padding-top: 40px;
  margin-bottom: 24px !important;
}

.more-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Card (link) ── */
.more-project-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
}

/* ── Thumbnail ── */
.more-project-thumbnail {
  width: 100%;
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.more-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.more-project-card:hover .more-project-img {
  transform: scale(1.05);
}

/* ── Hover overlay ── */
.more-project-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px 20px;
  box-sizing: border-box;
}

.more-project-card:hover .more-project-hover-overlay {
  opacity: 1;
}

/* ── Tags (bottom-left) ── */
.more-project-hover-tags {
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateY(6px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.more-project-card:hover .more-project-hover-tags {
  transform: translateY(0);
}

.mp-tag {
  display: inline-block;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  line-height: 1.4;
}

/* ── Label (bottom-right) ── */
.more-project-hover-label {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
  transform: translateY(6px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.more-project-card:hover .more-project-hover-label {
  transform: translateY(0);
}

/* ── Lift shadow on the bento-box ── */
.more-project-card:hover .bento-box {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* ── Coming soon card ── */
.more-project-card--coming-soon {
  cursor: default;
}

.more-project-card--coming-soon .more-project-img {
  filter: grayscale(30%);
}

@media (max-width: 768px) {
  .more-projects-list-container {
    padding: 56px 24px 72px;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .more-projects-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .bento-tag {
    font-size: 14px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .bento-contacts-video-wrap {
    border-radius: 8px 8px 0 0;
  }

  .bento-caption-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}