/* Information/About Section */
.information-section {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 40px;
}

.info-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-notice-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.info-notice-wrap > .issca-event-notice {
  margin-inline: auto;
}

.info-container .about-badge {
  margin-bottom: 24px;
}

.about-title .highlight {
  color: var(--event-color);
  background: none;
}

.info-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.info-left-side {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease 0.2s,
    transform 0.8s ease 0.2s;
}

.info-left-side.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-right-side {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease 0.3s,
    transform 0.8s ease 0.3s;
}

.info-right-side.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

.info-bullet-list .checkmark-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex-shrink: 0;
  fill: var(--event-color);
  margin-top: 4px;
}

.info-bullet-list li span {
  flex: 1;
}

.info-media-card {
  width: 100%;
}

.info-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.info-media-figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}

.info-media-figure img,
.info-media-figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-media-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info-top-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.info-top-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-bottom-row {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease 0.2s,
    transform 0.8s ease 0.2s;
}

.info-bottom-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-description {
  max-width: 100%;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  white-space: pre-line;
}

@media (max-width: 920px) {
  .info-content-row {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .info-bullet-list li {
    font-size: 16px;
  }

  .info-description {
    font-size: 16px;
  }
}
