/*RESET START*/
:root{
    scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html{ font-size: 100%; }

body {
  font-family: Roboto, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: #222;
  min-height: 100svh;
}

h1, h2, h3, h4, h5, h6{
  margin: 0 0 0.75rem;
  font-weight: 600;
}

p{ margin: 0 0 1rem; }

img, video{ max-width: 100%; height: auto; display: block; }

a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover{
    color:#FFA500;
    text-decoration-thickness: 2px;
}

a:focus-visible{
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

button { cursor: pointer; }
[hidden] { display: none; }

table { border-collapse: collapse; }

input,
button,
textarea,
select {
  font: inherit;
  line-height: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

ul[class],
ol[class],
ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding-left: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*RESET END*/

/*WRAP START*/
#wrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
/*WRAP END*/

/*TOPNAV START*/

#topNav {
  position: relative;
  width: 100%;
  background-color: #1C5B40;
  color: #fff;
  display: flex;
  align-items: center;
}

.topNav-inner {
  width: 100%;
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.phone {
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
}

.fb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid #fff;
  border-radius: 50%;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.fb-icon:hover {
  background: #fff;
  color: #1C5B40;
}

#lang {
  margin-left: auto;
  display: flex;
  gap: 0.625rem;
}

#lang a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

#lang a:hover {
  color: #FFA500;
}

#lang a[aria-current="true"] {
  color: #FFA500;
}

#lang a:first-of-type {
  border-right: 1px solid #fff;
  padding-right: 0.5rem;
}

@media (max-width: 768px) {
  #topNav {
    height: auto;
    min-height: 2.75rem;
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
  }

  .topNav-inner {
    padding: 0.375rem 0.75rem;
    flex-wrap: nowrap;
  }

  .phone {
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
  }
}

@media (min-width: 769px) {
  #topNav {
    height: 3rem;
    font-size: 1.5rem;
  }
}

/*TOPNAV END*/


/*HEADER START*/

#header {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

#headerwrap {
  margin: 0 auto;
  font-family: 'Nunito', serif;
  text-transform: uppercase;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-row > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: fit-content;
}

#logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #1C5B40;
}

#webTitleMULS {
  line-height: 1.1;
}

#webTitleSAB {
  line-height: 1.2;
}

@media (max-width: 768px) {
  #headerwrap {
    padding: clamp(0.75rem, 2vw, 1.5rem) 1rem;
  }

  .header-row > a {
    gap: clamp(0.75rem, 2vw, 1.25rem);
  }

  #logo img {
    width: clamp(3.5rem, 12vw, 5rem);
  }

  .header-text {
    gap: clamp(0.25rem, 1vw, 0.5rem);
  }

  #webTitleMULS {
    font-size: clamp(0.7rem, 2.5vw, 0.95rem);
  }

  #webTitleSAB {
    font-size: clamp(0.85rem, 3.8vw, 1.8rem);
    white-space: nowrap;
  }
}

@media (min-width: 769px) {
  #headerwrap {
    max-width: 118rem;
    padding: 2rem 1rem;
  }

  .header-row > a {
    gap: 2rem;
  }

  #logo img {
    width: 8rem;
  }

  .header-text {
    gap: 1rem;
  }

  #webTitleMULS {
    font-size: 1.5rem;
  }

  #webTitleSAB {
    font-size: 3.3rem;
  }
}

/*HEADER END*/


/*NAV START*/

.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: #1C5B40;
  color: #fff;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 99999;
}

.skip-nav:focus {
  top: 0;
}

.nav-toggle {
  display: none;
}

#primary_nav_wrap {
  background: #1C5B40;
}

#primary_nav_wrap a {
  color: #fff;
  text-decoration: none;
}

#primary_nav_wrap ul li ul li a:hover {
  color: #FFA500;
  background: #444;
}

#primary_nav_wrap ul li.firstrow > a:hover {
  color: #FFA500;
}

.chevron {
  display: inline-block;
  transition: transform 0.25s ease;
  font-size: 1.1rem;
}

.submenu-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

#primary_nav_wrap a[aria-current="page"] {
  color: #FFA500;
  border-bottom: 2px solid #FFA500;
}

#primary_nav_wrap a:focus-visible {
  outline: 2px solid #FFA500;
  outline-offset: 2px;
}

@media (max-width: 768px) {

  #primary_nav_wrap {
    position: relative;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3125rem;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    margin-right: 0.75rem;
  }

  .nav-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  #centerwrap {
    display: none;
    width: 100%;
  }

  #centerwrap.is-open {
    display: block;
  }

  #primary_nav_wrap ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  #primary_nav_wrap ul li.firstrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  #primary_nav_wrap ul li.firstrow > a {
    flex: 1;
    padding: 0.875rem 1rem;
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.3;
  }

  .submenu-toggle {
    background: none;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  #primary_nav_wrap ul li ul {
    display: none;
    width: 100%;
    flex-basis: 100%;
    background: rgba(0,0,0,0.15);
    position: static;
    box-shadow: none;
  }

  #primary_nav_wrap ul li ul.is-open {
    display: block;
  }

  #primary_nav_wrap ul li ul li {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  #primary_nav_wrap ul li ul li a {
    padding: 0.875rem 1rem 0.875rem 1.75rem;
    font-size: clamp(0.95rem, 2.8vw, 1rem);
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    width: 100%;
  }

  #primary_nav_wrap ul li ul li a:active {
    color: #FFA500;
  }
}

@media (min-width: 769px) {

  #primary_nav_wrap {
    width: 100%;
    position: relative;
    z-index: 9999;
    overflow: visible;
    text-transform: uppercase;
    font-size: 1.5rem;
  }

  #centerwrap {
    display: block !important;
  }

  #primary_nav_wrap ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #primary_nav_wrap ul li.firstrow {
    position: relative;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    display: block;
    border-top: none;
  }

  #primary_nav_wrap ul li.firstrow > a {
    display: block;
    padding: 0 0.9375rem;
    line-height: 2.5rem;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
  }

  #primary_nav_wrap ul li.firstrow > a:hover {
    background: #1C5B40;
  }

  .submenu-toggle {
    display: none;
  }

  #primary_nav_wrap ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1C5B40;
    width: max-content;
    min-width: max-content;
    max-width: none;
    z-index: 10000;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }

  #primary_nav_wrap ul li.firstrow:hover > ul,
  #primary_nav_wrap ul li.firstrow.is-keyboard-open > ul {
    display: block;
  }

  #primary_nav_wrap ul li.firstrow:last-child > ul {
    left: auto;
    right: 0;
  }

  #primary_nav_wrap ul li ul li {
    width: 100%;
    text-align: left;
    border-top: none;
  }

  #primary_nav_wrap ul li ul li a {
    display: block;
    padding: 0.375rem 1.5625rem;
    line-height: 1.4;
    white-space: nowrap;
    min-height: unset;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  #primary_nav_wrap ul li.firstrow > a {
    padding: 0 0.4rem;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
  }
}

/*NAV END*/


/*HEROSLIDER START*/

#heroSlider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}

#heroSlider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#heroSlider .slide.active {
  opacity: 1;
  z-index: 1;
}

#heroSlider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

#heroSlider .overlay-content h2 {
  margin: 0;
}

#heroSlider .overlay-content h2 a {
  color: #fff;
  text-decoration: none;
}

#heroSlider .overlay-content h2 a:hover {
  text-decoration: underline;
}

#heroSlider .dots {
  position: absolute;
  bottom: 0.9375rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.625rem;
  z-index: 2;
}

#heroSlider .dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
}

#heroSlider .dot.active {
  background: #fff;
}

@media (max-width: 768px) {
  #heroSlider {
    aspect-ratio: 4/3;
  }

  #heroSlider .overlay-content h2 {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }

  #heroSlider .dots {
    bottom: 0.625rem;
  }

  #heroSlider .dot {
    width: 0.5rem;
    height: 0.5rem;
  }
}

@media (min-width: 769px) {
  #heroSlider {
    aspect-ratio: 16/5;
  }

  #heroSlider .overlay-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
  }
}

/*HEROSLIDER END*/


/*MAIN START*/

#main {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#main p {
  text-align: justify;
}

#contentWrapper {
  width: min(108rem, 100%);
  margin: 0 auto;
  padding: 0 1rem;
}

#contentHome {
  position: relative;
  width: 100%;
}

#contentHome p {
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: justify;
}

#contentHome h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
#contentHome h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
#contentHome h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

#contentHome a:hover,
#contentHome a:hover h3,
#contentHome a:hover h4 {
  color: #FFA500;
}

#contentCentered {
  padding: 2rem 1rem;
  font-size: 1.1rem;
  width: 100%;
}

#contentCentered ul {
  /*list-style-type: "*";*/
}

#contentCentered ul li {
  margin-bottom: 0.5rem;
}

#contentCentered table {
  border-collapse: collapse;
  width: 100%;
}

#contentCentered table th,
#contentCentered table td {
  padding: 0.3125rem 0.625rem;
  vertical-align: top;
  border-style: dotted;
}

#newsContainer, #internationalContainer {
  background-color: #fff;
}

#hubContainer, #degreeContainer {
  background-color: #f4f7fa;
}

#newsContainer,
#degreeContainer,
#internationalContainer,
#hubContainer {
  width: 100%;
  height: auto;
}

.degreeType a,
.hubType a,
.internationalType a {
  color: #333;
  text-decoration: none;
}

.degreeType a:hover,
.hubType a:hover,
.internationalType a:hover {
  color: #FFA500;
}

.newsTitleGen {
  font-weight: bold;
  grid-column: 1 / -1;
  justify-self: start;
  text-align: left;
}

.homeTitleLinksBig {
  color: #333;
  text-transform: uppercase;
  text-decoration: none;
}

.homeTitleLinksBig:hover {
  color: #FFA500;
}

.homeTitleLinksBig::after,
.degreeType a::after,
.hubType a::after,
.internationalType a::after {
  content: ' →';
}
#main .sab-tagcloud .tag::after {
  content: none;
}

.upper {
  text-transform: uppercase;
}

.transplayer {
  display: grid;
  grid-template-areas: "stack";
  overflow: hidden;
  align-items: end;
}

.transplayer > * {
  grid-area: stack;
}

.transplayer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.catTitle {
  align-self: start;
  justify-self: start;
  margin: 0.5rem;
  color: #555;
  padding: 0.25rem 0.375rem;
  font-size: 1rem;
  text-decoration: none;
  background: rgba(255,255,255,0.85);
  z-index: 3;
  max-width: calc(100% - 1rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newsTitle {
  align-self: end;
  margin: 0;
  padding: 0.5rem 0.2rem;
  background: rgba(28,91,64,0.7);
  color: #fff;
  z-index: 2;
  width: 100%;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
}

.newsTitle a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  width: 100%;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  #newsContainer,
  #degreeContainer,
  #internationalContainer,
  #hubContainer {
    padding: clamp(2rem, 5vw, 4rem) 1rem;
  }

  #newsWrapper,
  #degreeWrapper,
  #internationalWrapper,
  #hubWrapper {
    width: 100%;
    margin: 0 auto;
  }

  #newsWrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  #news {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }

  .newsTitleGen {
    padding: 0 0 1.5rem 0;
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  #newsAd {
    width: 100%;
  }

  #degreePrograms,
  #internationalPrograms,
  #hubPrograms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .degreeType h3,
  .internationalType h3,
  .hubType h3 {
    text-transform: uppercase;
    padding-bottom: 0.5rem;
  }

  #contentHome p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }
}

@media (min-width: 769px) {
  #newsContainer,
  #degreeContainer,
  #internationalContainer,
  #hubContainer {
    padding: 6rem 0;
  }

  #newsWrapper,
  #degreeWrapper,
  #internationalWrapper,
  #hubWrapper {
    width: min(90rem, 95%);
    margin: 0 auto;
  }

  #newsWrapper {
    display: flex;
    justify-content: space-between;
  }

  #news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    width: 72%;
  }

  .newsTitleGen {
    padding: 0.1rem 0 2rem 0;
  }

  #newsAd {
    display: grid;
    grid-template-rows: auto 1fr;
    width: min(33rem, 25%);
  }

  #degreePrograms,
  #internationalPrograms,
  #hubPrograms {
    display: flex;
    gap: clamp(2rem, 5vw, 10rem);
  }

  .degreeType,
  .internationalType,
  .hubType {
    flex: 1;
    min-width: 0;
  }

  .degreeType h3,
  .internationalType h3,
  .hubType h3 {
    text-transform: uppercase;
    padding-bottom: 1rem;
  }

  #contentHome p {
    font-size: 1.2rem;
  }
}

/*MAIN END*/


/*EXCHANGE WIDGET START*/

.exchange-widget {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.exchange-widget .ex-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
  min-height: 10rem;
}

.exchange-widget .ex-slide {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 0.875rem;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  min-height: 10rem;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: stretch;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 3000ms ease;
}

.exchange-widget .ex-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.exchange-widget .ex-media {
  position: relative;
  min-height: 10rem;
  background-size: cover;
  background-position: center;
}

.exchange-widget .ex-text {
  padding: 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exchange-widget .ex-quote {
  margin: 0 0 0.625rem 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #222;
}

.exchange-widget .ex-name {
  font-weight: 600;
  color: #1C5B40;
  font-size: 0.9rem;
}

.exchange-widget .ex-type {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(28,91,64,.95);
  color: #fff;
  padding: 0.375rem 0.625rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.exchange-widget .ex-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,.92);
  color: #1C5B40;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  font-size: 1.375rem;
  line-height: 1;
}

.exchange-widget .ex-prev { left: 0.75rem; }
.exchange-widget .ex-next { right: 0.75rem; }

/*
@media (max-width: 768px) {
  .exchange-widget .ex-slider {
    width: 100%;
    min-height: 12.5rem;
  }

  .exchange-widget .ex-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 8.75rem 1fr;
    min-height: 12.5rem;
  }
}*/


@media (max-width: 768px) {
  .exchange-widget .ex-slider {
    width: 100%;
    min-height: unset;
  }

  .exchange-widget .ex-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 140px 1fr;
    min-height: unset;
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .exchange-widget .ex-slide.is-active {
    display: grid;
  }

  .exchange-widget .ex-quote {
    -webkit-line-clamp: unset;
    overflow: visible;
  }
}


.exchange-widget .ex-name::after,
.exchange-widget a::after {
  content: none;
}

  .exchange-widget .ex-text {
    padding: 2rem 1rem 1rem;
  }





@media (min-width: 769px) {
  .exchange-widget .ex-slider {
    width: 100%;
    min-height: 10rem;
  }
}

/*EXCHANGE WIDGET END*/


/*TAGCLOUD START*/

#main .sab-tagcloud {
  height: 10rem;
  margin: 0 auto;
  position: relative;
  contain: layout;
  width: 100%;
  max-width: 100%;
}

#main .sab-tagcloud .tag {
  position: absolute;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.05;
  box-sizing: border-box;
}

#main .sab-tagcloud .tag:hover,
#main .sab-tagcloud .tag:focus-visible {
  transform: translateY(-1px);
  opacity: 0.92;
}

#main .sab-tagcloud .t1 { font-size: clamp(1.2rem, 3vw, 3.1rem); font-weight: 800; color: #1B2347; }
#main .sab-tagcloud .t2 { font-size: clamp(1rem, 2.5vw, 2.2rem); font-weight: 760; color: #4973B6; }
#main .sab-tagcloud .t3 { font-size: clamp(0.95rem, 2.2vw, 1.95rem); font-weight: 740; color: #314B8D; }
#main .sab-tagcloud .t4 { font-size: clamp(0.9rem, 2vw, 1.7rem); font-weight: 720; color: #1F2D6B; }
#main .sab-tagcloud .t5 { font-size: clamp(0.85rem, 1.8vw, 1.55rem); font-weight: 700; color: #324B93; }
#main .sab-tagcloud .t6 { font-size: clamp(0.8rem, 1.6vw, 1.4rem); font-weight: 680; color: #63A0D6; }
#main .sab-tagcloud .t7 { font-size: clamp(0.75rem, 1.5vw, 1.3rem); font-weight: 660; color: #182355; }

#main .sab-tagcloud .t1 { left: 22%; top: 27%; }
#main .sab-tagcloud .t2 { left: 15%; top: 5%; }
#main .sab-tagcloud .t3 { left: 57%; bottom: 4%; }
#main .sab-tagcloud .t4 { left: 54%; top: 6%; }
#main .sab-tagcloud .t5 { left: 15%; top: 80%; }
#main .sab-tagcloud .t6 { right: 5%; top: 5%; }
#main .sab-tagcloud .t7 { left: 36%; top: 64%; }

@media (max-width: 768px) {
  #main .sab-tagcloud {
    height: 6rem;
    overflow: hidden;
  }

  #main .sab-tagcloud .tag {
    position: absolute;
    white-space: nowrap;
  }

  #main .sab-tagcloud .t1 { font-size: clamp(1.2rem, 6vw, 2rem);   left: 22%; top: 27%; }
  #main .sab-tagcloud .t2 { font-size: clamp(1rem, 5vw, 1.6rem);   left: 15%; top: 5%;  }
  #main .sab-tagcloud .t3 { font-size: clamp(0.9rem, 4.5vw, 1.4rem); left: 57%; bottom: 4%; }
  #main .sab-tagcloud .t4 { font-size: clamp(0.85rem, 4vw, 1.2rem);  left: 54%; top: 6%;  }
  #main .sab-tagcloud .t5 { font-size: clamp(0.8rem, 3.8vw, 1.1rem); left: 15%; top: 80%; }
  #main .sab-tagcloud .t6 { font-size: clamp(0.75rem, 3.5vw, 1rem);  right: 5%; top: 5%;  }
  #main .sab-tagcloud .t7 { font-size: clamp(0.7rem, 3.2vw, 0.9rem); left: 36%; top: 64%; }
}

/*TAGCLOUD END*/


/*PARTNER LOGOS START*/

#slider11 {
  width: 100%;
  background-color: #fff;
}

.partners-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.partners-list li a {
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.partners-list li a:hover {
  opacity: 1;
}

.partners-list img {
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  #slider11 {
    padding: 1rem;
  }

  .partners-list img {
    height: 2.5rem;
  }
}

@media (min-width: 769px) {
  #slider11 {
    padding: 2rem 0;
  }

  .partners-list img {
    height: 4rem;
  }
}

/*PARTNER LOGOS END*/








/* ── NEWS ARTICLE ── */
.project-list-header {
  padding: 1rem 0 0.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #1C5B40;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid #1C5B40;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.back-link:hover {
  background: #1C5B40;
  color: #fff;
}

.back-link::after {
  content: none;
}

.news-post {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 0;
}

.news-post header {
  margin-bottom: 1rem;
}

.news-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.25;
  color: #1C5B40;
  margin-bottom: 0.5rem;
  text-align: center;
  text-wrap: pretty;
}

.news-meta {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.news-image {
  margin: 1.5rem 0;
  width: 100%;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: auto;
  display: block;
}


.news-quote {
  margin: 1.5rem 0;
  border-left: 4px solid #1C5B40;
  padding: 0.75rem 1.25rem;
  background: #f4f7fa;
  border-radius: 0 0.5rem 0.5rem 0;
}

.news-quote blockquote {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  line-height: 1.6;
}

.news-body {
    width: 100%;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #222;
}

.news-body p {
  margin-bottom: 1.25rem;
}

.news-body img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.news-body a {
  color: #1C5B40;
  text-decoration: underline;
}

.news-body a:hover {
  color: #FFA500;
}

@media (max-width: 768px) {
  .news-post {
    padding: 1.25rem 0;
  }

  .news-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    text-wrap: pretty;
  }

  .news-body {
    font-size: 1rem;
  }

  .news-quote blockquote {
    font-size: 1rem;
  }
}


/* ── NEWS ARTICLE END ── */







/* ── NEWS INDEX / LISTING ── */
.news-index-list {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1rem 1rem 3rem;
}

.newsitem {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: stretch;
}

.newsitem:last-of-type {
  border-bottom: none;
}

.newsitem-thumb {
  display: block;
  border-radius: 0;
  overflow: hidden;
  grid-row: 1;
  grid-column: 1;
  align-self: stretch;
}

.imgThumbnailHome {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.newsitem-body {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.newsitem h2 {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.35;
  margin: 0 0 0.4rem;
}

.newsitem h2 a {
  color: #1C5B40;
  text-decoration: none;
  font-weight: 600;
}

.newsitem h2 a:hover {
  color: #FFA500;
}

.newsitem-summary {
  text-decoration: none;
  color: inherit;
}

.newsitem-summary:hover p {
  color: #1C5B40;
}

.newsitem-summary-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #444;
  display: block;
  text-align: left;
}

.dateMore {
  padding: 0.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.dateMoreBorder {
  border-bottom: 1px solid #f0f0f0;
}

.dateMore time {
  font-size: 0.8rem;
  color: #999;
}

.pagination {
  text-align: center;
  margin: 2rem auto 1rem;
  max-width: 52rem;
}

.pagination ul {
  display: inline-flex;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination ul li {
  float: none;
  padding: 0;
  display: block;
}

.pagination ul li a,
.pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #1C5B40;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  transition: background 0.2s ease, color 0.2s ease;
}

.pagination ul li a:hover {
  background: #1C5B40;
  color: #fff;
  border-color: #1C5B40;
}

.pagination ul li.pagination-current a {
  background: #f4f7fa;
  color: #1C5B40;
  border-color: #1C5B40;
  font-weight: 700;
  pointer-events: none;
  cursor: default;
}

@media (max-width: 768px) {
    
    
  #contentWrapper:has(.news-index-list) {
    padding: 0 0.75rem;
  }

  .news-index-list {
    padding: 0.5rem 0 2rem;
  }    
   

  .newsitem {
    grid-template-columns: 5.5rem 1fr;
    gap: 0.75rem;
  }

  .newsitem-summary {
    display: none;
  }

  .newsitem-thumb {
    height: 5.5rem;
    width: 5.5rem;
    align-self: start;
  }

  .imgThumbnailHome {
    height: 5.5rem;
    width: 5.5rem;
    object-fit: cover;
  }

  .newsitem h2 {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .dateMore time {
    font-size: 0.75rem;
  }
}
/* ── NEWS INDEX END ── */


/* ── PROJECTS ── */
.project-wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 1rem 0 3rem;
}
.project-page-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #1C5B40;
  margin: 1rem 0 0.5rem;
}
.project-section-title {
  margin: 2rem 0 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #1C5B40;
  border-bottom: 2px solid rgba(28,91,64,.15);
  padding-bottom: 0.4rem;
}
.project-grid {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.project-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: box-shadow 0.2s ease;
  aspect-ratio: 1 / 1;
}
.project-card:hover {
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}
.project-card::after {
  content: none;
}
.project-logo {
  height: 10rem;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.03);
}
.project-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.project-logo-placeholder {
  width: 60%;
  height: 60%;
  border-radius: 10px;
  background: rgba(0,0,0,.08);
}
.project-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  flex: 1;
  min-height: 0;
}
.project-acronym {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #1C5B40;
}
.project-years {
  font-size: 0.9rem;
  opacity: 0.75;
  color: #333;
}
.project-grid > .project-card:only-child {
  width: 25%;
  min-width: 200px;
}
@media (min-width: 1100px) {
  .project-grid {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }
}
@media (min-width: 800px) and (max-width: 1099px) {
  .project-grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}
@media (min-width: 520px) and (max-width: 799px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}
@media (max-width: 519px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-card {
    aspect-ratio: unset;
  }
  .project-logo {
    height: 6rem;
  }
  .project-acronym {
    font-size: 0.85rem;
  }
  .project-years {
    font-size: 0.75rem;
  }
  .project-meta {
    padding: 0.5rem 0.6rem;
    gap: 0.2rem;
  }
}
/* ── PROJECTS END ── */



/* ── PROJECT DETAIL ── */

.projprog {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 1rem 2rem;
}

.pp-hero {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.pp-hero-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pp-hero-left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pp-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  background: #f5f7f7;
}

.pp-logo-fallback {
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, #f1f4f3, #e7efec);
}

.pp-hero-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pp-topline {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.pp-acronym {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.25rem 0.55rem;
  background: rgba(28,91,64,.08);
  color: #1C5B40;
}

.pp-status {
  font-size: 0.85rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(0,0,0,.08);
}

.pp-status--live {
  background: rgba(0,128,0,.08);
  color: #1a6b1a;
}

.pp-status--done {
  background: rgba(120,120,120,.12);
  color: #555;
}

.pp-title {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.2;
  color: #1e1e1e;
  text-wrap: pretty;
}

.pp-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 0.6rem 1.2rem;
  margin-top: 0.5rem;
}

.pp-meta-item {
  background: #fafbfb;
  border: 1px solid rgba(0,0,0,.06);
  padding: 0.6rem 0.75rem;
}

.pp-meta-k {
  display: block;
  font-size: 0.78rem;
  opacity: 0.65;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pp-meta-v {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e1e1e;
}

.pp-grid-full {
  width: 100%;
}

.pp-main-full {
  width: 100%;
}

.pp-body {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  padding: 1.6rem 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1e1e1e;
}

.pp-body p {
  margin-bottom: 1.25rem;
}

.pp-body img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.pp-body a {
  color: #1C5B40;
  text-decoration: underline;
}

.pp-body a:hover {
  color: #FFA500;
}

.pp-body::after {
  content: none;
}

.pp-extra {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  padding: 1.6rem 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1e1e1e;
}

.pp-extra-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1C5B40;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.pp-partners-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.pp-partners-body a {
  color: #1C5B40;
  text-decoration: underline;
}

.pp-partners-body a:hover {
  color: #FFA500;
}

.pp-external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #1C5B40;
  text-decoration: underline;
  word-break: break-all;
}

.pp-external-link:hover {
  color: #FFA500;
}

.pp-external-link::after {
  content: none;
}

.pp-partners-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pp-partners-list li {
  line-height: 1.5;
  color: #333;
  padding-left: 1.25rem;
  position: relative;
}

.pp-partners-list li::before {
  content: '';
  position: absolute;
  left: 0;
 
}

@media (max-width: 768px) {
  .projprog {
    padding: 0.75rem 0 1.5rem;
  }

  .pp-hero {
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .pp-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pp-hero-left {
    width: 100%;
  }

  .pp-logo {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    margin: 0;
  }

  .pp-logo-fallback {
    width: 100%;
    height: 12rem;
    border-radius: 0;
    margin: 0;
  }
  
  .pp-hero-right {
    padding: 1rem;
  }

  .pp-title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .pp-meta {
    grid-template-columns: 1fr;
  }

  .pp-body {
    padding: 1rem;
    font-size: 1rem;
  }
}


.children-overview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.child-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1.5rem;
}

.child-item:last-child {
  border-bottom: none;
}

.child-item-title {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}

.child-item-title a {
  color: #1C5B40;
  text-decoration: none;
  font-weight: 600;
}

.child-item-title a:hover {
  color: #FFA500;
}

.child-item-title a::after {
  content: none;
}

.child-item-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* ── PROJECT DETAIL END ── */




/* ── SUB SUB START ── */

.program-wrap {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 0 3rem;
}

.program-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #1C5B40;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-wrap: pretty;
}

.children-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.children-list-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.children-list-title a {
  color: #1C5B40;
  text-decoration: none;
  font-weight: 600;
}

.children-list-title a:hover {
  color: #FFA500;
}

.children-list-title a::after {
  content: none;
}


.grandchildren-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.grandchildren-list li a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
}

.grandchildren-list li a:hover {
  color: #FFA500;
}

.grandchildren-list li a::after {
  content: none;
}



@media (max-width: 768px) {
  .program-heading {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-bottom: 1.5rem;
  }

  .children-list {
    gap: 2rem;
  }

  .grandchildren-list {
    padding-left: 1rem;
  }
}


.children-list-item a {
  color: #1C5B40;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
}

.children-list-item a:hover {
  color: #FFA500;
}

.children-list-item a::after {
  content: none;
}
/* ── SUB SUB END ── */





/* ── BASIC PAGE ── */

.basic-page-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #1C5B40;
  line-height: 1.25;
  margin: 0.5rem 0 1.5rem;
  text-wrap: pretty;
}

.basic-page-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #222;
  width: 100%;
}

.basic-page-body p {
  margin-bottom: 1.25rem;
}

.basic-page-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

.basic-page-body a {
  color: #1C5B40;
  text-decoration: underline;
}

.basic-page-body a:hover {
  color: #FFA500;
}

.basic-page-body ul,
.basic-page-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.basic-page-body li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.basic-page-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.basic-page-body table th,
.basic-page-body table td {
  padding: 0.4rem 0.75rem;
  border: 1px dotted #ccc;
  vertical-align: top;
  text-align: left;
}

.basic-page-body table th {
  background: #f4f7fa;
  font-weight: 600;
  color: #1C5B40;
}


.basic-page {
  max-width: 52rem;
  margin: 0 auto;
  width: 100%;
}


@media (max-width: 768px) {
  .basic-page-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin: 0.5rem 0 1rem;
  }

  .basic-page-body {
    font-size: 1rem;
  }

  .basic-page-body table th,
  .basic-page-body table td {
    padding: 0.3rem 0.5rem;
  }
  
  .basic-page-body table,
  .pp-body table,
  .rich-list-content table,
  #contentCentered table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.85rem;
  }  
  
}


/* ── BASIC PAGE END ── */

/* ── STAFF ── */

.staff-section {
  margin-top: 2rem;
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.staff-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.staff-name {
  font-weight: 700;
  font-size: 1rem;
  color: #1e1e1e;
  line-height: 1.3;
}

.staff-position {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.4;
}

.staff-email {
  font-size: 0.85rem;
  color: #1C5B40;
  text-decoration: underline;
  margin-top: 0.25rem;
  word-break: break-all;
}

.staff-email:hover {
  color: #FFA500;
}

.staff-email::after {
  content: none;
}

@media (max-width: 768px) {
  .staff-list {
    grid-template-columns: 1fr;
  }
}

/* ── STAFF END ── */


/* ── BASIC PAGE 2 IMAGE GRID ── */

.news-images-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.news-image-half {
  min-width: 0;
}

.news-image-half img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .news-images-grid {
    grid-template-columns: 1fr;
  }
}

/* ── BASIC PAGE 2 IMAGE GRID END ── */



/* ── OCCUPATION ── */

.study-options {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.study-options li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.study-options .circle {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: #9ca3af;
  flex-shrink: 0;
}

.study-options .checked .circle {
  background: #22c55e;
}

.study-options .unchecked {
  opacity: 0.5;
}

.study-option-label {
  line-height: 1.3;
}

.occupation-section-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #1C5B40;
  text-transform: uppercase;
  margin: 1.5rem 0 0.5rem;
  font-weight: 700;
}

.rich-list-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
}

.rich-list-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.rich-list-content ul li {
  margin-bottom: 0.4rem;
}

.rich-list-content a {
  color: #1C5B40;
  text-decoration: underline;
}

.rich-list-content a:hover {
  color: #FFA500;
}

@media (max-width: 768px) {
  .study-options {
    gap: 1rem;
  }

  .study-options li {
    font-size: 0.875rem;
    white-space: normal;
  }
}

/* ── OCCUPATION END ── */






/*FOOTER START*/

#footer {
  width: 100%;
  background-color: #1C5B40;
  color: #fff;
}

#footer a {
  color: #fff;
  text-decoration: none;
}

#footer a:hover {
  color: #FFA500;
}

.ff {
  color: #fff;
  line-height: 1.5;
}

#footer p {
  margin: 0;
}

@media (max-width: 768px) {
  #footer {
    padding: clamp(1.5rem, 4vw, 2rem) 1rem;
    text-align: center;
  }

  #ffs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }

  .ff {
    width: 100%;
    max-width: 20rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
  }

  .ff:last-child {
    border-bottom: none;
    padding-bottom: 0;
    width: 100%;
  }
}

@media (min-width: 769px) {
  #footer {
    padding: 2rem 0;
    text-align: center;
  }

  #ffs {
    display: inline-flex;
    justify-content: center;
    max-width: 100%;
  }

  .ff {
    font-size: clamp(0.75rem, 1.1vw, 1.2rem);
    line-height: 1.5;
    flex-shrink: 1;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding: 0 clamp(0.75rem, 1.5vw, 1.5rem);
  }

  #f2,
  #f3 {
    width: 22rem;
    flex-shrink: 1;
    min-width: 0;
  }

  .ff:first-child,
  .ff:last-child {
    flex: 1;
    white-space: nowrap;
  }

  .ff:last-child {
    border-right: none;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  #ffs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .ff,
  #f1, #f2, #f3,
  .ff:first-child,
  .ff:last-child {
    width: 100%;
    max-width: 28rem;
    white-space: normal;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    flex: none;
    padding: 0 1.5rem 1.5rem;
  }

  .ff:last-child {
    border-bottom: none;
  }
}
/*FOOTER END*/