/*

Theme Name: PC1882
Author: Paine College
Version: 3.4

*/

/* Page Styles */

.btn_cta, .btn_cta2, .spancta, .view-all-events-button {
      display: inline-flex;
      justify-content: space-between; /* Text left, arrow right */
      align-items: center;
      width: 100%;                    /* Full width of container */
      max-width: 300px;               /* Optional: limit max width */
      padding: 16px 24px;             /* Bigger padding = taller & wider feel */
      color: #ffffff;
      background: var(--clr-primary);
      border: none;
      border-radius: 12px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px hsla(var(--primaryhsl), .3);
      margin: 20px auto;              /* Center if container is wider */
      box-sizing: border-box;
      
    }

    a.btn_cta, a.btn_cta2, .spancta {
      font-style: normal;
      
    }

    /* Hover: full color change + lift */
    .btn_cta:hover, .btn_cta2:hover, .spancta:hover, .view-all-events-button:hover {
      background-color: hsla(var(--primaryhsl), .9);
      /* transform: translateY(-3px); */
      box-shadow: 0 10px 25px hsla(var(--primaryhsl), .6);
    }

    /* Arrow icon (CSS) */
    .btn_cta::after, .btn_cta2::after, .spancta::after, .view-all-events-button::after {
      content: "→";
      font-size: 20px;
      font-weight: bold;
      transition: transform 0.3s ease;
      margin-right: .5rem;
    }

    /* Arrow slides right on hover */
    .btn_cta:hover::after, .btn_cta2::after, .spancta:hover::after, .view-all-events-button:hover::after {
      transform: translateX(6px);
    }

    /* Accessibility */
    .btn_cta:focus-visible, .btn_cta2:focus-visible, .spancta:focus-visible, .view-all-events-button:focus-visible {
      outline: 3px solid #a5b4fc;
      outline-offset: 3px;
    }

a.btn_cta2 {
  font-size: 1rem;
  padding: 10px;
  max-width: 150px;
  /* margin-right: auto; */
  /* margin: 0 .5rem .5rem .5rem; */
  margin-left: 1rem;
  
  
}

.spancta {
  font-size: 1rem;
  padding: 10px;
  max-width: 50px;
  /* margin-right: auto; */
  /* margin: 0 .5rem .5rem .5rem; */
  margin-left: 1rem;
  
  
  
}


body {
    border-top: .75rem solid var(--clr-sec);

    p {
      margin-top: 1rem;
    };
}


/* HEADER NAV */
header {
  background:var(--white);
  box-shadow:var(--shadow);
  /* position:relative; */
  z-index:50;
  /* position: fixed; */
  position: relative;
  width: 100%;
    
  
  color: white;
  padding: 0 20px;
  
}

/* nav.container {
  max-width:1900px;
  margin:0 auto;
  padding:.5rem 1rem;
  display:flex;
  flex-direction:column;
  gap:0.25rem;
} */

header ul {
  list-style: none;
}
header a, nav a {
  font-size: 1.1rem;
  font-weight: 600;
}
.top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* min-height: 70px; */
            padding-top: 1rem;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            /* color: white; */
            text-decoration: none;
            max-width: 250px;
        }

        .hamburger {
            display: none;
        }

        .hamburger-container {
            display: none;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .hamburger-container span.menu-text {
            /* color: white; */
            color: var(--black);
            font-size: 14px;
            font-weight: 500;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--black);
            transition: all 0.6s ease;
            border-radius: 2px;
        }

        .secondary-nav {
            display: flex;
            gap: 10px;

            a {
              font-weight: 400;
            }
        }

        .main-nav {
            display: flex;
            gap: 10px;
            padding: 10px 0;
            padding-block: 0;
            border-top: 1px solid var(--clr-light);
        }

        .nav-item {
            position: relative;
        }

        .nav-item > a {
            color: var(--black);
            text-decoration: none;
            /* padding: 10px 15px; */
            padding: 10px 15px;
            display: block;
            transition: background 0.5s ease;
            font-size: 1.1rem;
            border-top: 3px solid transparent;
        }

        .parent a, .parent a:hover {
            /* margin-left: -15px; */
            /* background: var(--clr-light);
            border-top: 3px solid var(--clr-sec); */
        }


        .nav-item > a:hover {
            background: var(--clr-primary);
            
            border-top: 3px solid var(--clr-sec);
        }

        .nav-item a:hover, .nav-item a:focus {
            background:var(--clr-light); border-top-color:var(--clr-sec);
        }

        .nav-item.has-dropdown > a::after {
            content: ' ▼';
            font-size: 10px;
            margin-left: 5px;
        }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--clr-primary);
            min-width: 200px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            z-index: 1000;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            /* border-radius: var(--radius); */
            overflow: hidden;
        }

        .dropdown a {
            color: white;
            border-top: 3px solid transparent;
            text-decoration: none;
            padding: 1rem 20px;
            display: block;
            transition: background 0.5s ease, padding-left 0.5s ease;
            font-size: 1.1rem;
            /* padding-block: 1rem; */
        }

        .dropdown a:hover {
            background: rgba(255, 255, 255, 0.12);
            /* padding-left: 25px; */
            color: var(--white);
            border-top: 3px solid var(--clr-sec);
        }

        .nav-item:hover .dropdown {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-secondary {
            display: none;
        }

         .accentlink a {

              border-radius: var(--radius);
              background-color: var(--clr-sec);
              padding-block:1rem;
              color: var(--white);

            }

       

main a {
  color: var(--clr-sec);
  text-decoration: underline;
  font-style: oblique;
  font-weight: var(--bold);
}

main a:hover {
  text-decoration: none;
}

.hero_accent {
  color: var(--clr-sec);
  /* font-style: oblique; */
}

.accent {
  font-weight: 700;
  font-style: oblique;
  color: #666;
}
.heroContainer {
  display:flex;
  flex-wrap:wrap;
  /* gap:1rem; */
  max-width:100%;
  /* padding: 1rem;   */
  /* margin-top: 9rem 0 0 0; */
  margin: 0;
  background-color: var(--clr-primary);
  position: relative;
}

.heroContent {
  position: relative;
  background-color: var(--clr-white);
  /* background-color: rgba(255, 255, 255, 1); */
  height: 100%;
  /* padding: clamp(2rem, 35px, 4rem); */
padding: 0 1.2rem;
width: 100%;
  border-right: 1.5rem solid var(--clr-sec);

  h1 {

    /* margin-top: 10rem; */
    display: block;
    z-index: 2;
    position: relative;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
    margin: 0;
    
    
    
  }


  p:first-of-type {
    margin-top: 3rem;
  }
}

.util {
  width: 100%;
  max-width: 100%;
  padding: 0;

  a.btn_cta:first-of-type {
    margin-top: 3rem;
  }
}



.video-wrapper {
  /* position: relative; */
  /* padding-bottom: 56.25%; */
  /* height: 0; */
  /* overflow: hidden; */
  width: 100%;
  height: 100%;
  border-left: 1.5rem solid var(--clr-primary);
  
}

.video-wrapper video {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  height: 100%;
  object-fit: cover;

  position: relative;

}

.heroFlex_col:nth-child(1)::after {
  /* content: ""; */
  position: absolute;
  bottom: -100px;
  right: 0;
  z-index: 1;
  height: 100%;
  width: 200px;
background-image: url('https://pclions.com/i/brand/Paine-College_Primary-2-Color-Icon-Reverse.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}



.contentContainer {
  display:flex;
  flex-wrap:wrap;
  /* gap:1rem; */
  max-width:100%;
  /* padding: 1rem;   */
  position: relative;
}



.flexContainer {
display: flex;
justify-content: space-evenly;
/* gap: clamp(0px, .05rem, .1rem); */
flex-wrap: wrap;
position: relative;
/* margin-top: 1rem; */
}

.newsContainer, .sect_container, .fbContainer {
display: flex;
justify-content: space-evenly;
gap: clamp(0px, .09rem, .1rem);
flex-wrap: wrap;
position: relative;
/* background-color: var(--clr-black); */
/* margin-top: 1rem; */
}

.fbtemplate, .fbtemplate2, .noframe .fbtemplate {
  display: flex;
/* justify-content:center; */
gap: clamp(0px, .09rem, .1rem);
flex-wrap: wrap;
position: relative;
box-shadow:var(--shadow-lg);
border-radius: var(--radius);
/* border: .1px solid #ccc; */
/* overflow: hidden; */
/* width: 100%;
margin: 0 auto; */
}

.fbtemplate2 {
  box-shadow: none;
}

.noframe .fbtemplate {
box-shadow: none;
}

.wrapper, .wrapper_full, .wrapper_footer, .wrapper_inside {
  max-width: 1980px;
  width: 100%;
  margin: 0 auto;
}

.wrapper_footer {
max-width: 1280px;
}

.wrapper_inside {
max-width: 1280px;
}

.wrapper_full {
max-width: 1920px;
}

.masonry {
  display: flex;
  height: 100%;
  gap: 1rem;
  margin-top: 3rem;
  padding-bottom: 2rem;
 
  a {
    
        text-decoration: none;
      }
  }




.card.card-connect {
    height: 100%;
    background-image: url(https://placehold.co/630x350/png);
    background-size: cover;
    aspect-ratio: 1.8;
    color: #fff;
    z-index: 0;
    width: 100%;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* flex: 1; */
  
    
  }

  .card.card-connect a {
      transition: opacity 0.3s ease;
      background-size: cover;
      text-decoration: none;

      h3 a {
        text-decoration: none;
      }

      span a {
        text-decoration: none;
      }

      &:hover {
        text-decoration: none;
      }
      
  }

.card.card-connect.over:hover:after {
  background: var(--clr-primary) !important;
  border-radius: var(--radius);
  opacity: 1;
  
}
         
.card.card-connect.over:after {   
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg,hsla(0, 0%, 0%, 0.459) 25%,transparent 80%);
    /* border-radius: 18px; */
    z-index: -1;
    border-radius: var(--radius);
    opacity: 1;
  }

  .card.card-connect {
  position: relative; /* required for :after overlay */
  overflow: hidden;
  height: 100%;
  background-size: cover;
  aspect-ratio: 1.8;
  color: #fff;
  border-radius: var(--radius);
}

/* BASE overlay — transparent at rest */
.card.card-connect.over::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: var(--clr-primary); */
  opacity: 0;                     /* start invisible */
  transition: opacity 0.3s ease;  /* fade animation */
  border-radius: inherit;
  z-index: 1;                     /* above bg, below text */
   /* background: linear-gradient(to bottom,hsla(0, 0%, 0%, .459) 25%,transparent 80%); */
    /* border-radius: 18px; */
    z-index: -1;
}

  .card.card-connect.over:hover::after {
  opacity: 1;   /* any strength you want */
}

  .card.card-connect * {
  position: relative;
  z-index: 2;
}

.card.card-connect.over::before {
  content: '';
  position: absolute;
  opacity: 1;                     /* start invisible */
   background: linear-gradient(to bottom,hsla(0, 4%, 11%, 0.7) 5%,transparent 100%);
    /* border-radius: 18px; */
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.card.card-connect.over:hover::before {
background: transparent;
}



.col1_masonry {
  flex:1;
  /* background-color: dodgerblue; */
  border-radius: var(--radius);
  
}

.masonry_content {
  /* min-height: fit-content; */
  height: 100%;
  
  
}

.masonry_content a {

  display: flex;
  padding: 1rem 2rem;
}

h3.masonry_flex_content, span.masonry_flex_content {
  font-style: normal;
  padding: 0;
}

h3.masonry_flex_content {

  font-style: normal;
  padding-top: .5rem;
}

span.masonry_flex_content {

  font-size: 1.2rem;
  font-weight: 400;
}



.col2_masonry {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;

}

.col1_masonry img, .col2_top img, .col2_bottom img {
  border-radius: var(--radius);
}

.col2_top, .col2_bottom {
  flex: 1;
  border-radius: var(--radius);
}



.fbtemplate_col, .fbtemplate_col2 {
  width: clamp(200px, 300px, 100%);
flex-grow: 1;
flex-shrink: 1;
/* overflow: hidden; */
position: relative;

 border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
 
}

.noframe .fbtemplate_col, .noframe .fbtemplate_col img, .noframe .fbtemplate_col2 img {
  border-radius: var(--radius);
}

.fbtemplate_col div > blockquote {
  padding-block: auto;
}

.flexContainer_col, .heroFlex_col, .newsContainer_col, .fbContainer_col {
width: clamp(200px, 300px, 100%);
flex-grow: 1;
flex-shrink: 1;
overflow: hidden;
position: relative;

}

/* .flexContainer_col {
position: relative;
}

.flexContainer_col:nth-child(1)::after, .flexContainer_col:nth-child(2)::after{
content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;         
  height: 100%;
  background: var(--clr-white);
} */


.colimg4 {
  border-radius: var(--radius);
  
}

.colimg2 {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
height: 100%;
/* min-height: 400px; */
width: 100%;
object-fit: cover;
overflow: hidden;
  
}

.colimg2posts {
  border-radius: var(--radius);
align-self: flex-start;
/* min-height: 400px; */
max-width: 800px;
width: 100%;
object-fit: cover;
overflow: hidden;
/* margin-top: 15rem; */
margin-bottom: 3rem;
margin-top:-6rem;
display: block;
  
}
.heropostposition {
  display:flex;width: 100%;justify-content: space-between;align-items:center; gap: 3rem;margin: 0 auto;
}

.secpad3 {
  padding: 3rem;
  
}

.secpad4 {
  padding: 4rem;
}


.flexboxContainer, .fbContainer {
justify-content: center;
/* gap: clamp(0px, 2rem, 1.1rem); */
gap: 3rem;
max-width: 100%;
align-items: flex-start;
/* background-color: red; */

}



.fbContainer_col {
  border-top: .4rem solid var(--clr-primary);
  /* background-color: red; */
  color: var(--clr-white);
  padding-top: 1rem;
  margin-top: 1rem;


  h2 {
    text-shadow: 2px 2px 0 var(--clr-sec),5px 5px 0 var(--clr-primary);
    font-size:clamp(2.25rem, 60px, 3.815rem);
    margin-top: 1rem;
    padding-bottom: 0;
  }

  p {
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 0;
    padding-bottom: 0;
  }
}

.nogap {
  gap: 0;
  position: relative;
  z-index: 1;
  
}

.fbContainer .nogap {
 /* max-height: 400px;
 height: 400px; */
 overflow: hidden;
 position: relative;
 z-index: 1;
 
}


.fbtemplate_col:nth-child(2), .noframe .fbtemplate_col:nth-child(2) {
  padding: 0 2rem;
  background-color: var(--clr-light);
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  position: relative;
  

  display: flex;
    flex-direction: column;
    justify-content: center;

  
}

.noframe .fbtemplate_col:nth-child(2) {

  background-color: var(--white);
}

.noframe .fbtemplate p {
  font-size: 1.5rem;
}

.colcontent, .fbtemplate_col, .fbtemplate_col2 {
    padding-top: 0;
    margin-top: 0;

  }

  .noborder {
    border:none;
  }

.sec {
  /* background-color:var(--clr-sec); */
  background-image: linear-gradient(
    to top,
    #D3AC86 3%, var(--clr-sec)
  );
}

.white {
  position: relative;
  /* background-color: var(--clr-white); */

  z-index: 1;
  
   h2 {
      color: var(--clr-black);
      text-shadow: none;
      margin-top: 0;
    }

    p {
      color: var(--clr-black);
    }
  
}

.white blockquote p{
  color: #555;
  font-weight: 500;
  font-size: clamp(1.3rem, 4vh, 2.1rem);
  margin-top: 3.5rem;

}

.white cite {
  color: #555;
  font-weight: 700;
  font-size: clamp(1.3rem, 27px, 1.8rem);
  margin-left: 0px;
}

.white blockquote::after {
  position: absolute;
  z-index: 6;
  background-color: var(--clr-sec);
  height: 3px;
  width: 130px;
  content: '';
  display: block;
  
  
}

.fbtemplate_col:nth-child(2)::before, .noframe .fbtemplate_col:nth-child(2)::before {
position: absolute;
content: '"';
height:150px;
width: 150px;
/* background-color: red; */
font-size: 10rem;
font-weight: 700;

top: -80px;
left: 30px;
color: var(--clr-primary);
z-index:6;
}

.noframe .fbtemplate_col:nth-child(2)::before {
content:'';
}

.fbtemplate_col2, .fbtemplate_col2 .colimg2 {
  border-radius: var(--radius);
  
}

.fbtemplate_col2:nth-child(1) {
margin-right: 1rem;
}

.fbContainer_col + .fbContainer_col {
/* margin-left: .5rem; */
}


.heroFlex_col img, .inside .heroFlex_col img {
/* flex: 1 1 300px; */
height: 100%;
object-fit: cover;
  /* overflow: hidden; */
}



.heroFlex_col {
position: relative;
overflow: visible;

}

.heroFlex_col:nth-child(1) {
  flex: 3 1 0;
}


.heroContainer .flexContainer  {
  flex: 1 1 3;
}

.btns-image-cards-container {
  border-left: 1.5rem solid var(--clr-primary);
}

.flexContainer_col:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1.5rem;
  background: var(--clr-primary);
  z-index: 1;                   /* Ensures it's on top of image */
  pointer-events: none;
  
  /* box-shadow: -10px 0 0 red; */
  
}

.flexContainer_col + .flexContainer_col {
/* margin-left: .5rem; */
}

.newsContainer_col p, .flexContainer_col p {
position: relative;
 width: 100%; /* Adjust as needed */
 overflow: hidden;
/* white-space: nowrap;*/
 text-overflow: ellipsis;
max-height: 10em;

}

.newsContainer_col p::after, .flexContainer_col p::after {
 content: '';
 position: absolute;
 top: 0;
 right: 0;
 width: 100%; /* Width of the fade effect */
 height: 100%;
 background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.imgWrap {
    width: 100%;
    height: 100%;                  
    overflow: hidden;
  }

.imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;              
    display: block;
  }

.sect_events, .sect_stats {
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  background-color: var(--clr-light);
}

.sect_events

.sect_events p {
  font-size: 1.2rem;
}

.sect_events {
  /* margin-top: -1.3rem; */
}

.sect_stats {
  /* background-color: var(--clr-primary); */
  background-image: linear-gradient(
    to bottom,
    #420079 3%, var(--clr-primary)
  );
}

.sect_stats > .wrapper > .sect_container > h2 {
    color: var(--clr-white);
    margin-top:-1.3rem;
  }

  .newsevent {
    padding: 2.3rem 1rem 4rem 1rem;
    

  }

 .pagination-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.pagination-wrapper ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 0.5rem;
}

.pagination-wrapper li {
    
}

.pagination-wrapper a,
.pagination-wrapper span {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pagination-wrapper a:hover {
    background-color: #6c63ff; /* example accent color */
    color: #fff;
    border-color: #6c63ff;
}

.pagination-wrapper .current {
    background-color: #6c63ff;
    color: #fff;
    border-color: #6c63ff;
}


section.newsevent h2 {
    color: var(--clr-black);
    font-weight: 400;
    
    
    
  }

  .newsevent span {
    
    
    display: block;
    width: 100%;
  }

.sect_container {
      width: 100%;
      max-width: 1200px;
      margin: 2rem auto;
      /* padding: 0 1rem; */

      h2 {font-weight: 400;margin-right: auto;}
    }

.sect_flex_container {
      display: flex;
      flex-wrap: wrap; 
      justify-content: space-evenly;             
      gap: 1rem;                  
    }

.sect_flex_col {
      flex: 1 1 calc(50% - 1rem);
      min-width: 280px;
    background-color: var(--clr-light);
    border-radius: var(--radius);
}

.sect_flex_content {
      background: #fff;
      
      border-radius: 0.75rem;
      box-shadow: 0 2px 28px rgba(0,0,0,.01);
      height: 100%;                 /* equal height in a row */
      display: flex;
      
      
      /* flex-direction: row; */

      h2 {color: var(--clr-primary); font-weight: 700; font-size: 1.6rem;padding-bottom: 0;}
      h3 {color: #270047; font-size: 1rem; font-weight: 600;padding: 0;}
      h4 {font-size: 1rem;font-weight: 400;padding: 0;margin:0;display:inline;}
    }

.sect_flex_content > div {
  flex: 3 1 0;
  padding: 1rem;
}

    .sect_flex_content img {
      width: 100px;
      height: 100%;
      object-fit: cover;
      border-radius: 0.5rem;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      margin-bottom: 1rem;
    }

    /* .sect_flex_content h2 { margin:0 0 .4rem; font-size:1.25rem; }
    .sect_flex_content h3 { margin:0 0 .6rem; color:#555; font-weight:500; }
    .sect_flex_content h4 { display:inline; margin:0; font-weight:600; }
    .sect_flex_content h4 + h4::before { content:" • "; margin:0 .4rem; } */

    .sect_flex_content a {
      align-self: center;
      /* margin-right:auto; */
      padding: 1rem;
    }
    /* .sect_flex_content a {
      margin-top: auto;           
      align-self: flex-start;
      background:#0066cc;
      color:#fff;
      text-decoration:none;
      padding:.5rem 1rem;
      border-radius:.4rem;
      font-weight:600;
    }
    .sect_flex_content a:hover { background:#004999; } */

    .overlap_section {
      --overlap-size: 350px;
      /* background-color: red; */
      background-image: 
      linear-gradient(
        to bottom,
        var(--clr-light) var(--overlap-size),
        var(--clr-primary) var(--overlap-size)
      );
    }

    .top {
      /* position: relative;
      z-index: 1; */
    }
    .bottom {
      /* background-color: dodgerblue; */
      /* padding-block: 4rem; */
    }

     .sect_flex_content > div:first-of-type {
      align-content: center;
    }
   
    .newscards-container {
      display: flex;
      flex-wrap: wrap;
      gap: .8rem;
      max-width: 1400px;
      margin: 0 auto;
      justify-content: center; /* wrapped card goes left */
   
    h2 {
      color: var(--clr-black);
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: -1rem;
   
    }
    }

    .newscard {
      flex: 1 1 330px;            /* Magic line: grow | shrink | ideal width ≈ 300–380px */
      max-width: 520px;           /* Prevents cards from becoming too wide */
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      
    }

    .newscard-img {
      width: 100%;
      min-height: 230px;
      max-height: 300px;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .newscard-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }

    

    /* .newscard-title {
      font-size: 1.5rem;
      margin-bottom: 14px;
      color: #111;
    } */

    h3.newscard-title a {
        color: #111;
        text-decoration: none;
        font-style:normal;
        font-weight: 600;
        font-size: 1.7rem;
        text-align: left !important;
       
    }

     h3.newscard-title a:hover {
          text-decoration: underline;
        }

    .newscard-title {
      margin-bottom: -1rem;
      line-height: 2.4rem;
    }
    p.newscard-text {
      /* color: #444; */
      /* line-height: 1.65; */
      margin-bottom: -10px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      position: relative;
      line-height: 1.8rem;
      font-weight: 400;
    }

    .newscard-text::after {
      content: '';
      position: absolute;
      bottom: -5px; left: 0; right: 0;
      height: 200px;
      background: linear-gradient(transparent, var(--white));
    }

    .newscard-btn {
      align-self: flex-start;
      padding: 13px 30px;
      background: #0066ff;
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
    }

    .newscard-btn:hover { background: #0052cc; }
   
.footercta ul, footer ul {
  list-style: none;
}
.footercta {
width: 100%;
height: auto;
margin: 0;
padding: 0;
/* background-color: orange; */
/* margin-block: 3rem; */

}

.footercta a.btn_cta2 {

  font-size: 1.5rem;
  /* padding: 10px; */
  max-width: 200px;
  /* margin-left: 0rem; */
  margin: 0;
  padding: 1rem;
  
  &::after {
     
      /* margin-left: 1rem;
      margin-right: 1rem; */
    }
}



.footerctaContainer {
  
  
  /* background-image: url(https://pclions.com/i/site/hero4web.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  /* max-height: 300px;
  min-height: 200px; */
  /* height: 100%; */
  position: relative;
  width: 90%;
  background-color: var(--clr-light);
  padding: 2rem 1rem 4rem 1rem;
  z-index: 2;
  border-radius: var(--radius);
margin-top: 3rem;
margin-bottom: -5rem;

h3 {
  text-align: center;
  color: var(--black);
  font-weight: 500;
  font-size: clamp(2rem, 60px, 3rem);
  margin-bottom: 2rem;
}

}

.footerctaContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:2rem;
  width: 100%;
  /* border: 1px solid saddlebrown; */
  /* flex: 1 1 calc(50% - 1rem); */
  
  

  a {
    /* flex-grow: 1;
    max-width: 100%; */
  }
}

.footerctaImg {
  background-image: url(https://pclions.com/i/site/haygood.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 600px;
  height: 100%;
  position: relative;
  background-position: 0 -300px;
  z-index: 1;
/* opacity: ;
 filter: grayscale(100%); */
  overflow: hidden;
}

footer {
width: 100%;
margin: 0 auto;
/* background-color: var(--clr-primary); */
background-image: linear-gradient(
    to bottom,
    #420079 3%, var(--clr-primary)
  );
/* padding: 4rem; */
display: flex;
flex-direction: column;
/* justify-content: center; */
/* align-content: flex-end; */
border-top: 3rem solid var(--clr-sec);


}

footer ::selection {
  background-color: var(--clr-sec);
}

 .footer_nav {
    display: flex;
    /* padding: 4rem; */
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    /* width: 100%; */
    gap: 2rem;
    
    position: relative;
    z-index: 1;
    
    padding-inline:10px;
  }

  
  .footer_col {
    /* background-color: dodgerblue; */
    /* flex-grow: 1;*/
    /* border: 2px solid peru; */
    flex-shrink: 1; 
    max-width: 100%;
    width: clamp(150px, 200px, 100%);
    padding-bottom: 2rem;


    h3 {
      font-size: 1.3rem;
      margin-bottom: -20px;
      color: var(--clr-white);
      margin-top: 3.3rem;
    }

    ul {
      margin-top: .5rem;
    }
    li a {
      font-size: 1.2rem;
      color: var(--clr-white);
      margin-bottom: .5rem;

      &:hover {
        text-decoration: underline;
      }
    }

    p {
      color: var(--clr-white)
    }
}

.footer_col + .footer_col {

  padding-right: 1rem;
}

.footer_col:last-of-type {
  /* background-color: #400074; */
  background-color: #390069;
  padding: 2rem;
  margin-top: -1.5rem;
  /* border-top: .5rem solid var(--clr-sec); */
  /* width: 450px; */
  min-width: 100px;
  flex-grow: 1;
  flex-shrink: 0;
  /* margin-right:-1rem; */
  margin-left: auto;
  position: relative;
  z-index: 6;
  box-shadow:var(--shadow);

  
}


.footer_col:last-of-type .brand {
    max-width: 250px;
    width: 90%;
    /* display: inline; */
    /* margin: 0 auto; */
    margin-top: -1rem;
    margin-bottom: 2rem;;
    margin-left: -1.5rem;
  }

.copyright {
  background-color: #400074;
  color: var(--clr-white);
  /* display: flex; */
  /* justify-content: center; */
  
  /* margin-block:auto; */
  /* width: 100%; */
  text-align: center;
  font-size: 1rem;
  padding-block: 1rem;

  h3 {
      font-size: 1.1rem;
      margin-bottom: -20px;
      color: var(--clr-white);
    }

  

    p {
      color: var(--clr-white);
    }
}

address {
  color: var(--clr-white);
  font-style: normal;
  
  a {
      /* font-size: 1rem; */
      color: var(--clr-white);
      font-style: normal;
    }
  }



  /* Inside Styles */

.inside .heroContent {
  align-items: center;
}

.inside .heroFlex_col:nth-child(1)::after {
  content: none !important;   /* modern browsers */
  display: none !important;
}

.inside {
  /* max-height: 400px; */
  height: 100%;
  overflow: hidden;
  
}

.inside .heroContent {
  background-color: transparent;
  border-right:none;
}

.inside:nth-child(1) {
/* flex-shrink: 0; */
}

.inside .heroFlex_col:nth-child(2) {
  /* flex: 2; */
  /* flex-grow: 1; */
}

.inside .heroFlex_col:nth-child(1) {
  flex-grow: 1;
  /* flex: 1; */
  align-self: flex-end;
  margin-bottom: 4rem;

  h1 {
    color: var(--clr-white);
    border-left: 5px solid var(--clr-sec);
    padding-left: 2rem;
    padding-block: 1rem;
    margin-top: 3rem;
    font-size: clamp(4.5vh, 5vh, 40rem);
    font-weight: 800;
    text-transform: none;
  }
}



.inside .heroContainer, .insideheroContainer {
  background-image: linear-gradient(
    to top,
   hsla(var(--h) var(--s) calc(var(--l) - 8%) / 1), var(--clr-primary)
  );
}


.inside .spacer {
display: none;
}

.insideheroContainer {
  /* background-image: url(https://pclions.com/i/site/students2_4webbox.JPG); */
  background-repeat: no-repeat;
  background-size: cover;
  
  position: relative;
  /* background-position-y: -150px; */

}

.global-size {
max-height: 700px;
  min-height: 600px;
  height: 100%;
}

.hero-img {
width: 100%;
  object-fit: cover;
  max-height: 400px;
  min-height: 300px;
  height: 100%;
  position: relative;
  object-position: top;

}

.insideheroContent {

  /* margin-block: 2rem; */
  padding-inline: 2rem;
  position: absolute;
  inset: 0 auto 0 0;          /* top | right | bottom | left */
  margin: auto;               /* vertically centers it */
  /* width: fit-content;         or your fixed width, e.g. 300px */
  height: fit-content;
  width: 100%;
  
  h1 {
    color: var(--clr-primary);
    font-weight: 700;
    /* font-size: clamp(20px, 8vw, 40px); */
    font-size: clamp(.5rem, 5vw, 2rem);
    background: hsla(var(--lighthsl) / 95%);
    
    margin: 0;
    padding: 1rem;
    line-height: normal;
    display: inline;
    white-space: nowrap;
    border-bottom: .5rem solid var(--clr-primary);
   
  }
}


.insider {
	max-width: 1900px;
	/* padding-inline: 3rem; */
	margin-inline: auto;
}

.insider {
	padding-block: 2rem;
	display: grid;
	grid-template-columns: 320px 1fr;
	align-items: start;
	gap:1rem;
  /* margin-inline: 1rem; */


	/* overflow: visible; */
}

aside {
	position: sticky;
	top: 2rem;
  /* box-shadow: var(--shadow); */
  box-shadow: 0 6px 20px rgba(0,0,0,.17);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  background-color: #fcfcfc;

	/* background-color: lightblue; */
}

.inside_article_section {
  grid-column: 2 / -1;
  grid-row: auto;
}

.inside_article {
/* padding-inline: 3rem; */
display: flex;
 flex-wrap: wrap;
  gap: 10px; /* spacing */
  padding: 1rem;
  h3 {
    color: #333;
  }
  
}

section.single {
  padding: 1rem;
}

.inside_article .articlecol {
  
    width: auto !important;
}

.inside_article > p {
  padding: 0 2rem 0 0;
}

.articlecol {
  flex: 1 1 calc(50% - 10px);
  margin: 0 .1rem;
  
  p {
    padding-left: 1rem;
    padding-right: 1rem;
    
  }
}

.articlecol:last-of-type {
  /* padding-right: 1rem; */
}
.articlecol:nth-of-type(2) {
  background-color: dodgerblue;
}

.widget {
	/* min-height: 250px; */
	
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: var(--radius-lg);
}

.widget:not(:last-child) {
	margin-block-end: 1rem;
}

/* .widget.top {
	background: repeating-linear-gradient(
		45deg,
		#f6ba52,
		#f6ba52 10px,
		#ffd180 10px,
		#ffd180 20px
	);
} */

.widget.bottom {
	background-image: linear-gradient(
    to bottom,
    #6500B9 3%, var(--clr-primary)
  );
  color: var(--clr-white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  padding-block: .5rem;

  h3 {
    text-align: center;
    font-size: 1.3rem;
  }

  a {
    padding: 15px 25px;
    background-color: var(--clr-white);
    color: var(--clr-black);
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    margin-block: 1.5rem;
    border: 3px solid var(--clr-light);
    box-shadow: var(--shadow);

    &:hover {
      background-color: var(--white);
    }
  }
}

.childpages {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  
  padding: 2rem 1rem 0 1rem;
  
ul {
  list-style: none;
}
  a {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    margin-left: 1rem;
    font-style: normal;
    padding-left: .7rem;
    border-left: 2px solid transparent;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    transition: color .18s ease, transform .12s ease;
    display: block;

    &:hover, .current_page_item:hover {
      border-left: 2px solid var(--clr-primary);
      font-weight: 700;
      color: var(--clr-primary);
    }

    &:active {
      color: var(--clr-primary);
      border-left: 2px solid var(--clr-primary);
      font-weight: 700;
    }
    
    &:focus {
      color: var(--clr-primary);
      border-left: 2px solid var(--clr-primary);
      font-weight: 700;
    }
  }
  h2 {
      padding-bottom: 0;
    }
}



li.current_page_item > a {
      border-left: 2px solid var(--clr-primary);
      font-weight: 500;
      color: var(--clr-primary);
    }

    /* ===== SUMMARY RESET ===== */
.aside-mobile-menu summary {
  display: block;
  cursor: pointer;
  list-style: none;
  background-color: var(--clr-light);
  padding-block: 1rem;
  color: var(--clr-black);
   position: relative;
  padding: 14px 44px 14px 16px; /* room for arrow */
  font-weight: 600;
  border-radius: var(--radius);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  
}

.aside-mobile-menu summary::marker {
  content: "";
}

.aside-mobile-menu summary::-webkit-details-marker {
  display: none;
}

/* Arrow */
.aside-mobile-menu summary::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.aside-mobile-menu[open] summary::after {
   transform: translateY(-50%) rotate(180deg);
  
  
}

/* ===== ANIMATION (THIS WORKS) ===== */
.aside-menu-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.aside-mobile-menu[open] .aside-menu-wrapper {
  max-height: 500px; /* must exceed menu height */
}




     .table-container {
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
    overflow: hidden;               /* prevents any scroll */
    /* margin-right: 2rem; */
    font-size: 1.1rem;
    
  }
  table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;            /* crucial: forces column widths */
    
  }
  thead { background: #eee; font-size: 1rem;}
  th, td { padding: 16px; text-align: left; word-wrap: break-word; }

  /* Column widths – adjust these percentages as you like */
  .table-container th:nth-child(1), .table-container td:nth-child(1) { width: ; font-weight: 500;background-color: #eee;font-size: 1rem;}   
  .table-container th:nth-child(2), .table-container td:nth-child(2) { width: ; } 
  .table-container th:nth-child(3), .table-container td:nth-child(3) { width: ; } 
  .table-container th:nth-child(4), .table-container td:nth-child(4) { width: ; } 
  .table-container th:nth-child(5), .table-container td:nth-child(5) { width: ; } 
  
  tbody tr:nth-child(even) { background: #f1f1f1;}
  tbody tr:hover { background:var(--clr-sec);color: var(--white); }
  th:nth-child(1), td:nth-child(1) {
    text-align: left;
    border-right: .5px solid #ccc;
    color:initial;
  }

  /* ← CENTER all the other columns */
  th:nth-child(2), th:nth-child(3), th:nth-child(4),
  td:nth-child(2), td:nth-child(3), td:nth-child(4) {
    text-align: center;
}                 

.heading-img {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  
}

.flexibleutil {
   /* display: flex; */
  /* justify-content: space-between; */
  /* flex-direction: row; */
  /* width: 100%; */
  
}

.flexstaff {
     /* max-width: 900px; */
     width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: clamp(.05px, .5rem, .6rem);
    flex-wrap: wrap;
    margin: 0 auto;
    background-color: #f1f1f1;
    padding: 1rem;
    color: #131313;
    text-wrap: wrap !important;
    align-items: flex-start;

}

.flex2_col {
  /* padding: 1.2rem; */
  /* width: clamp(200px, 100%, 300px);
    flex-grow: 1;
    flex-shrink: 1; */
    
     flex: 1 1 calc(50% - 20px);
    background-color: #f1f1f1;
    padding: 1rem;
    color: #131313;
    text-wrap: wrap!important;
    
    img {
      border-radius: var(--radius);
    }
}

.email-link::before {
    content: "";
    background-image: url("https://static.wixstatic.com/media/7fabe5_aafd3569660546628576bf0df0a5f879~mv2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 6px;
    vertical-align: middle;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-top: -5px;
}

    .credEmail {
      text-align: center;
    margin-top: -.6rem;
    }

a.email-link {
    font-size: 1.4rem;
    display: block;
    line-height: 1.7rem;
    color: var(--clr-black);
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
}

.h2Content {
  font-weight:600;
  padding-block: 1rem;
  font-size: 1.7rem !important;
}

.insideherosingle {
max-height:500px;
min-height: 300px;
}







    .hero, .herobackground {
      position: relative;
      max-height: 600px;            /* Maximum height capped at 400px */
      min-height: 600px;            /* Optional: minimum to avoid collapsing too much on small content */
      /* height: 80vh; */
      
      display: grid;
      align-items: center;
      
      overflow: hidden;             /* Prevents content overflow on small screens */

      /* background-image: linear-gradient(
    to top,
   hsla(var(--h) var(--s) calc(var(--l) - 8%) / 1), var(--clr-primary)
  ); */
      background-size: cover;
      background-position: center top;
      
      background-repeat: no-repeat;

      color: white;
    }

    .herobackground {
background-position-y: -100px;
padding: 2rem 1.5rem;
}

    .hero-container {
      /* max-width: 1200px; */
      margin: 0 auto;
      width: 100%;
      margin-top: auto;
    margin-bottom: 4rem;
      
    }

    .hero-content {
      /* max-width: 600px; */
    }

   .hero h1 {
  color: var(--clr-primary);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.5vw, 3rem);
  line-height: 1.35;
  margin: 0;

  display: inline;
  white-space: normal;

  padding: 0.8rem 1rem;

  background:
    linear-gradient(
      to bottom,
      hsla(var(--lighthsl) / 95%) 0%,
      hsla(var(--lighthsl) / 95%) calc(100% - 0.5rem),
      var(--clr-primary) calc(100% - 0.5rem),
      var(--clr-primary) 100%
    );

  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

    

    /* === Leadership Section === */

    .hero_h1img_lr {
            width: 100%;
            /* min-height: 400px; */
            background-image: linear-gradient(
            to top, 
            hsla(var(--h) var(--s) calc(var(--l) - 8%) / 1), var(--clr-primary));
            color: white;
            
        }

        .hero_h1img_lr_container {
            max-width: 1900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
        }
        
        .hero_h1img_lr_content {
            padding: 2rem;
            /* padding-left: 5rem; */
            max-width: 800px;
            margin-top: auto;
            margin-bottom:3rem;

           p {
            text-align: left;
           }
            
        }
        
        .hero_h1img_lr h1 {
            /* font-size: clamp(2.5rem, 5vw, 3rem); */
            font-size: clamp(2.1rem, 5.5vw + 0.3rem, 4rem);
            /* margin: 0 0 1rem 0; */
            /* line-height: 1.2; */

            color: var(--clr-white);
    border-left: 5px solid var(--clr-sec);
    padding-left: 2rem;
    /* padding-block: 1rem; */
    /* margin-top: 3rem; */
    margin-bottom:auto;
    font-weight: 800;
    text-transform: none;
    text-align: left;
    padding-top: 1.3rem;
    
        }
        
        .hero_h1img_lr p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-size: clamp(1rem, 5vw, 1.3rem);
            margin-left: 2.3rem;
        }
        
        .hero_h1img_lr_image-wrapper {
            position: relative;
            height: 100%;
            /* min-height: 80vh; */
            max-width: 500px;
            /* min-width: 600px; */
            width: 100%;
            margin-left: auto;

            min-height: 500px;
            /* border: 5px solid dodgerblue; */
            
        }
        
        .hero_h1img_lr_image {
            background-image: url('/wp-content/uploads/2026/01/herofallback.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
             max-width: 100%;
            height: 100%;
            width: 100%;
            background-position-y: 0px;
            background-color: ; /* Fallback */
            
        }
        


/* === Stacked Hero Section === */

.hero_stacked {
      position: relative;
      width: 100%;
      min-height: 300px; /* Adjust as needed */
      background-image: linear-gradient(
            to top, 
            hsla(var(--h) var(--s) calc(var(--l) - 8%) / 1), var(--clr-primary));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      
      box-sizing: border-box;
      padding: 1.3rem 1.3rem 60px 1.3rem;
      
    }

    .hero_stacked h1 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      margin: 1rem;
      z-index: 2;
      font-weight: 700;
    }

    /* Container for the image, positioned to overlap the bottom of hero */
    .hero_stacked_image-container {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: -80px; /* Pulls the entire container up; adjust if needed */
      z-index: 10;
      margin-bottom: 3rem;
      
    }

    #hero_stacked-image, .hero_stacked-image {
      width: 80%;
      max-width: 800px;
      height: auto;
      border-radius: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      margin-top: 20px; /* This creates the exact 20px overlap at the top */
    }
   
    .hero_samerow {
      background-image: linear-gradient(
        to top, 
        hsla(var(--h) var(--s) calc(var(--l) - 8%) / 1), 
        var(--clr-primary)
      );
      color: white;
      position: relative;
      /* overflow: hidden; */
      /* padding: 1.3rem 1.3rem 60px 1.3rem; */
      padding: 2rem 1rem;
      
    }

    .hero-grid_samerow {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      align-items: center;
    }

    .hero-content_samerow {
      text-align: center;
    }

    .hero-content_samerow h1 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      margin: 1rem;
      font-weight: 700;
      
    }

    .hero-image-wrapper_samerow {
      justify-self: center;
      margin-bottom: calc(-1 * var(--overlap)); /* ← this creates the downward overlap */
    }

    .hero-image_samerow {
      width: 100%;
      max-width: 780px;
      height: auto;
      border-radius: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      display: block;
    }

    .events-archive-content {
        padding-inline: 1rem;
      }

      .job-title1 {
  font-style: oblique;
	font-weight:600;
  text-align: center;
}

.job-align {
  text-align: center;

  p {
    margin-top: 0;
  }

  a:hover {
    text-decoration: underline;
  }
}

.employee-links1 {
    /* list-style: none;
    padding: 0;
    margin: 0.5rem 0 0; */
	display: flex;
    flex-wrap: wrap;      /* allows wrapping */
    gap: 0.25rem;         /* space between items */
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
justify-content:center;
background-color: #f1f1f1;
border-radius: 30px;
margin-inline: 1rem;
}

.employee-links1 li::after {
    content: "•";
    margin-left: 0.25rem;
	color: #777777;
}

.employee-links1 li:last-child::after {
    content: "";
}


.employee-links1 li {
    /* margin-bottom: 0.25rem; */

    white-space: nowrap; 
	display: flex;
    align-items: center;


}

.employee-links1 a {
	text-decoration: none;
	color: #777777;
font-size: 1rem;
	font-weight: 600;
	pointer-events: auto !important;
    cursor: pointer !important;
	text-align:center;
}

.employee-links1 a:hover {
    text-decoration: underline;
	pointer-events: auto !important;
    cursor: pointer !important;
}

.employee-links1 a:hover {
    text-decoration: underline;
}

.employee-bio1 {
margin-inline: 2rem;
margin-top: 2rem;

}

.employee-bio1 p {
    /* font-size: 0.9rem; */
    /* line-height: 1.6; */
    margin-top: 0.75rem;
	text-align:left;
}

.employee-bio1 li {
	margin-left: 1rem;
}
.employee-bio1 a {
    text-decoration: underline;
}


.job-posting1 {
	max-width:1200px;
	width: 100%;
	margin:2rem auto;
	padding:0 2rem;
	border:1px solid #ddd;
	border-radius:8px;
	
}

.job-featured-image1 {
	
}

.job-meta1 {
	background-color: #f1f1f1;
	border-radius: 10px;
	padding: 2rem;
	border: 1px solid;
	margin-block: 3rem !important;
}

.job-description1 ul, .job-description1 p {
		margin-bottom: 2rem;
	margin-top: 0;
}

.job-description1 li {
	margin-left: 1rem;

}

.job-description1 h2 {
	font-size: 1.5rem;
	margin-top: 1rem !important;
	margin-bottom: 0 !important;
}

.apply-button1 {
	
	
	display:inline-block;
	padding:0.75rem 1.5rem;
	background: #4e008e;
	color:#fff;
	border-radius:100px;
	text-decoration:none;
	text-align:center;
	font-size: 1.5rem;
	font-weight: 600;
  height: 100%;
}


.embedded-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.post-item {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
}
.post-item img {
    border-radius: 8px;
}
.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #4E008E;  /* your brand color */
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.blog-filters { display: flex; gap: 1rem; margin-bottom: 2rem; }
.blog-filters select { padding: 0.5rem; }
/* Make all post-items the same height using flex or grid */
.blog-archive, .embedded-posts {  /* or whatever class wraps your .post-item divs */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Each card as a flex column */
.post-item {
    display: flex;
    flex-direction: column;
    height: 100%;                /* Fill the grid cell height */
    background: #fff;            /* Optional: card background */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;            /* Prevent image overflow */

    h2 {
      margin-top: 1rem;
      line-height: 2rem;
    }

    h2 a {
      font-style: normal;
      font-weight: 600;
      color: #131313;
      text-decoration: none;
      font-size: 1.7rem;
      padding-top: 1rem;
      line-height: 2rem;
      
      &:hover {
        text-decoration: underline;
      }
    }


  }

.post-item:nth-child(odd) {
    background: #f1f1f1;
}
/* Image fills the top part fully */
.post-item a:first-child {       /* Targets the <a> wrapping the image */
    /* flex: 1;                     Grow to fill available space */
    /* display: block; */
    position: relative;
    overflow: hidden;
}

.post-item img {
    width: 100%;
    height: 100%;                /* Fill the entire height of its container */
    object-fit: cover;           /* Crop to fit without distortion */
    object-position: center top;     /* Center the image */
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

/* Text content stays at bottom */

.post-item p.excerpt,
.post-item .read-more {
    padding: 0rem;
    margin: 0;
}

.post-item p.excerpt {
  margin-bottom: 2rem;
}

.post-item .read-more {
    margin-top: auto;            /* Push button to bottom */
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background: #4E008E;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.post-item a:first-child {
    aspect-ratio: 16 / 9;       /* or 16 / 9 for wider */
    height: auto;
}


.newsarchives a {
  display:inline;
  text-decoration: none;
  color: #777;
  font-style: normal;

  &:hover {
    text-decoration: underline;
  }
}

.newsarchives {
  padding-right: 1rem;
}


.past-presidents {
  ul {
    margin-left: 0rem;
    list-style-type: none;
    font-style: oblique;
    color: #666;
    font-size: 1.1rem;
  }
}

.two-column-layout .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: space-evenly;
}

.two-column-layout .left-column,
.two-column-layout .right-column {
    /* flex: 1 1 40%; */
    /* min-width: 400px; */
    width: 100%;
}

.left-column, .right-column {
flex: 1 1 calc(50% - 20px); 
}

.right-column {
  /* padding-left: 2rem; */
}

.view-all-events-button {
max-width: 100%;
    margin-block: 0;
}



@media (max-width: 768px) {
    .two-column-layout .left-column,
    .two-column-layout .right-column {
        flex: 1 1 100%;
        padding: 0;
    }
}


.givecontainer {
width:100%;
height:600px;

    
}
      
.giveimg {
background-repeat:no-repeat;
background-size:cover;
width:100%;
height:100%; 
border-radius: 30px;
     background-image:  linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0) 100%
  ),
  url('https://lesmcc14.dream.press/wp-content/uploads/sitecores/graduation_service.jpg');
}
      
.givecontent {
        
  padding: 3rem;
  max-width:1200px;
  width:60%;
  display:flex;
  flex-direction: column;
  align-items: stretch;
  min-height:600px;
  height: 100%;
   text-shadow: 0 2px 8px rgba(0,0,0,0.5);

  h1 {
    color:#f1f1f1;
    font-style:oblique;
    font-size: clamp(2.5rem, calc(6vw + .5rem), 3rem);
    line-height: 3rem;
  }

  p {
    color:#f1f1f1;
    margin-top:auto;
    margin-bottom: 2rem; 
    font-size: clamp(1.5rem, calc(4vw + .5rem), 1.5rem);
  }
      
}



#inlinegivebox {
  width: clamp(50%, 400px, 100%);
    margin: 0 auto;
    /* padding: 1.2rem; */
    border: .2px solid #e0e0e0;
    margin-bottom: -2rem;
    margin-top: 2.5rem;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.09);
    position: relative;
    z-index: 2;

    p {
      margin-top: 2rem;
      text-align: center;
       
      padding-inline: 2rem;
      padding-bottom: 2rem;
      font-style: oblique;
    }
}

p.donate {
  font-weight: 600;
  font-size:clamp(1.5rem, calc(3vw + .5rem), 3rem);;
}

a.paypal, a.paypal:visited {
    background-color: #003087;
    border-radius: 50rem;
    color: #fff!important;
    padding: 14px 25px;
    font-size: 1.15rem;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

a.givelify, a.givelify:visited {
    background-color: #F85520;
    border-radius: 50rem;
    color: #fff!important;
    padding: 14px 25px;
    font-size: 1.15rem;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

a.cashapp, a.cashapp:visited {
    background-color: #00D64F;
    border-radius: 50rem;
    color: #fff!important;
    padding: 14px 25px;
    font-size: 1.15rem;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

  .btns-image-cards-container {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      justify-content: stretch;
      max-width: 1920px;
      width: 100%;
      margin: 0 auto;
    }

    .btn-image-link {
      flex: 1 1 33.333%;           /* this now actually works */
      /* Remove: width: 100%; */
      min-height: 380px;
      /* Remove height: 100% unless you really need equal height stretching */
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #f1f1f1;
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      transition: transform 0.3s ease;
      background-size: cover;
      background-position: center top;
    }

    .btn-image-link::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #4E008E;
  
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 1;
    }

    

    .btn-image-link:hover::after {
      content: "";
      background: url('http://pc1882.jbo/wp-content/uploads/2026/01/Paine-College_Primary-2-Color-Icon-Reverse.png') no-repeat center bottom;
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 2;
      position: absolute;
      background-size: contain;
      width: 100px;
      height: 100%;
      bottom: 50px;
    }

    .btn-image-link:hover::before, .btn-image-link:hover::after {
      opacity: 1;
    }

    .btn-image-link span {
      position: relative;
      z-index: 3;
      padding: 1rem 2rem;
      text-align: center;
    }

   .breadcrumbs {
  font-size: 0.9rem;
  margin: 0;
  background-color: #f1f1f1;
  width: auto;
  padding: .2rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  

  &:nth-child(1) {
    margin-left: .5rem;
  }
}

.breadcrumbs li::after {
  content: "/";
  margin-left: 0.5rem;
  color: #999;
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs a {
  text-decoration: none;
  color: #666666;
  font-size: .9rem;

  &:hover {
    text-decoration: underline;
  }
}



.breadcrumbs [aria-current="page"] {
  color: #8d8d8d;
}


.presidentlink {
  a {
    color: var(--clr-sec);
  
    &:hover {
      text-decoration: underline;
    }
  }

}