 

/* ============================================ 1. Our Commitment ============================================ */
.commit-section {
    position: relative;
    z-index: 3;
}

.commit-row {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 48px;
    align-items: center; 
}

.commit-label-card {
    background: linear-gradient(100deg, var(--grad-start) 0%, #44deb9 80%);
    border-radius: 14px;
    aspect-ratio: 1;
    padding: 40px 28px 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -120px;
    position: relative;
    z-index: 4;
}

.commit-label-card h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--base);
    line-height: 1.3;
}

.commit-text p {
    font-size: 18px;
    font-weight: bold;
    
    line-height: 2;
    margin: 0 0 24px;
}

.commit-imgs {
    display: flex;
    gap: 16px;
}

.commit-imgs .commit-img {
    width: 85px;
    height: 85px;
    flex-shrink: 0; 
    overflow: hidden;
    background: var(--gray-light);
}

.commit-imgs .commit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ci-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-mid);
    font-size: 36px;
    background: linear-gradient(135deg, #f0f0f0, var(--gray-border));
}

/* ============================================ 2. Commitment Swiper ============================================ */
.commit-slider {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .08) 80%, var(--gray-bg) 80%),
    var(--swiper-bg)
    center/cover no-repeat;
  padding: 400px 0 100px;
}
.commit-slider-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.commit-slider-inner .swiper {
    padding-bottom: 60px;
}

.commit-card {
    background: #fff;
    border-radius: 16px;
    padding:100px; 
    height: auto;
}

.commit-card .commit-tag {
    display: inline-block; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lime);
    margin-bottom: 16px;
}

.commit-card .commit-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 24px;
}

.commit-card .commit-header .cc-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
}

.commit-card .commit-header h2 {
    font-size: 60px;
    font-weight: 700;
    color: var(--base);
    line-height: 1.2;
}

.commit-card .commit-header .commit-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.commit-card .commit-header .commit-counter {
    font-size: 13px;
    font-weight: 700;
    color: var(--lime);
    white-space: nowrap;
}

.commit-card .swiper-button-prev,
.commit-card .swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  margin-top: 0;
  border-radius: 50%;
  border: 1px solid var(--base);
  background: transparent;
  color: var(--base);
  cursor: pointer;
  font-size: 16px;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
}
.commit-card .swiper-button-prev:hover,
.commit-card .swiper-button-next:hover {
  background: var(--base);
  color: var(--lime);
}

.commit-card .commit-divider {
    display: flex;
    height: 3px;
    margin: 24px 0;
    border-radius: 2px;
    overflow: hidden;
}

.commit-card .commit-divider .divider-lime {
    width: 20%;
    background: var(--lime);
}

.commit-card .commit-divider .divider-gray {
    width: 80%;
    background: var(--gray-light);
}

.commit-card .commit-body {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 2;
}