.v1-tu-custom-banner {
  position: relative;
  margin: 30px 0;
  overflow: hidden;
  min-height: 480px;
}

.v1-tu-custom-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.v1-tu-custom-banner__list {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.v1-tu-custom-banner__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: #fdf3e7;
  color: #222222;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.v1-tu-custom-banner__item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.v1-tu-custom-banner__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v1-tu-custom-banner__icon img {
  max-width: 46px;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.v1-tu-custom-banner__icon svg {
  width: 46px;
  height: 46px;
}

.v1-tu-custom-banner__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.v1-tu-custom-banner__description {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 4px;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .v1-tu-custom-banner__list { width: 60%; padding: 28px; }
  .v1-tu-custom-banner__title { font-size: 18px; }
}

@media (max-width: 767px) {
  .v1-tu-custom-banner { min-height: 360px; }

  .v1-tu-custom-banner__list {
    width: 100%;
    padding: 20px;
  }
  .v1-tu-custom-banner__item { padding: 16px 18px; }
}
