.holding-carousel {
  padding: 72px 0 64px;
  background: #f4f4f4;
}

.holding-carousel .title {
  text-align: center;
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 40px;
}

.holding-carousel .swiper {
  max-width: 1140px;
  overflow: hidden;
}

.holding-carousel .slide {
  height: auto;
}

.holding-carousel .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: stretch;
}

.holding-carousel .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 259px;
  height: 259px;
  background: var(--color-white);
  border-radius: 20px;
  padding: 40px;
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  box-sizing: border-box;
}

.holding-carousel .card:hover {
  transform: scale(1.03);
}

.holding-carousel .logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.holding-carousel .logo {
  width: 70%;
  max-width: 340px;
  height: auto;
  max-height: 179px;
  object-fit: contain;
  transition: max-height 0.3s ease-in-out;
}

.holding-carousel .text-container {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 8px;
  flex: 1;
  justify-content: center;
  min-height: 0;
}

.holding-carousel .card:hover .logo {
  max-height: 88px;
}

.holding-carousel .card:hover .text-container {
  display: flex;
}

.holding-carousel .text-container p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.holding-carousel .swiper-pagination {
  position: static !important;
  margin-top: 28px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.holding-carousel .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 6px !important;
  background: var(--color-primary);
  opacity: 0.2;
}

.holding-carousel .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
  transform: none;
}

@media (max-width: 767px) {
  .holding-carousel {
    padding: 48px 0 40px;
  }

  .holding-carousel .title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .holding-carousel .row {
    grid-template-columns: 1fr;
  }

  .holding-carousel .card {
    height: auto;
    min-height: 220px;
    padding: 28px 24px;
  }

  .holding-carousel .text-container {
    display: flex;
  }

  .holding-carousel .card:hover {
    transform: none;
  }
}
