/* --- Base Styles --- */
.wrapperPPC {
  margin-top: 150px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.wrapperPPC .header {
  text-align: start;
  margin-bottom: 30px;
}



.wrapperPPC .header h1 {
    font-family: "Recoleta", serif;
    font-weight: 300;
    color: #082c6b;
    font-size: clamp(36px, 5vw, 50px);
    margin-bottom: 10px;
}
.wrapperPPC .header p {
    font-family: "Recoleta";
    font-weight: 200;
    font-size: 24px;
    color: #131921;
    opacity: 0.8;
    margin-bottom: 55px;
}



.main-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0;
}

/* --- Large Device (min-width: 1024px) --- */
@media screen and (min-width: 1024px) {
  .main-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1400px;
    margin: 0px auto;
  }
  .forFade {
    flex: 0 0 467px;
    position: relative;
  } 

  .content-column {
    height: 500px; 
    width: 467px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: none;
  }
  .content-column::-webkit-scrollbar {
    display: none;
  }

  .content-block {
    margin-bottom: 80px;
    padding-top: 20px;
    min-height: 250px; 
  }
  .content-block h2 {
    font-size: 32px;
    color: #082c6b;
    margin-bottom: 16px;
  }
  .content-block p {
    font-size: 18px;
    line-height: 1.75;
    color: #131921;
    width: 100%;
  }

  .mobile-only-box img {
    display: none;
  } 
  .image-column {
    flex: 1;
    position: sticky;
    top: 50px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .sticky-image-container img {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    transition: opacity 0.4s ease-in-out;
  }

  .fade-top,
  .fade-bottom {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 10;
    pointer-events: none;
  }
  .fade-top {
    top: 0;
    background: linear-gradient(to bottom, white, transparent);
  }
  .fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, white, transparent);
  }
}

/* --- Small Device (max-width: 1023px) --- */
@media screen and (max-width: 1023px) {
  .image-column,
  .fade-top,
  .fade-bottom {
    display: none;
  }
  .content-column {
    width: 100%;
    max-height: none;
    overflow: visible;
  }
  .content-block h2 {
    cursor: pointer;
    padding: 15px 0;
    font-size: 22px;
    color: #082c6b;
    margin: 0;
  }
  .mobile-only-box {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .content-block.active .mobile-only-box {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 20px;
  }
  .mobile-only-box img {
    width: 100%;
    border-radius: 8px;
    margin-top: 15px;
  }
}
