.info-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  min-height: 0;
  height: 100%;
  display: flex;
  flex: 1 1 auto;
}

.info-hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  border-radius: 65px;
  border: 1px solid rgba(225, 242, 255, 0.711);
  overflow: hidden;
}

.info-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.177);
  pointer-events: none;
}

.info-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.info-glass {
  position: absolute;
  top: clamp(20px, 4vh, 50px);
  bottom: clamp(20px, 4vh, 50px);
  left: clamp(20px, 4vh, 50px);
  right: clamp(20px, 4vh, 50px);
  background: #eaf7ff71;
  backdrop-filter: blur(14px) saturate(1.2);
  border-radius: 45px;
  padding: clamp(18px, 2vw, 30px);
  text-align: center;
  color: #013f6c;
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  z-index: 2;
  overflow: auto;
  scrollbar-width: none;
}

.info-glass::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1366px), (max-height: 860px) {
  .info-hero {
    border-radius: 56px;
  }

  .info-glass {
    border-radius: 36px;
  }

  .info-title {
    font-size: clamp(20px, 1.8vw, 24px);
  }

  .info-text {
    font-size: clamp(13px, 1vw, 16px);
  }
}

.info-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.info-text {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.45;
  margin: 0;
  word-wrap: break-word;
}

@media (orientation: portrait) {
  .info-section {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .info-hero {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .info-glass {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    border-radius: 45px;
    aspect-ratio: 1 / 1;
    padding: 20px;
  }

  .info-title {
    font-size: 20px;
  }

  .info-text {
    font-size: 15px;
  }
}
