/**
 * Product Section Styles
 * Featured product (left) + Slider (right)
 */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.card-3 {
  display: flex;
  flex-direction: column;
  margin: 0;
  align-items: center;
  min-width: 0;
  align-items: stretch;
  height: 100%;
}

.card-3 img {
  width: 100%;
  height: 340.8px; /* Fixed height */
  object-fit: cover; /* Crops to fit without distortion */
  display: block;
  border: 1px solid #CACBCC;
}

.card-3 h3 {
  flex-grow: 1; 
  display: flex;
  width: 100%;
  min-height: 59px;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  align-items: center;
  text-transform: uppercase;
  justify-content: center;
  margin: 0;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #CACBCC;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
}

.card-3 ul {
  margin: 0;
  padding-left: 20px;
}

.card-3 ul li {
  font-size: 0.95rem;
}

.capability_3_content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #5B5B5C;
}

.capability_3_title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
}

.divider {
  height: 1px;
  background: #ccc;
}

/* Responsive */
@media (max-width: 1439px) {
  .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
    column-gap: 24px;
  }

  .card-3 img {
    height: 254.4px;
  }
}

@media (max-width: 1023px) {
  .card-3 img {
    height: 192px;
  }
}

@media (max-width: 767px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 20px;
  }

  .card-3 img {
    height: 145.35px;
  }

  .card-3 h3 {
    min-height: 48px;
    font-size: 16px;
  }
}

.card-4 {
  flex: 1 1 100%;
  width: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.card-4 img {
  width: 100%;
  object-fit: cover; /* Crops to fit without distortion */
  display: block;
}
