/* Ideas Page Specific Styles */
#idea-generation {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4vh;
  min-height: 80vh;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Hero */
.invent-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  margin-bottom: 2.5rem;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
.invent-hero__copy {
  text-align: left;
}
.invent-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #888;
  margin-bottom: 0.6rem;
  padding: 0;
}
.invent-title {
  text-align: left !important;
  font-size: 2.4rem !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.invent-lede {
  font-size: 1.05rem;
  color: #5e6066;
  line-height: 1.6;
  margin-top: 1rem;
  padding: 0 !important;
}
.invent-hero__art {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}
.invent-hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Feature cards */
.invent-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
}
.invent-feature {
  background: #fafafb;
  border: 1px solid #ececef;
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
}
.invent-feature h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  margin-bottom: 0.85rem;
}
.invent-feature .ul {
  font-size: 0.98rem;
  color: #2c2c33;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .invent-hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .invent-title { font-size: 1.8rem !important; }
  .invent-features { grid-template-columns: 1fr; }
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.iframe-container {
  margin-top: 2rem;
  width: 100%;
  max-width: 1200px;
  height: 700px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.ul {
  text-align: left;
  font-size: 1rem;
  padding-left: 2rem;
  padding-right: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1250px) {
  .iframe-container {
    width: 95%;
    height: 600px;
  }
}

@media (max-width: 900px) {
  .iframe-container {
    width: 100%;
    height: 600px;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  #idea-generation {
    padding-top: 2vh;
  }

  .iframe-container {
    height: 500px;
    margin-top: 1rem;
  }

  .ul {
    padding-left: 2rem;
  }

  p, .ul {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .iframe-container {
    height: 400px;
  }
}