
* {
margin: 0;
padding: 0;
box-sizing: border-box;

}


body {
    background: #e0dedf;
  color: #333;
  font-family: Helvetica, Arial, sans-serif;
  
}

.page-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ccc;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}


.site-title {
 font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.site-tagline {
  font-size: 15px;
  font-weight: 500;
  color: #f1d9ef;
  letter-spacing: 0.8px;
  margin: 0;
  text-transform: uppercase;
}

.main-content h2 {
color: #2a2a2a;
  margin-bottom: 15px;
  font-size: 22px;

  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;

}

.main-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
    background: linear-gradient(
    90deg,
    #96286D,
    #7a1d5c
  );
}

p{
  font-size: 0.955rem;
line-height: 1.7;
margin-bottom: 15px;
 
}

h3{
  font-size: 16px;
  font-weight: bold;
}


.ribbon-banner {
  height: 220px;
  background: linear-gradient(90deg, #8c245f, #96286D);
  position: relative;
  overflow: hidden;
}

.ribbon-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
   rgba(150, 40, 109, 0.25)

    transparent 45%
  );
}

.ribbon-banner .banner-content {
  position: relative;
  z-index: 2;
}

.ribbon-banner .site-title {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}

.ribbon-banner .site-tagline {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1.1px;
  margin: 0;
  max-width: 650px;
}

.ribbon-shape {
  position: absolute;
  bottom: -40px;
  left: -10%;
  width: 120%;
  height: 140px;
 background: linear-gradient(
    120deg,
    rgba(177, 58, 143, 0.95),  /* light purple */
    rgba(150, 40, 109, 0.90),  /* main theme */
    rgba(122, 29, 92, 0.95)    /* dark purple */
  );
  transform: skewY(-4deg);
  border-top-left-radius: 50% 60%;
  border-top-right-radius: 40% 50%;
}


.banner-content {
  position: relative;
  z-index: 2;
}



.breadcrumb-wrapper {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.breadcrumb {
 padding: 8px 0;
  font-size: 13px;
  margin: 0;
}

/*    Sidebar    */

.academic-sidebar {
  background: #f9f8f6;
  padding: 18px 16px;
  border-left: 2px solid rgba(150, 40, 109, 0.8);
}

.sidebar-title {
font-family: 'Titillium Maps', Arial;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #1e1e1e;
  margin-bottom: 12px;
  padding-bottom: 6px;
  position: relative;
}

.sidebar-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
   background: linear-gradient(
    90deg,
    #96286D,
    #7a1d5c
  );
}

.academic-menu {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}

.academic-menu li {
  margin-bottom: 6px;
}

.academic-menu li a {
  display: block;
  padding: 8px 10px 8px 26px;
  font-size: 14px;
  color: #2a2a2a;
  text-decoration: none;
  position: relative;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.academic-menu li a::before {
  content: "›";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color:  #96286D;
  font-size: 16px;
}

.academic-menu li a:hover {
  background: rgba(205,127,50,0.08);
  color: #000;
}

.academic-menu li a.active {
  background: rgba(205,127,50,0.15);
  font-weight: 600;
}


.content-list {
 margin: 0 0 15px 20px;  
  padding: 0;
}

.content-list li {
 font-size: 0.955rem;    
  line-height: 1.7;       
  margin-bottom: 6px;
 
}

.content-list li::before {
  content: "▪";
  position: absolute;
  left: 0;
  top: 2px;
  color: #333;
  
}


.main-content {
  background: transparent;
}

.testimonial {
  margin-bottom: 25px;
}

.testimonial p {
  font-size: 0.955rem;  
  line-height: 1.7;
  margin-bottom: 6px;
}

.t-author {
  font-style: italic;
  font-weight: bold;
  
}



.ribbon-footer {
  position: relative;
  background: #7a1d5c;
  color: #f6eaf2;      
  overflow: hidden;
  border-top: 1px solid rgba(150, 40, 109, 0.35);
}


.ribbon-footer .footer-ribbon {
  position: absolute;
  top: -28px;
  left: -10%;
  width: 120%;
  height: 55px;
  background: linear-gradient(
    120deg,
    rgba(177, 58, 143, 0.95),  /* light purple */
    rgba(150, 40, 109, 0.90),  /* main theme */
    rgba(122, 29, 92, 0.95)    /* dark purple */
  );
  transform: skewY(-3deg);
}

.ribbon-footer .container {
  position: relative;
  z-index: 2;
  font-size: 13.5px;
  letter-spacing: 0.5px;
}

.footer-link {
  color: #f0c08b;
  font-weight: 500;
  text-decoration: underline;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: none;
}


.article-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.article-meta span {
  display: block;
  margin-bottom: 3px;
}

.article-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 12px 0 18px;
}



@media (max-width: 678px) {
.page-wrapper {
width: 100%;
}

.content-wrapper {
  display: flex;
flex-direction: column;
}

.sidebar {
width: 100%;
margin-bottom: 20px;
background: #fff;
}

 .site-title {
    font-size: 32px;
    padding-left: 10px;
  }
 
/* Bootstrap compatibility */
.content-wrapper {
display: flex;
}

.sidebar {
background: #fff;
}
 .page-wrapper {
    width: 100%;
  }

  .sidebar {
    margin-bottom: 20px;
  }

.site-footer .container {
    text-align: center;
  }

}

