/* =========================================================
   Resources Section
   File: /assets/css/resources/resources_section.css
   - Background cover image + white overlay (80%)
   - Left content like your screenshot
   ========================================================= */

.gc-resources{
  position: relative;
  isolation: isolate;
  overflow: hidden;

  background-image: var(--gc-resources-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* White overlay at 80% */
.gc-resources::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.80);
  z-index: 0;
}

.gc-resources .container{
  position: relative;
  z-index: 1;
}

/* Content block (left side) */
.gc-resources__content{
  max-width: 760px;
  padding: var(--space-xl) 0;
}

/* Keep spacing consistent with your global system */
.gc-resources__title{
  color: var(--gc-dark-blue);
  margin: 0 0 var(--space-xs);
}

.gc-resources__text{
  margin: 0;
  max-width: 720px;
  color: var(--gc-muted);
}

/* Responsive spacing tweaks */
@media (max-width: 900px){
  .gc-resources__content{
    max-width: 100%;
    padding: var(--space-lg) 0;
  }
}
