/* Shared styles for all more_info components */

/* Common Section Styles */
.moreinfo-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
}

.moreinfo-section-grey {
  background-color: #f5f5f5;
}

.moreinfo-section-transparent {
  background-color: transparent;
}

.moreinfo-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Common Typography */
.moreinfo-title {
  font-size: 4.5rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 60px 0;
  line-height: 1.2;
}

.moreinfo-title-pink {
  color: #DA6D9E;
}

.moreinfo-title-blue {
  color: #004aad;
}

.moreinfo-title-center {
  text-align: center;
}

.moreinfo-title-left {
  text-align: center;
}

.moreinfo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.moreinfo-left,
.moreinfo-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.moreinfo-text {
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  color: #333;
  margin: 0;
  text-align: justify;
}

.moreinfo-quote {
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.moreinfo-quote em {
  font-style: italic;
}

/* Common Highlight Colors */
.moreinfo-highlight-blue {
  color: #344bf4;
  font-weight: 700;
}

.moreinfo-highlight-pink {
  color: #DA6D9E;
  font-weight: 700;
}

.moreinfo-highlight-darkblue {
  color: #004aad;
  font-weight: 700;
}

.moreinfo-bold {
  font-weight: 700;
  color: #333;
}

/* Common Image Styles */
.moreinfo-image-container {
  margin-top: 20px;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.moreinfo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Common Footer */
.moreinfo-footer {
  font-size: 1.6rem;
  font-family: 'Montserrat', sans-serif;
  color: #DA6D9E;
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding-top: 20px;
}

.moreinfo-footer strong {
  font-weight: 700;
}

.moreinfo-footer a,
.moreinfo-source-link {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.moreinfo-footer a:hover,
.moreinfo-source-link:hover {
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .moreinfo-title {
    font-size: 4rem;
    margin-bottom: 40px;
    text-align: center !important; /* Center titles on smaller screens */
  }

  .moreinfo-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .moreinfo-text,
  .moreinfo-quote {
    font-size: 1.25rem;
  }
  
  .moreinfo-footer {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .moreinfo-section {
    padding: 60px 20px;
  }

  .moreinfo-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-align: center !important; /* Center titles on smaller screens */
  }

  .moreinfo-content {
    gap: 30px;
  }

  .moreinfo-text,
  .moreinfo-quote {
    text-align: left;
    font-size: 1.2rem;
  }
  
  .moreinfo-footer {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .moreinfo-title {
    font-size: 2.8rem;
    text-align: center !important; /* Center titles on smaller screens */
  }

  .moreinfo-text,
  .moreinfo-quote {
    font-size: 1.1rem;
  }
  
  .moreinfo-footer {
    font-size: 1.2rem;
  }
}

