/* Cam Kết Section Styles */

.cam-ket {
  position: relative;
  width: 100%;
  background-image: url("../images/backgrounds/bg-4.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 2.5rem 1rem;
}

.cam-ket__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.cam-ket__title {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cam-ket__title img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.cam-ket__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.cam-ket__grid img {
  width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  .cam-ket {
    padding: 2rem 0.75rem;
  }

  .cam-ket__grid {
    gap: 0.75rem;
  }
}

