:root {
    --ui-scale: clamp(0.85, 1vw + 0.6, 1);
}
html{
    width: 100%;
    max-width: 100%;
}
html, body {
  overflow-y: visible;
}
body {
    width: 100%;
    color: black;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-style: normal;
  }
a{
    color: black;
    line-height: normal;
    text-decoration: none;
    width: fit-content;
}
.buttons{
    color: white;
}
button{
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 46px;
    border-radius: 999px;

    background-color: #ff2b2b;
    border: none;
    text-shadow: 0px 4px 4px #00000040;
    -webkit-text-stroke: 1px #0000001f;

    cursor: pointer;

    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;

    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
h1, h2, h3, h4, h5, h6, p{
    padding: 0px;
    margin: 0px;
}
html {
    scroll-padding-top: clamp(0px, 2vw, 170px);
    scroll-behavior: smooth; /* optional: smooth scrolling */
  }
p{
    font-size: 24px;
}
.p2{
    font-size: 18px;
}
.p2bold{
    font-size: 28px;
    font-weight: bold;
}
.phero{
    font-size: 27px;
}
h1{
    font-size: 57px;
}
h2{
    font-size: 43px;
}
.p2-light{
    font-size: 43px;
    font-weight: lighter;
}
.px1{
    font-size: 64px;
    font-weight: bold;
}
.px2{
    font-size: 32px;
}
.px2-bold{
  font-size: 32px;
  font-weight: bold;
}
.navhref:hover{
    color: cornflowerblue;
    transform: scale(1.01);
}
/* ---------------- NAV WRAPPER ---------------- */

#nav {
    height: clamp(auto, 12vw, 148px);
    width: 100%;

    padding-left: clamp(16px, 4vw, 0px);
    padding-right: clamp(16px, 4vw, 0px);

    display: flex;
    justify-content: center; /* important for Option 1 */
    align-items: center;

    position: sticky;
    top: 0;
    background-color: white;
    z-index: 999;
}
/* Nav hide/show animation */
#nav {
  transition: transform 0.35s ease;
  will-change: transform;
}

#nav.nav-hidden {
  transform: translateY(-100%);
}

/* ---------------- INNER SPACING CONTROL ---------------- */
/* This controls the logo ↔ nav-right distance */

#nav > #nav-logo,
#nav > #nav-right {
    display: flex;
    align-items: center;
}

#nav {
    gap: clamp(120px, 18vw, 320px);
}

/* ---------------- FLEX GROUPS ---------------- */

#nav-logo,
#nav-right,
#nav-links,
#nav-lang {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* ---------------- RIGHT SIDE ---------------- */

#nav-right {
    gap: clamp(32px, 6vw, 250px);
}

/* ---------------- LINKS ---------------- */

#nav-links {
    gap: clamp(16px, 3vw, 51px);
}

#nav-links a {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-link-text {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: clamp(14px, 1.2vw, 118px);
}

/* ---------------- LANGUAGE SELECT ---------------- */

#nav-lang {
    gap: 10px;
    flex-shrink: 0;
}
/* ---------------- BURGER PANEL ---------------- */
#burger-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1990;
}

#burger-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 90%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1991;
  display: flex;
  flex-direction: column;
}

/* Active states */
#burger-panel.open { transform: translateX(0); }
#burger-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Panel Header */
.burger-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #ddd;
}

.burger-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

#burger-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
}

/* Options */
.burger-options {
  padding: 1rem;
}

.burger-option {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #000;
  border-radius: 4px;
}

.burger-option:hover {
  background: #f2f2f2;
}

#mobile-menu{
  display: none;
}
#nav-burger{
  display: none;
}

/* ---------------- LOGO ---------------- */

#logo {
    height: clamp(40px, 6vw, 12vw);
    width: auto;
}
#hero{
    width: 100%;
    height: 547px;
    background-image: url(/img/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#hero img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
#hero-txt{
    width: 738px;
    height: 186px;
    margin-left: 15%;
    color: white;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
#hero-description{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.donate-text{
    color: white;
}
#wwa-cont{
    height: auto;
    padding-right: 190px;
    padding: 105px 0px;
    gap: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#wwa-cont-right{
    width: 547px;
    height: 292px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
#wwa-cont-left{
    width: 546px;
    height: 494px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(/img/ellipse-11.png);
    background-repeat: no-repeat;
    background-size: auto;
}
#wwa-img{
    width: 495px;
    height: 347px;
    padding-right: 187px;
}
#os-cont{
    height: auto;
    padding-left: 190px;
    padding: 130px 0px;
    gap: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#os-cont-left{
    width: 547px;
    height: 292px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
#os-cont-right{
    width: 578px;
    height: 429px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(/img/ellipse-green.png);
    background-repeat: no-repeat;
    background-size: auto;
}
#os-img{
    width: 495px;
    height: 347px;
    padding-right: 85px;
}
#metrics-cont{
    height: auto;
    gap: 48px;
    padding: 120px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.metbox{
    width: 302px;
    height: 303px;
    border-radius: 69px;
    border-width: 11px;
    border-style: solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.metbox1{
    border-color: #FF3131;
}
.mb1-title{
    color: #FF3131;
}
.metbox2{
    border-color: #7DD656;
}
.mb2-title{
    color: #7DD656;
}
.metbox3{
    border-color: #65BFFE;
}
.mb3-title{
    color: #65BFFE;
}
.metbox4{
    border-color: #F9D100;
}
.mb4-title{
    color: #F9D100;
}
.metbox2, .metbox4{
    margin-top: 123px;
}
.mbtitle{
    display: flex;
    flex-direction: row;
    align-items: baseline;
}
#support-cont {
    padding: 280px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px; /* tighter + closer to reference */
}

/* ---------------- LEFT IMAGE ---------------- */

#supp-left img {
    width: 260px; /* visually matches reference */
    height: auto;
}

/* ----------------  MIDDLE CONTENT ---------------- */

#supp-middle {
    width: 33vw;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 40px;
}

#supp-title h1 {
    font-weight: 700;
}

#supp-description p {
    line-height: 1.5;
}

/* ---------------- RIGHT BUTTONS ---------------- */

#supp-right {
    display: flex;
    flex-direction: column;
    gap: 28px; /* MUCH tighter than 90px */
}

/* ---------------- BUTTON STYLE ---------------- */

.supp-button button {
    background-color: #ff2b2b;
    color: white;
    border: none;
    border-radius: 999px;

    padding: 16px 32px;
    min-width: 260px;

    font-size: 16px;
    font-weight: 500;

    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}
#workshops{
    width: 100%;
    height: auto;
    padding: clamp(48px, 6vw, 90px) 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(36px, 6vw, 96px);
  }
  
  #workshops #programs-text{
    width: 100%;
    max-width: 893px;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 40px);
  }
  
  #workshops #programs-list{
    width: 100%;
    max-width: 1386px;
    height: auto;
  
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(14px, 3vw, 40px);
  
    justify-items: center;
  }
  
  #workshops .prog-box{
    width: 100%;
    max-width: 422px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  #workshops .prog-head{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 9px;
  }
  
  #workshops .prog-ico{
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
  }
  
  #workshops .prog-ico > img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  
  #workshops .prog-img{
    width: 100%;
    aspect-ratio: 422 / 286;
    overflow: hidden;
  }
  
  #workshops .prog-img > img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  
  /* Optional: enforce exact columns at specific sizes */
  @media (min-width: 1100px){
    #workshops #programs-list{
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 700px) and (max-width: 1099px){
    #workshops #programs-list{
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 699px){
    #workshops #programs-list{
      grid-template-columns: 1fr;
    }
  }
/* Make the image area a layering container */
#workshops .prog-img{
    position: relative;
    border-radius: 6px;          /* optional, helps it feel like a card */
    overflow: hidden;
  }
  
  /* Smooth transitions */
  #workshops .prog-box{
    transition: transform 200ms ease, box-shadow 200ms ease;
  }

  /* Make the entire program card a clipped “container” */
#workshops .prog-box{
    background: #fff;
    border-radius: 8px;
    overflow: hidden;           /* important: stops the popout */
    gap: 0;                     /* remove the gap that can look like a notch */
  }
  
  /* Add spacing back as padding instead of gap */
  #workshops .prog-head{
    padding: 12px 12px 10px;
  }
  
  /* Make sure the image fills edge-to-edge inside the card */
  #workshops .prog-img{
    border-radius: 0;           /* card already has rounding */
  }
  
  /* Kill default p margins that often cause odd spacing */
  #workshops .prog-head p{
    margin: 0;
  }
  
  #workshops .prog-img > img{
    transition: transform 250ms ease, filter 250ms ease;
  }
  
  /* The overlay panel */
  #workshops .prog-overlay{
    position: absolute;
    inset: 0;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    padding: clamp(14px, 2vw, 22px);
    text-align: center;
  
    background: rgba(255, 255, 255, 0.75);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 200ms ease, transform 200ms ease;
  
    pointer-events: none; /* overlay won’t block clicks */
  }
  
  #workshops .prog-overlay-text{
    margin: 0;
    max-width: 36ch;
    color: #111;          /* adjust to match your typography */
  }
  
  /* Hover + keyboard focus */
  #workshops .prog-box:hover,
  #workshops .prog-box:focus{
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }
  
  #workshops .prog-box:hover .prog-img > img,
  #workshops .prog-box:focus .prog-img > img{
    transform: scale(1.03);
    filter: blur(1px) brightness(0.95);
  }
  
  #workshops .prog-box:hover .prog-overlay,
  #workshops .prog-box:focus .prog-overlay{
    opacity: 1;
    transform: translateY(0);
  }
#blog-cont{
    height: auto;
    padding: 124px 0px;
    gap: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}
#blogs{
    width: auto;
    height: 335px;
    gap: 35px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.blog-box{
    width: 306px;
    height: 335px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #EEEEEE;
}
.blog-img{
    width: 100%;
    height: 70%;
}
.blog-title{
    width: 100%;
    height: 30%;
}
.bt-h3{
    margin: 10px;
}
#contact{
    padding-top: 187px;
    gap: 37px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

#connect-description{
    width: 621px;
}
.form-container {
    width: 595px;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 30px 25px;
}
.form-group {
    margin-bottom: 22px;
}
label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}
input {
    width: 558px;
    height: 46px;
    border-radius: 999px;
    border: none;
    background: #f1f1f1;
    padding: 0 18px;
    font-size: 14px;
    outline: none;
}
input:focus {
    background: #e9e9e9;
}
.form-button {
    width: 100%;
    height: 48px;
    border-radius: 999px;
    font-size: 14px;
    border: none;
    background: #ff2f2f;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
}
button:hover {
    background: #e02626;
}
#site-footer {
    padding: 60px 0px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background-color: white;
}

/* ---------------- SOCIAL ICONS ---------------- */

.footer-socials {
    display: flex;
    gap: 16px;
    height: fit-content;
    padding: 10px 10px;

}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #c91f0a;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 600;
    text-decoration: none;

    transition: transform 0.15s ease, opacity 0.15s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ---------------- DIVIDER ---------------- */

.footer-divider {
    width: 100%;
    max-width: 1200px;
    height: 2px;
    background-color: #8f8f8f;
}

/* ---------------- TEXT ---------------- */

.footer-text {
    display: flex;
    gap: 6px;
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.footer-links {
    color: #ff2b2b;
    display: flex;
}

.footer-link {
    color: #ff2b2b;
    text-decoration: underline;
}

.footer-copy {
    color: #000000;
}



/* ---------------- LANGUAGE PANEL ---------------- */
#lang-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
}

#lang-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2001;
    display: flex;
    flex-direction: column;
}

/* Active states */
#lang-panel.open { transform: translateX(0); }
#lang-backdrop.open { opacity: 1; pointer-events: auto; }

/* Panel Header */
.lang-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid #ddd;
}
.lang-header h2 { margin: 0; font-size: 1.25rem; }
#lang-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Options */
.lang-options { padding: 1rem; }
.lang-option {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #000;
    border-radius: 4px;
}
.lang-option:hover { background: #f2f2f2; }
.lang-option.active { background: #f6f7f8; font-weight: 600; }

/* Ensure nav-lang clickable above everything */
#nav-lang {
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1001;
}
#error-cont{
    width: 100%;
    height: auto;
    row-gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#stembot{
    padding-left: 40px;
}
#err-bottom:active{
    transform: scale(1.008);
}

#thankyou-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 9999;
}

#thankyou-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.thankyou-content {
  background: #fff;
  width: min(90%, 420px);
  margin-bottom: 40px;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transform: translateY(120%);
  transition: transform 0.45s ease;
}

#thankyou-modal.active .thankyou-content {
  transform: translateY(0);
}

.thankyou-content img {
  width: 56px;
  margin-bottom: 16px;
}

.thankyou-content h1 {
  margin-bottom: 10px;
}


/* ========================= */
/* MOBILE RESPONSIVE PATCH */
/* ========================= */

@media (max-width: 768px) {

    /* ---------- GLOBAL ---------- */
  
    body {
      overflow-x: hidden;
    }
  
    p {
      font-size: 18px;
    }
  
    h1 {
      font-size: 36px;
    }
  
    h2 {
      font-size: 30px;
    }
  
    .phero {
      font-size: 20px;
    }
  
    /* ---------- NAV ---------- */
  

    #nav {
      padding-left: 16px;
      padding-right: 16px;
      gap: 0;
      justify-content: space-between;
      box-sizing: border-box;
    }
  
    #nav-right {
      gap: 12px;
    }
  
    /* ============================= */
    /* NAV LINKS WRAP + SCALE */
    /* ============================= */
  
    #nav-links {
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
      max-width: 100%;
    }
  
    #nav-links a {
      flex-shrink: 1;
    }
  
    .nav-link-text {
      font-size: clamp(14px, 3.8vw, 16px);
      white-space: normal; /* CRITICAL */
      line-height: 1.2;
      text-align: center;
      word-break: break-word;
      overflow-wrap: break-word;
    }
  
    /* ============================= */
    /* LOGO SCALING */
    /* ============================= */
  
    #logo {
      height: 42px;
      max-width: 140px;
      object-fit: contain;
    }

    /* ============================= */
    /* BURGER VISIBILITY */
    /* ============================= */

    #nav-links {
      display: none;
    }

    #nav-burger {
      display: flex;
      align-items: center;
    }

    /* ============================= */
    /* MOBILE MENU PANEL */
    /* ============================= */

    #mobile-menu {
      position: fixed;
      top: 72px; /* matches nav height visually */
      right: 0;
      width: 100%;
      max-width: 320px;

      background: white;
      padding: 24px;

      display: flex;
      flex-direction: column;
      gap: 18px;

      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 998;
    }

    #mobile-menu.open {
      transform: translateX(0);
    }

    #mobile-menu a {
      font-size: 18px;
    }
  
    /* ============================= */
    /* LANGUAGE SELECT */
    /* ============================= */
  
    #nav-lang {
      gap: 6px;
      flex-shrink: 0;
    }
  
    #lang-text {
      display: none; /* icon-only on mobile */
    }
  
    #lang-img img {
      width: 20px;
      height: 20px;
    }
  
    /* ---------- HERO ---------- */
  
    #hero {
      padding-left: 16px;
      padding-right: 16px;
      box-sizing: border-box;
      background-position-x: center;
    }
  
    #hero-txt {
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      box-sizing: border-box;
    }
  
    /* ============================= */
    /* HERO TYPOGRAPHY SCALING */
    /* ============================= */
  
    #hero h1 {
      font-size: clamp(32px, 7vw, 40px);
      line-height: 1.15;
      word-break: break-word;
      overflow-wrap: break-word;
      text-align: center;
    }
  
    #hero p,
    #hero .phero {
      font-size: clamp(16px, 4.5vw, 18px);
      line-height: 1.5;
      word-break: break-word;
      overflow-wrap: break-word;
      text-align: center;
    }
  
    /* ============================= */
    /* HERO BUTTON SAFETY */
    /* ============================= */
  
    #hero button {
      max-width: 100%;
      white-space: normal;
      text-align: center;
      align-self: center;
    }
  
    /* ---------- WHO WE ARE ---------- */
  
    #wwa-cont {
      flex-direction: column;
      padding: 80px 20px;
      gap: 32px;
    }

    #wwa-cont-left{
      background-image: none;
  }
  
    #wwa-cont-left,
    #wwa-cont-right {
      width: 100%;
      height: auto;
    }
  
    #wwa-img {
      width: 100%;
      height: auto;
      padding-right: 0;
    }
  
    /* ---------- OUR STORY ---------- */
  
    #os-cont {
      flex-direction: column-reverse;
      padding: 80px 20px;
      gap: 32px;
    }
    
    #os-cont-right{
      background-image: none;
    }
  
    #os-cont-left,
    #os-cont-right {
      width: 100%;
      height: auto;
    }
  
    #os-img {
      width: 100%;
      height: auto;
      padding-right: 0;
    }

    #os-button{
      align-self: center;
    }
  
    /* ---------- METRICS ---------- */
  
    #metrics-cont {
      flex-direction: column;
      gap: 32px;
      padding: 80px 20px;
    }
  
    .metbox {
      width: 100%;
      max-width: 320px;
      height: auto;
      padding: 40px 20px;
    }
  
    .metbox2,
    .metbox4 {
      margin-top: 0;
    }
  
    /* ---------- SUPPORT ---------- */
  
    #support-cont {
      flex-direction: column;
      padding: 120px 20px;
      text-align: center;
    }
  
    #supp-middle {
      width: 100%;
      padding-right: 0;
      align-items: center;
    }
  
    #supp-right {
      width: 100%;
      align-items: center;
    }
  
    /* ---------- PROGRAMS ---------- */
  
    #workshops {
      padding-left: 16px;
      padding-right: 16px;
      box-sizing: border-box;
    }
  
    #programs-text,
    #sect-title,
    #sect-description {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
  
    #sect-title h2 {
      font-size: clamp(26px, 6vw, 32px);
      line-height: 1.2;
      word-break: break-word;
      overflow-wrap: break-word;
    }
  
    #sect-description p {
      font-size: clamp(16px, 4.5vw, 18px);
      line-height: 1.5;
      word-break: break-word;
      overflow-wrap: break-word;
    }
  
    /* ============================= */
    /* PROGRAM CARD TEXT */
    /* ============================= */
  
    #workshops .prog-head p {
      font-size: clamp(18px, 5vw, 22px);
      line-height: 1.25;
      word-break: break-word;
      overflow-wrap: break-word;
    }
  
    #workshops .prog-overlay-text {
      font-size: clamp(14px, 4vw, 16px);
      line-height: 1.4;
      max-width: 90%;
      word-break: break-word;
      overflow-wrap: break-word;
    }
  
    /* ---------- BLOG ---------- */
  
    #blogs {
      flex-direction: column;
      height: auto;
    }
  
    .blog-box {
      width: 100%;
      max-width: 320px;
    }
  
    /* ---------- CONNECT ---------- */
  
    #contact {
      padding-top: 120px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    #connect-description {
      width: 100%;
    }
  
    .form-container {
      width: 100%;
      max-width: 92vw;
    }
  
    input {
      width: 100%;
    }
  
    /* ---------- FOOTER ---------- */
  
    .footer-divider {
      width: 90%;
    }
    
    #contact {
      padding-top: 120px;
      gap: 28px;
  }

  #connect-description {
      width: 100%;
      max-width: 92vw;
      text-align: center;
  }

  .form-container {
      width: fit-content;
  }

  input {
      width: 69vw;
  }

  label {
      text-align: left;
  }
}  



    /* ---------- FOOTER ---------- */
