/* ===== WORK IN ACTION SECTION ===== */
.work-action-section {
  background-color: #f9f9f9;
  padding: 96px 0;
}

/* ===== SECTION HEADER ===== */
.work-action-header {
  display: flex;
  flex-direction: column;
  gap: 8px; /* 8px gap between heading and desc */
  margin-bottom: 40px; /* 40px gap between header and images */
}

.work-action-title {
  font-size: 36px;
  line-height: 125%;
  color: #181c20;
  font-weight: 700;
  letter-spacing: 0px;
  margin: 0;
}

.work-action-desc {
  font-size: 16px;
  line-height: 100%;
  color: #3e4a3c;
  margin: 0;
}

/* ===== IMAGES GRID ===== */
.work-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal halves */
  gap: 16px; /* 16px between left and right */
  align-items: stretch;
}

/* ===== LEFT: LARGE IMAGE ===== */
.work-action-left {
  height: 100%;
}

.work-img-large {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* ===== RIGHT: 2x2 GRID ===== */
.work-action-right {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  grid-template-rows: 1fr 1fr; /* 2 rows */
  gap: 16px;
}

.work-img-small {
  width: 100%;
  height: 100%;
  min-height: 224px;
}

/* ===== IMAGE PLACEHOLDER ===== */
.work-img-placeholder {
  background-color: #c8d8c9;
  border-radius: 16px;
  overflow: hidden;
}

/* ===== REAL IMAGE STYLES ===== */
.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .work-action-section {
    padding: 60px 0;
  }

  .work-action-title {
    font-size: 28px;
  }

  .work-img-large {
    min-height: 380px;
  }

  .work-img-small {
    min-height: 180px;
  }
}

/* Small Tablet */
@media (max-width: 768px) {
  .work-action-grid {
    grid-template-columns: 1fr; /* Stack left and right */
  }

  .work-img-large {
    min-height: 300px;
  }

  .work-img-small {
    min-height: 160px;
  }

  .work-action-header {
    margin-bottom: 28px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .work-action-section {
    padding: 48px 0;
  }

  .work-action-title {
    font-size: 24px;
  }

  .work-action-desc {
    font-size: 14px;
  }

  .work-img-large {
    min-height: 240px;
  }

  .work-action-right {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .work-img-small {
    min-height: 130px;
  }
}
