/**
 * Info List Block Styles
 * Polished to match "What's Next" sleek UI
 */

.info-list-block {
  margin-bottom: 6rem;
  padding: 0 1.5rem;
  background-color: transparent;
}

.info-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem; /* Increased gap for cleaner look */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
}

@media (min-width: 1024px) {
  .info-list-grid {
    grid-template-columns: 0.8fr 1fr;
  }
}

/* Image Side - Rounded & Sleek */
.info-list-image {
  position: relative;
  border-radius: 1rem; /* Standardized radius */
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 4px 6px -2px rgba(0, 0, 0, 0.02); /* Softer shadow */
}

.info-list-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}

.info-list-image:hover img {
  transform: scale(1.02); /* Subtle zoom interactivity */
}

/* Content Side */
.info-list-content {
  padding: 1rem 0;
}

.info-list-title {
  font-size: 2.5rem; /* Match section headers */
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.info-list-items {
  list-style-type: none; /* Remove default bullets for custom ones */
  padding-left: 0;
  color: #3a3a3a;
  font-size: 1.125rem; /* Slightly larger for readability */
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

.info-list-items li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem; /* Space for custom bullet */
}

/* Custom Orange Bullet */
.info-list-items li::before {
  content: "•";
  color: #ff6a13;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -0.2em;
  line-height: 1;
}

.info-list-items li strong {
  font-weight: 700;
  color: #0f172a; /* Darker navy for emphasis */
}

/* Bottom Row (Centered Description) */
.info-list-bottom-row {
  text-align: center;
  max-width: 937px;
  margin: 0 auto;
  color: #0f172a; /* Darker text for importance */
  font-size: 1.5rem;
  font-weight: 300; /* Lighter weight to look sleek */
  line-height: 1.4;
  padding: 1rem;
  background-color: #fff8e1; /* Subtle highlight background (Beige) */
  border-radius: 1rem;
  margin-bottom: 0;
}

.info-list-bottom-row p {
  margin-bottom: 0;
}
