/* =========================================================
   W-PILETESTING — WORK PAGE
   Responsive + Mobile-First Safe
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
  --primary: #1a5555;
  --primary-dark: #123f3f;
  --primary-deep: #0d3030;
  --primary-light: #e0eeee;

  --navy: #0b1f33;
  --navy-dark: #071522;
  --navy-light: #173a55;

  --white: #ffffff;
  --off-white: #f7f9f9;
  --surface: #eef3f3;

  --text: #14252d;
  --text-light: #63727a;
  --muted: #8a989e;

  --gray-400: #9aa9ad;
  --gray-500: #687780;
  --gray-600: #52636b;

  --line: #dce6e4;
  --line-dark: #c8d5d5;

  --shadow-sm: 0 8px 24px rgba(11, 31, 51, 0.06);
  --shadow-md: 0 18px 50px rgba(11, 31, 51, 0.10);
  --shadow-lg: 0 30px 80px rgba(11, 31, 51, 0.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --container: 1240px;
  --header-h: 88px;
  --header-h-mobile: 76px;
}

/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Noto Sans Thai", "Manrope", system-ui, -apple-system, sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

::selection {
  background: var(--primary);
  color: #fff;
}

/* =========================================================
   UTILITIES
========================================================= */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.mono {
  font-family: "DM Mono", ui-monospace, monospace;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* =========================================================
   REVEAL — Fallback-first (เนื้อหาแสดงได้เสมอ)
   JS จะเพิ่ม .js-ready บน <html> เพื่อเปิดใช้ animation
========================================================= */
.reveal {
  /* ค่าเริ่มต้น: มองเห็นได้ปกติ (สำหรับ no-JS / JS error) */
  opacity: 1;
  transform: none;
}

/* เมื่อ JS โหลดสำเร็จ → ซ่อนเพื่อรอ animate */
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

html.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* เคารพผู้ใช้ที่ปิด animation */
@media (prefers-reduced-motion: reduce) {
  html.js-ready .reveal,
  html.js-ready .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 610px;
  padding: 170px 0 100px;
  background: linear-gradient(
    115deg,
    rgba(7, 21, 34, 0.98),
    rgba(13, 48, 48, 0.95)
  );
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero .eyebrow {
  color: #8dc4c4;
}

.hero h1 {
  margin-top: 22px;
  max-width: 800px;
  font-family: "Manrope", "Noto Sans Thai", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: #83bbbb;
}

.hero-description {
  max-width: 690px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.9;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
}

/* =========================================================
   INTRO
========================================================= */
.intro {
  padding: 105px 0 55px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 80px;
  align-items: end;
}

.intro h2 {
  margin-top: 15px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.intro-copy {
  max-width: 700px;
  color: var(--text-light);
  font-size: 16px;
}

.intro-copy strong {
  color: var(--primary);
}

/* =========================================================
   FILTER / SEARCH
========================================================= */
.work-controls {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  padding: 18px 0;
  background: rgba(247, 249, 249, 0.94);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 9px 15px;
  background: #fff;
  color: var(--text-light);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.search-box {
  position: relative;
  flex: 0 0 250px;
}

.search-box input {
  width: 100%;
  height: 42px;
  padding: 0 15px 0 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  background: #fff;
  color: var(--text);
  font-size: 13px;
}

.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 85, 85, 0.08);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 16px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
}

/* =========================================================
   WORKS GRID
========================================================= */
.works-section {
  padding: 65px 0 120px;
}

.works-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.works-header h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.works-count {
  color: var(--muted);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  white-space: nowrap;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: #c6d8d8;
  box-shadow: var(--shadow-md);
}

.work-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--primary-deep);
  flex-shrink: 0;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.placeholder-code {
  position: relative;
  z-index: 2;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.placeholder-title {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.work-type {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  padding: 6px 9px;
  background: rgba(7, 21, 34, 0.84);
  color: #fff;
  border-radius: 5px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.work-image-count {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
}

.view-image {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.25s ease;
  font-size: 18px;
}

.work-card:hover .view-image,
.work-card:focus-within .view-image {
  opacity: 1;
  transform: translateY(0);
}

.work-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-number {
  color: var(--primary);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.work-title {
  margin-top: 8px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.work-location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--text-light);
  font-size: 13px;
}

.work-location span {
  color: var(--primary);
}

.work-description {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
   NO RESULTS
========================================================= */
.no-results {
  display: none;
  padding: 80px 20px;
  text-align: center;
  border: 1px dashed var(--line-dark);
  border-radius: var(--radius-md);
  background: #fff;
}

.no-results.show {
  display: block;
}

.no-results-icon {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.no-results h3 {
  margin-top: 12px;
  color: var(--navy);
}

.no-results p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

/* =========================================================
   CTA
========================================================= */
.cta {
  position: relative;
  padding: 85px 0;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -160px;
  top: -230px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta h2 {
  max-width: 680px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.cta p {
  max-width: 600px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
  color: var(--primary);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: var(--navy-dark);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 70px;
  padding: 75px 0;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.9;
}

.footer-title {
  font-size: 12px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #72c8b4;
}

.footer-contact {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 2;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright,
.footer-code {
  color: rgba(255, 255, 255, 0.25);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.05em;
}

/* =========================================================
   MODAL & CAROUSEL
========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(4, 13, 20, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: min(1050px, 100%);
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
}

.modal.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-image {
  position: relative;
  min-height: 520px;
  background: var(--primary-deep);
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  min-height: 520px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  color: var(--navy);
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.2s,
    transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-dots span.active {
  background: #fff;
  transform: scale(1.2);
}

.carousel-dots span:hover {
  background: rgba(255, 255, 255, 0.8);
}

.modal-image .image-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
}

.modal-image .image-placeholder::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.modal-info {
  padding: 45px 35px;
  overflow-y: auto;
}

.modal-type {
  color: var(--primary);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.modal-info h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: 29px;
  line-height: 1.35;
}

.modal-info p {
  margin-top: 20px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.9;
}

.modal-location {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-light);
  font-size: 13px;
}

.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 20;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.modal-close:hover {
  background: #fff;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1050px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: var(--header-h-mobile);
  }

  .container {
    width: calc(100% - 32px);
  }

  /* HERO */
  .hero {
    min-height: 560px;
    padding: 130px 0 70px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-meta {
    gap: 8px;
    margin-top: 28px;
  }

  .hero-meta span {
    font-size: 9px;
    padding: 6px 10px;
  }

  /* INTRO */
  .intro {
    padding: 70px 0 40px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .intro h2 {
    font-size: 30px;
  }

  .intro-copy {
    font-size: 15px;
  }

  /* FILTER */
  .work-controls {
    top: var(--header-h-mobile);
    padding: 14px 0;
  }

  .controls-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .filter-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-buttons::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
    padding: 8px 13px;
  }

  .search-box {
    flex: auto;
    width: 100%;
  }

  /* WORKS */
  .works-section {
    padding: 45px 0 90px;
  }

  .works-header {
    align-items: start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }

  .works-header h2 {
    font-size: 26px;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-image {
    height: 220px;
  }

  /* แสดงปุ่ม view-image เสมอ บนมือถือ (ไม่มี hover) */
  .view-image {
    opacity: 1;
    transform: none;
  }

  /* CTA */
  .cta {
    padding: 65px 0;
  }

  .cta-inner {
    align-items: start;
    flex-direction: column;
    gap: 25px;
  }

  .cta h2 {
    font-size: 26px;
  }

  /* FOOTER */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 55px 0;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* MODAL */
  .modal {
    padding: 12px;
  }

  .modal-content {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .modal-image {
    min-height: 260px;
    max-height: 320px;
  }

  .carousel-container,
  .carousel-slide {
    min-height: 260px;
    max-height: 320px;
  }

  .modal-info {
    padding: 28px 22px 32px;
  }

  .modal-info h2 {
    font-size: 22px;
  }

  .modal-close {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-description {
    font-size: 14px;
  }

  .work-image {
    height: 200px;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}