/* =========================
   Reusable Two-Column Section
   File: assets/css/two-col.css
   ========================= */

/* =========================
   Two Column Background Texture
   ========================= */

.tc-section {
  position: relative;
  width: min(100vw, 100%);                  /* full viewport width */
  margin-left: calc(50% - 50vw);  /* break out of centered containers */
  margin-right: calc(50% - 50vw);

  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 56px 0;
  overflow: hidden;
}



/* ✅ Keep content above the texture */
.tc {
  position: relative;
  z-index: 1;

  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 68px;
  
}

.tc__content h2 { margin: 0 0 12px; }

.tc__content p {
  margin: 0 0 16px;
  color: rgba(0,0,0,0.85);
}

.tc__highlights {
  margin: 0;
  padding-left: 18px;
}

.tc__highlights li {
  margin: 8px 0;
}

.tc__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tc__figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
}

.tc__figure img {
  display: block;
  width: 100%;
  height: auto;
}



/* Responsive */
@media (max-width: 900px) {
  .tc { grid-template-columns: 1fr; }
  .tc__media { order: 2; }


  .tc {gap: 40px; }
  .tc-section {padding: 20px 0;}
}

html, body { overflow-x: clip; }