/**
 * RunnyNoseColdPage Block Styles
 */

.runny__section {
  padding: 50px 0;
    background: linear-gradient(
            180deg,
            #ffffff 0%,
            #FCEDF4 70%
    );
  min-height: 60vh;
}

.runny__section .container {
  max-width: 1730px;
  margin: 0 auto;
  padding: 0 30px;
}

.runny__section__heading {
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #2c3f68;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.2;
}

.runny__section__container {
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.runny__section__container-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #2c3f68;
}

.runny__section__container-text p {
  margin-bottom: 20px;
  color: #2c3f68;
}

.runny__section__container-text p:last-child {
  margin-bottom: 0;
}

.runny__section__container-text ul,
.runny__section__container-text ol {
  margin: 20px 0;
  padding-left: 40px;
}

.runny__section__container-text li {
  margin-bottom: 12px;
}

.runny__section__container-text strong {
  font-weight: 700;
  color: var(--color);
}

.runny__section__container-text a {
  color: var(--color);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.runny__section__container-text a:hover {
  opacity: 0.8;
}
.runny__section__container {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 30px;
    border: 1px solid #F6D6E3;
}
.runny__section__container-text {
    font-size: 18px;
    line-height: 1.8;
}
.runny__section__container-text p {
    margin-bottom: 20px;
}
.runny__section__container-text ul,
.runny__section__container-text ol {
    margin: 20px 0;
    padding-left: 40px;
}
.runny__section__container-text li {
    margin-bottom: 12px;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .runny__section__heading {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .runny__section {
    padding: 30px 0;
    min-height: 40vh;
  }

  .runny__section .container {
    padding: 0 16px;
  }

  .runny__section__heading {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .runny__section__container {
    margin-top: 30px;
  }

  .runny__section__container-text {
    font-size: 16px;
  }

  .runny__section__container-text ul,
  .runny__section__container-text ol {
    padding-left: 30px;
  }
}

@media (max-width: 576px) {
  .runny__section {
    padding: 20px 0;
  }

  .runny__section__heading {
    font-size: 16px;
  }

  .runny__section__container-text {
    font-size: 12px;
  }

  .runny__section__container-text p {
    margin-bottom: 15px;
  }

  .runny__section__container-text ul,
  .runny__section__container-text ol {
    margin: 15px 0;
    padding-left: 20px;
  }

  .runny__section__container-text li {
    margin-bottom: 8px;
  }
}