/* CSS File: rw-community.css */ 
/* author : Leonardo */ 


.close-btn {
    padding: 0; /* Remove default padding */
    border: none; /* Remove default border if unwanted */
    background: none; /* Remove default background */
    width: 50px; /* Match SVG size */
    height: 50px; /* Match SVG size */
    display: inline-flex; /* Ensure button respects SVG size */
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Indicate clickability */
}

.custom-x {
    width: 50px; /* Explicit size */
    height: 50px;
    display: block; /* Ensure SVG fills button */
}

        /* Title styling above the cards */
        .section-title {
            display: grid;
            font-size: 3vw;
            font-weight: normal;
            position: relative;
            text-align: center;
            margin-bottom: 2vw;
            margin-top: 2vw;
            color: #fff;
            padding: 0px 0px 0px 0px;
        }

        /* Grid layout for the features section */
        .section-introduction {
            display: grid;
            grid-template-columns: 1fr 1fr; /* 2 columns */
            grid-template-rows: auto; 
            grid-gap: 20px;
            padding: 10px 10px 0px 10px; /* top right bottom left */ 
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 0px;
            margin-bottom: 0px;
            background-color: #000;
        }

        /* Styling for individual feature cards */
        .introduction {
            background-color: #000;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: left;
            display: flex;
            flex-direction: column;
            /* justify-content: space-between; */
            align-items: left;
            height: 100%;
            width: 100%;
        }

   .introduction  img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
            margin: 0;
            padding: 0;
             border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: block; /* Ensure no inline spacing */
    
 }



        /* Card 1 - Spans across the top */
        .introduction.first {
            grid-column: span 2; /* Spans both columns */
            grid-row: 1;
            font-family:   -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",   Helvetica,   sans-serif;
            font-size: 3vw;
            font-weight: 800;
            height: 200px;
            border-radius: 0px;
            box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
            background-color:   #000; 
        }


 

 
   

   


.nospace {
    margin: 0 !important; /* Remove all margins, override other rules */
    background-color: transparent;
    padding: 0;
    border-radius: 10px;
}


    


 .introduction-title {
            font-family:   -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",   Helvetica,   sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #f5f5f7;
            text-align: left;
            margin-top: 10px;
            margin-bottom: 0px;
            padding: 20px 10px 0px 20px;
        }

.introduction-text {
    font-size: 14px;
    font-weight: normal;
    color: #f5f5f7;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 1px;
    padding: 0px 20px 40px 20px; /* top right bottom left */ 
    white-space: pre-wrap; 
    text-indent: 0px;
    
}

/* Target the <ul> inside .introduction-text */
.introduction-text ul {
    margin-top: 0; /* No space before list */
    margin-bottom: 0; /* No space after list */
    padding-left: 20px; /* Indent bullets */
    padding-bottom: 0; /* Ensure no extra padding */
}

/* Space between list items */
.introduction-text li {
    margin-bottom: 0px; /* Space between items */
}

/* Remove space after the last item */
.introduction-text li:last-child {
    margin-bottom: 0; /* No space below last item */
}

/* Style links with images */
.introduction-text a {
    display: inline-block; /* Prevent stacking */
    margin-right: 5px; /* Space between images */
    vertical-align: middle; /* Align with text */
}

/* Style images within links */
.introduction-text .button-link-intext {
    height: 12px;
    width: 12px;
    vertical-align: middle; /* Match text alignment */
    margin: 0 2px; /* Small space around images */
}



/* titles format  */
 
.container-01 {
  display: flex; /* Use flex for easier vertical alignment */
  justify-content: column; /* Center the content horizontally */
  width: 100%;
  height: 100%;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
  background-color: #000;
}
.container-01 .single-column {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  gap: 0px; /* Space between items */
  width: 100%;
}
.left-text, .right-text, .middle-text  {
  display: flex;
  align-items: flex-start; /* Align items to the left */
  justify-content: flex-start; /* Start content from left */
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
}

.left-text {
  /* font-size: clamp(2rem, 3.0vw, 3.0vw); */ 
  font-size: 3.5rem; 
  font-weight: 800;
  color: #f5f5f7;
   
}


.middle-text {
  font-family:   -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",   Helvetica,   sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #708090;
  padding: 10px 0px 20px 0px; /* top right bottom left */ 
}


.right-text {
  font-size: 1.0rem;
  font-weight: normal;
  color: #C0C0C0;
  max-width: 400px;
  text-align: left;
  padding: 2px 0px 40px 0px; /* top right bottom left */ 
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}



/* titles format  */

        /* Mobile responsiveness */
@media (max-width: 768px) {
    .section-introduction {
        grid-template-columns: 1fr; /* Single-column layout */
        grid-auto-rows: auto; /* Automatically adjust row height */
    }

    .introduction.first {
        grid-column: 1; /* Full width */
        grid-row: 1; /* Appears first */
    }

    .introduction.second {
        grid-column: 1; /* Full width */
        grid-row: 2; /* Appears second */
    }

    .introduction.third {
        grid-column: 1; /* Full width */
        grid-row: 3; /* Appears third */
    }

    .introduction.fourth {
        grid-column: 1; /* Full width */
        grid-row: 4; /* Appears fourth */
    }
      .introduction.fifth {
        grid-column: 1; /* Full width */
        grid-row: 6; /* Appears fourth */
    }


      .introduction.sixth {
        grid-column: 1; /* Full width */
        grid-row: 5; /* Appears fourth */
    }

.container-01 {
  display: grid;
  grid-template-columns: 1fr; /* Single-column layout */
  grid-auto-rows: auto; /* Automatically adjust row height */
  width: 100%;
  padding: 0 0px;
  gap: 2px;
  justify-content: left;
  box-sizing: border-box;

}

.container-01 .left-text {
  grid-column: 1  ;
  font-size: 48px; 
}

.container-01 .middle-text {
  grid-column: 1  ;
  font-size: 24px; 
}

 
.container-01  .right-text {
  grid-column: 1;
  text-align: left;
  justify-content: left;
  font-size: 16px; 
  padding: 10px 0px 0px 0px; /* top right bottom left */ 
  grid-row: 2; /* Appears fourth */
}

}





.button-link {
    display: inline-block; /* Make it behave like a block but only take up the space of its content */
    padding: 4px 4px 4px 4px; /* top right bottom left */  
    background-color: transparent; /* Set a background color */
    color: white; /* Set text color */
    text-align: center; /* Center the text inside the button */
    border-radius: 0px; /* Rounded corners */
    text-decoration: none; /* Remove the underline */
    transition: transform 0.3s ease; /* Smooth transition for background color */
}

.button-link:hover {
   transform: scale(1.1); /*  background-color: #0a68cd;  Darken the background on hover */
}


.button-link-intext {
    display: inline-block; /* Make it behave like a block but only take up the space of its content */
    padding: 0px 4px 0px 0px; /* top right bottom left */  
    background-color: transparent; /* Set a background color */
    color: white; /* Set text color */
    text-align: center; /* Center the text inside the button */
    border-radius: 0px; /* Rounded corners */
    text-decoration: none; /* Remove the underline */
    cursor: pointer;
    transition: transform 0.3s ease; /* Smooth transition for background color */
}

.button-link-intext:hover {
   transform: scale(1.2); /*  background-color: #0a68cd;  Darken the background on hover */
}



.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    backdrop-filter: blur(5px); /* Blur effect */
    z-index: 999; /* Below the nav but above other content */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.blur-overlay.active {
    opacity: 1;
    visibility: visible;
}


.ddt-program-title {
    font-size: 14px;
    font-weight: normal;
    color: #1d1d1f;
    text-align: left;
    display: inline; /* Make it inline to avoid line break */
}



.apple-table {
    width: 100%; /* Full width, adjustable */
    border-collapse: collapse; /* Remove gaps between borders */
    font-size: 12px; /* Typical Apple text size */
    color: #333; /* Dark gray text */
}

.apple-table tr {
    border-bottom: 1px solid #d2d2d7; /* Thin, light gray line */
}

.apple-table tr:first-child {
    border-top: 1px solid #d2d2d7; /* No line after last row */
}
.apple-table tr:last-child {
    border-bottom: 1px solid #d2d2d7; /* No line after last row */
}

.apple-table td {
    padding: 10px; /* Comfortable spacing */
    text-align: left; /* Left-aligned text */
    border: none; /* No vertical lines */
}








#video {
  height: 400px; /* Set your desired height */
  width: 100%;   /* Keeps it full-width, adjust as needed */
  object-fit: cover; /* Ensures the video fills the space without distortion */
}


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
     
    --text-title: #f5f5f7;
    --text-secondary: #a1a1a6;
    --back: #141414;
    --line-color:  rgba(255,255,255,0.4);
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  html { scroll-behavior: smooth; }

  body {
     
    color: var(--text-primary);
    font-family: font-family: Montserrat, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ─── SECTION 1 : image left + two feature blocks right ─── */
  .section-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding: 80px 60px 80px 80px;
    gap: 0 60px;
    align-items: center;
  }

  /* sticky image column */
  .image-col {
    position: sticky;
    top: 20%;
    transform: translateY(-50%);
    align-self: start;
    will-change: transform, opacity;
  }

  .image-col img {
    width: 100%;
    max-width: 560px;
    display: block;
    border-radius: 4px;
  }

  /* right column: stacked feature blocks */
  .features-col {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .feature-block {
    padding: 60px 0;
    position: relative;
    will-change: transform, opacity;
  }

  /* horizontal rule above each block */
  .feature-block::before {
    content: '';
    display: block;
    height: 1.4px;
    background: var(--line-color);
    width: 100%;
    margin-bottom: 36px;
    transform-origin: left center;
    will-change: transform, opacity;
  }

  .feature-block h2 {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--text-title);
    margin-bottom: 20px;
    line-height: 1.25;
  }

  .feature-block p {
    font-size: clamp(14px, 1.55vw, 18px);
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 300;
    max-width: 520px;
  }

  /* ─── SECTION 2 : two-col text only ─── */
 

/*
  .section-text-split {
    display: grid;
    grid-template-columns: 30% 68%;
    justify-content: space-between;
     
    padding: 100px clamp(120px, 10vw, 300px);
    gap: 0 60px;
    position: relative;
  }

  */


 


.section-text-split {
  display: grid;
  grid-template-columns: minmax(200px, 28%) 1fr;
  gap: 60px;

  /* Replaces the aggressive clamp(160px, 20vw, 600px) */
  padding: 80px clamp(40px, 6vw, 120px);

  max-width: 1400px;
  margin: 0 auto;
}



  .split-left {
    padding-top: 8px;
    will-change: transform, opacity;
  }

  .split-right {
    will-change: transform, opacity;
  }

  /* top lines */
  .split-left::before,
  .split-right::before {
    content: '';
    display: block;
    height: 1px;
    background: var(--line-color);
    width: 100%;
    margin-bottom: 36px;
    transform-origin: left center;
    will-change: transform, opacity;
  }

  .split-left h2 {
    font-size: clamp(28px, 3.4vw, 48px);
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-title);
  }


    .split-right h3 {
    font-size: clamp(24px, 2.4vw, 24px);
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--text-title);
  }

  .split-right p {
    font-size: clamp(14px, 1.55vw, 18px);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    padding-top: 8px;
    padding-bottom: 20px;
  }

  /* ─── ANIMATION STATES ─── */

  .anim-target {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }

  .anim-target.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  /* stagger children inside feature blocks */
  .feature-block.anim-target h2 { transition-delay: 0.15s; }
  .feature-block.anim-target p  { transition-delay: 0.25s; }

  /* image col special: slides up from 60px */
  .image-col.anim-target {
    transform: translateY(60px);
  }

  /* spacer so page has scrollable content */
  .spacer { height: 20vh; }

  .section-text-split {
    position: relative;
    padding-top: 10px;
  }

  .split-left::before,
  .split-right::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .split-left,
  .split-right {
    padding-top: 36px;
  }

  .split-left::before {
    transform-origin: right center;
  }

  .split-right::before {
    transform-origin: left center;
  }

  .line-target::before {
    opacity: 0;
  }

  .line-target.in-view::before {
    opacity: 1;
    height: 2px;

    transform: translateY(0);
  }

  /* ─── SECTION 3 : image right + two feature blocks left ─── */
  .section-features--reversed {
    padding: 80px 80px 80px 60px;
  }

  .section-features--reversed .features-col { order: 1; }
  .section-features--reversed .image-col    { order: 2; }





       /* --- Table Base Styles --- */
        .meetings-table-apple {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            table-layout: fixed; /* Enforce column widths */
        }

        .meetings-table-apple th,
        .meetings-table-apple td {
            padding: 10px;
            font-size: 14px;
            color: var(--text-title);
            background-color: var(--back);
            border-bottom: 0.2px solid #999999;
        }

        .meetings-table-apple th {
            background-color: var(--back);
            font-weight: 200;
            color: var(--text-title);
        }

        .meetings-table-apple .col-update {
  width: 120px; /* adjust to taste */
}

       

  /* ═══════════════════════════════════════════
     MOBILE — single column stack
     ═══════════════════════════════════════════ */
  @media (max-width: 768px) {

    .spacer { height: 40px; }

    /* ── Section 1 & 3: stack vertically ── */
    .section-features {
      grid-template-columns: 1fr;
      min-height: unset;
      padding: 48px 24px;
      gap: 0;
    }

    /* image: no longer sticky, just flows in the stack */
    .image-col {
      position: relative;
      top: unset;
      transform: none;
      align-self: unset;
      margin-bottom: 40px;
    }

    /* reset parallax transform when in-view on mobile */
    .image-col.in-view {
      transform: none !important;
    }

    .image-col img {
      max-width: 100%;
    }

    /* Section 3 reversed: image goes on top, features below */
    .section-features--reversed {
      padding: 48px 24px;
    }

    .section-features--reversed .features-col { order: 2; }
    .section-features--reversed .image-col    { order: 1; }

    .feature-block {
      padding: 40px 0;
    }

    .feature-block h2 {
      font-size: clamp(20px, 5vw, 28px);
    }

    .feature-block p {
      font-size: 16px;
      max-width: 100%;
    }

    /* ── Section 2: stack vertically ── */
    .section-text-split {
      grid-template-columns: 1fr;
      padding: 0px 24px 48px; /* top right bottom left */ 
      gap: 0;
    }

    /* on mobile both lines flow normally (not absolute) */
    .split-left::before,
    .split-right::before {
      position: relative;
      top: unset;
      left: unset;
    }

    .split-left {
      padding-top: 0;
      margin-bottom: 48px;
    }

    .split-right {
      padding-top: 0;

    }

    .split-left h2 {
      font-size: clamp(24px, 6vw, 38px);
    }

    .split-right p {
      font-size: 16px;
      padding-top: 0;

    }

/* Shrink the page title */
  .section-introduction .left-text {
    font-size: clamp(28px, 7vw, 36px);
    padding-left: 20px;
  }

  /* Remove the ::before lines on the right column only */
  .split-right::before {
    display: none;
  }


  }

 .full-width-video {
    width: 100%; /* Viewport width */
    position: center;
    background-color: var(--back);

    overflow: hidden; /* To clip any overflow from the video */
}

.full-width-video video {
    width: 100%; /* Makes the video span the full width of its container */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes any default margin */
    margin-top: 0px;
    background-color: var(--back);
    margin-bottom: 40px;
}



      .table-container {
             
            border-radius: 14px;
            overflow: hidden;
            width: 100%;
            max-width: 800px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

       

        .table-container a {
            text-decoration: none;
        }

         /* Applying styles to the new class program-table-apple */
 
        /* Targeting the last row of the tbody within the new class */
        .program-table-apple tbody tr:last-child td {
            border-bottom: none;
        }

.split-right ul {
  margin: 0;
  padding-left: 22px;
  padding-top: 8px;
  padding-bottom: 20px;

  color: var(--text-secondary);

  font-size: clamp(14px, 1.55vw, 18px);
  line-height: 1.7;
  font-weight: 300;
}

.split-right li {
  margin-bottom: 14px;
}

.split-right li::marker {
  color: var(--text-title);
}


.program-table-apple {
    width: 100%;

    border-collapse: collapse;
    background-color: #ccc;
    text-align: left;
    table-layout: fixed;
     
    
}

.program-table-apple th {
    
    padding: 0px;
    font-size: 14px;
    color: #1d1d1f;
    background-color: #ccc;
    border-bottom: 2px solid #1d1d1f;
    text-align: left;
    font-weight: bold;
}

.program-table-apple img {
 border-radius: 0px 00px 0 0 !important;
}

.program-table-apple th:first-child,
.program-table-apple td:first-child {
    width: 100px; /* Width for the first column (e.g., for the icon) */
}

.program-table-apple th:last-child,
.program-table-apple td:last-child {
    width: 100px; /* Width for the second column (e.g., for the data link) */
}

.program-table-apple td {
    padding: 8px;
    font-size: 14px;
    color: #1d1d1f;
    background-color: #ccc;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.program-table-apple td:first-child {
    padding-right: 0;
}

.program-table-apple td:last-child {
    border-bottom: none;
    padding-left: 0;
}

.program-table-apple .data-link {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-decoration: none;
    color: #1d1d1f;
}

.program-table-apple .data-link:hover {
    color: #0066cc;
}

.program-table-apple .program-text {
    margin: 0;
    font-size: 14px;
}


.inner-div {
  display: flex;
  align-items: left;
  
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

 

.title {
  margin: 0;
}
   



