/* ==== See HR Cosmo in Action ==== */

.action-section {
  background-color: #ffffff;
}

.action-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
}

/* Card container */
.action-card {
  background-color: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

/* Image */
.action-image-wrapper {
  background-color: #ffffff;
}

.action-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Caption */
.action-caption {
  text-align: center;
  padding: 14px 18px 18px;
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
}

/* Responsive tweak */
@media (max-width: 767.98px) {
  .action-title {
    font-size: 1.9rem;
  }
}
