<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import 'utilities.css';
:root{
    --nrdcMain: #1e714dff;
    --nrdcDark: rgb(15, 58, 39);  
}

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
html{
  padding: 0;
  margin: 0;
}
body{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.page-wrapper{
  margin: 9rem auto 0 auto;
}

/* POST SLIDER */
.post-slider{
  margin: 65px auto 0 auto;
  position: relative;
  padding-bottom: 20px;
}
.post-slider .next{
  position: absolute;
  top: 50%;
  right: 30px;
  font-size: 24px;
  background: #eeeeee;
  border-radius: 50px;
  color: var(--nrdcMain);
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1;
}
.post-slider .prev{
  position: absolute;
  top: 50%;
  left: 30px;
  font-size: 24px;
  background: #eeeeee;
  border-radius: 50%;
  color: var(--nrdcMain);
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1;
}
.post-slider .prev:hover, .post-slider .next:hover{
  background: var(--nrdcMain);
  color: #fff;
  border: 1px solid #fff;
}
.post-slider h1{
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  padding: 20px 0;
  text-transform: uppercase;
  color: var(--nrdcMain);
}
.post-slider .post-wrapper{
  width: 84%;
  height: 350px;
  padding: 20px 0 30px 0;
  margin: auto;
 /* overflow-x: auto; Enable horizontal scrolling */
 overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center; /* Align items to the start */
  align-items: center;
}
.post-slider .post-wrapper .post{
  background: #eeee;
  flex: 0 0 auto; /* Prevent posts from stretching and wrap to a new line */
  width: 300px;
  height: 330px;
  margin: 20px 10px 10px 10px;
  border-radius: 5px;
  transition: all 0.4s ease;
}
.post-slider .post-wrapper .post:hover{
  box-shadow: 0.0rem 1rem 1.5rem -1rem #777777;
  transform: translateY(-10px);
}
.post .slider-image{
 width: 100%;
 height: auto;
 border-radius: 5px 5px 0 0;
 background-position: center;
 background-size: cover;
  
}
.post .post-info{
  padding: 10px 10px 0;
  height: 130px;
}
.post .post-info h4{
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px;
}
.post .post-info h4 a{
  text-decoration: none;
  padding-bottom: 20px;
  color: #000;
}
.post .post-info h4 a:hover{
  color: var(--nrdcMain);
}
.post .post-info .fa-user{
  padding-right: 10px;
  font-size: 10px;
  font-weight: 400;
  word-spacing: 2px;
}
.post .post-info .fa-calendar-days{
  font-size: 10px;
  font-weight: 400;
  word-spacing: 2px;
}


/* +++++++ CONTENT ++++++++++ */
.content{
  width: 90%;
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
  align-items:start;
}
.content .main-content{
  width: 70%;
  float: left;
  padding: 5rem 0git  0 10px;
}
.content .sidebar{
  width: 30%;
  /* float: right; */
  /* border: 1px solid #ccc; */
  /* margin-left: 10px; */
} 

.content .post-title{
  margin: 20px;
}

.main-content .post{
  width: 95%;
  height: 270px;
  margin: 20px auto;
  border-radius: 5px;
  background: #eeee;
}
.main-content .post-title{
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--nrdcMain);
  margin-left: 0; /* added */

}
.post .post-image{
  width: 40%;
  height: 100%;
  float: left;
  border-radius: 5px 0 0 5px;
}
.post .post-preview{
  width: 55%;
  height: auto;
  float: right;
  padding: 0 10px;
  height: 270px;
}
.post  .post-preview h1{
  font-size: 24px;
  font-weight: 600;
  padding: 10px 10px 0px 0;
}
.post  .post-preview h1 a{
  text-decoration: none;
  color: var(--nrdcMain);
  cursor: pointer;
}
.post  .post-preview .fa, .fa-solid{
  font-size: 13px;
  color: #777777;
  padding-bottom: 10px;
  padding-right: 8px;
}
.i-inner{
  font-size: 13px;
  color: #777777;
  padding-bottom: 10px;
  font-weight: 400;
}
.post  .post-preview p{
  color: #000;
  font-size: 14px;
  font-weight: 300;
}
.post  .post-preview .btn{
  font-size: 14px;
  padding: 6px 11px;
  background: #ccc;
  border-radius: 5px;
  text-decoration: none;
  color: #2e2e2e;
  cursor: pointer;
}
.post  .post-preview .btn:hover{
  background: var(--nrdcMain);
  color: #fff;
  transition: 0.25s;
}

/* ============ Sidebar =========== */
.sidebar .section{
  background: #eeee;
  padding: 20px;
  
  margin-bottom: 20px;
}
.sidebar .search-section{
  background: #eeee;
  padding: 20px;
  margin-top: 79px;
  border-radius: 5px;
}
.sidebar .search-section h2, .sidebar .topics h2{
  font-size: 20px;
  font-weight: 500;
  padding: 0 0 10px 10px;
  color: var(--nrdcMain);
}
.search-section .text-input{
  padding: 5px 20px;
  border-radius: 5px;
  outline: none;
  line-height: 1.5rem;
  border: 1px solid #ccc;
  width: 85%;
  color: #2e2e2e;
  font-size: 13px;
}
.sidebar .topics{
  background: #eeee;
  margin-top: 20px;
  border-radius: 5px;
}
.sidebar .topics ul{
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ccc; 
}
.sidebar .topics ul li a{
  color: #2e2e2e;
  display: block;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  transition: all 0.3s;
}
.sidebar .topics ul li a:hover{
  color: var(--nrdcMain);
  transition: all 0.3s;
  background: #eeee;
  padding-left: 10px;
}

@media only screen and (max-width: 600px){
  .page-wrapper{
    margin: 6rem auto 0 auto;
  }
  .post-wrapper{
    min-height: 20px auto 5px auto;
  }
  .post-slider{
    margin: 0rem auto 0 auto;
    height: 30rem;
    border: 1px solid #ccc;
  }
  .post-slider h1{
    font-size: 16px;
  }
  .post-slider .post-wrapper .post{
    width: 90%;
    margin: 0 auto;
    height: 25rem;
  }
  .post .slider-image{
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
  }
  .post-slider .next, .post-slider .prev{
    top: 45%;
  }
 .post-slider .prev{
    left: 10px;
  }
  .post-slider .next{
    right: 10px;
  }

  .content{
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  .content .main-content{
    width: 100%;
  }
  .main-content .post-title{
    font-size: 16px;
  }
  .main-content p {
    padding-bottom: 30px;
  }
  .post .post-image{
    border-radius: 5px 5px 0 0;
  }
  .main-content .post{
    width: 89%;
    height: auto;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: column;
  }
  .post .post-image{
    width: 100%;
  }
  .post .post-preview{
    width: 100%;
    min-height: 230px;
  }
  .post .post-preview h1 a{
    font-size: 18px;
  }
  .i-inner{
    font-size: 10px;
    font-weight: 300;
  }
  .post .post-preview p{
    font-size: 12px;
    padding: 5px 0 12px 0;
  }

  .content .sidebar{
    width: 90%;
    margin: auto;
  }
  .post  .post-preview p{
  padding-bottom: 21px;
  /* margin-bottom: 0 !important; */
}
}


  /* Tablet styles */
 @media only screen and (min-width: 601px) and (max-width: 780px) {
  .content {
      width: 100%;
      padding: 0 20px;
  }
}

@media only screen and (min-width: 601px) {
  /* Adjust styles for tablet */
  .post-slider{
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  .post-slider h1{
    padding: 10px 0 20px 0;
  }
  .page-wrapper{
    margin: 7rem auto 0 auto;
  }
  .post .post-image{
    height: auto;
    width: 50%;
  }
  .post .post-preview{
    width: 49%;
  }
  .main-content .post{
    display: flex;
    justify-content: center;
    height: 250px;
  }
  .post .post-preview h1 a{
    font-size: 16px;
  }
  .i-inner{
    font-size: 10px;
  }
  .post .post-preview p{
    font-size: 12px;
  }
  .post  .post-preview p{
  padding-bottom: 14px;
  margin-bottom: 0 !important;
}
}
/* Desktop styles */
@media only screen and (min-width: 1024px) {
  /* Adjust styles for desktop */
  .post-slider{
    border-top: 0px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

}

/* Desktop styles */
@media only screen and (min-width: 1440px) {
  /* Adjust styles for desktop */
  .studenthero{
    margin-top: 0;
  }
}

/* Desktop styles */
@media only screen and (min-width: 2560px) {
  /* Adjust styles for desktop */
  .studenthero{
    margin-top: 0rem;
  }
}

</pre></body></html>