/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --selective-yellow: hsl(42, 94%, 55%);
  --eerie-black-1: hsl(208, 100%, 24%);
  --eerie-black-2: hsl(198, 33%, 94%);
  --quick-silver: hsl(0, 0%, 65%);
  --radical-red: hsl(351, 83%, 61%);
  --light-gray: hsl(0, 0%, 80%);
  --isabelline: hsl(36, 33%, 94%);
  --gray-x-11: hsl(0, 0%, 73%);
  --kappel_15: hsla(170, 75%, 41%, 0.15);
  --platinum: hsl(0, 0%, 90%);
  --gray-web: hsl(0, 0%, 50%);
  --black_80: hsla(0, 0%, 0%, 0.8);
  --white_50: hsla(0, 0%, 100%, 0.5);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_30: hsla(0, 0%, 0%, 0.3);
  --kappel: hsl(342, 70%, 56%);
  --white: hsl(0, 0%, 100%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(-90deg,hsl(346, 68%, 59%) 0%,hsl(342, 78%, 51%) 100%);

  /**
   * typography
   */

  --ff-league_spartan: 'League Spartan', sans-serif;
  --ff-poppins: 'Poppins', sans-serif; 

  --fs-1: 4.2rem;
  --fs-2: 3.2rem;
  --fs-3: 2.3rem;
  --fs-4: 1.8rem;
  --fs-5: 1.5rem;
  --fs-6: 1.4rem;
  --fs-7: 1.3rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * spacing
   */

  --section-padding: 25px;

  /**
   * shadow
   */

  --shadow-1: 0 6px 15px 0 hsla(0, 0%, 0%, 0.05);
  --shadow-2: 0 10px 30px hsla(0, 0%, 0%, 0.06);
  --shadow-3: 0 10px 50px 0 hsla(220, 53%, 22%, 0.1);

  /**
   * radius
   */

  --radius-pill: 500px;
  --radius-circle: 50%;
  --radius-3: 3px;
  --radius-5: 5px;
  --radius-10: 10px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
span,
data,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

.always-white-link,
.always-white-link:link,
.always-white-link:visited,
.always-white-link:hover,
.always-white-link:active {
  color: #fff !important;
  text-decoration: none !important;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--gray-web);
  font-size: 1.6rem;
  line-height: 1.75;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.shape {
  position: absolute;
  display: none;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
  line-height: 1;
}


h1,
h2,
h3,
h4 {
  color: var(--eerie-black-1);
  /* If you want to match the same font and line-height as .h1, .h2, .h3 classes: */
  font-family: var(--ff-league_spartan);
  line-height: 1;
}


.h1,
.h2 { font-weight: var(--fw-600); }

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
}

.section-title {
  --color: var(--radical-red);
  text-align: left;
}

.section-small-title {
  text-align: left;
  color: var(--radical-red);
  padding: 20px 0px;
}

.section-title .span {
  display: inline-block;
  color: var(--color);
}

.btn {
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: max-content;
  padding: 10px 20px;
  border-radius: var(--radius-5);
  overflow: hidden;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

.btn::before {
  inset: 0;
  background-image: var(--gradient);
  z-index: -1;
  border-radius: inherit;
  transform: translateX(-100%);
  transition: var(--transition-2);
}

.btn:is(:hover, :focus)::before { transform: translateX(0); }

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

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

.section-subtitle {
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-align: left;
  margin-block-end: 15px;
}

.section-text {
  font-size: var(--fs-5);
  text-align: center;
  margin-block: 15px 25px;
}

.grid-list {
  display: grid;
  gap: 30px;
}

.category-card,
.stats-card { background-color: hsla(var(--color), 0.1); }

:is(.course, .blog) .section-title { margin-block-end: 20px; }

.calendar-tabs {
    margin-top: 20px;
}

.tab-container {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1px;
}

.year-tab {
    padding: 8px 16px;
    border: none;
    background-color: var(--light-gray);
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    font-weight: 500;
    transition: background-color 0.2s;
}

.year-tab:hover {
    background-color: var(--kappel_15);
}

.year-tab.active {
    background-color: var(--kappel);
    color: white;
}



/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

/* Logo and district name container */
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.district-name {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.district-title {
  font-family: var(--ff-league_spartan);
  font-size: 28px;
  font-weight: 700;
  color: var(--eerie-black-1);
  line-height: 1.2;
}

.district-subtitle {
  font-family: var(--ff-league_spartan);
  font-size: 18px;
  color: var(--eerie-black-1);
  line-height: 1.2;
}

/* Adjust header container for the new content */
.header .container {
  padding-inline: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .district-name {
    display: none; /* Hide district name on mobile */
  }
}

/* Ensure the navbar doesn't overlap with the logo container */
.navbar {
  margin-left: auto;
  margin-right:30px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 12px;
  box-shadow: var(--shadow-1);
  z-index: 4;
}

.header.active { position: fixed; }

.header .container,
.header-actions,
.navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.header-action-btn,
.nav-close-btn {
  position: relative;
  color: var(--eerie-black-1);
  font-size: 24px;
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) { color: var(--kappel); }

.header-action-btn .btn-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-6);
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-circle);
}

.navbar {
  position: fixed;
  top: 0;
  left: -320px;
  background-color: var(--white);
  width: 100%;
  max-width: 320px;
  height: 100%;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(320px);
  transition: 0.5s var(--cubic-out);
}

.navbar .wrapper {
  padding: 15px 20px;
  border-block-end: 1px solid var(--platinum);
}

.nav-close-btn {
  background-color: var(--white);
  box-shadow: var(--shadow-2);
  padding: 8px;
  border-radius: var(--radius-circle);
}

.nav-close-btn:is(:hover, :focus) {
  background-color: var(--kappel);
  color: var(--white);
}

.navbar-list { padding: 15px 20px; }

.navbar-item:not(:last-child) { border-block-end: 1px solid var(--platinum); }

.navbar-link {
  padding-block: 8px;
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--kappel); }

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_80);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}



.navbar {
  margin-right: 39px; /* Added right margin to navbar */
}

/* Submenu Styles */
.navbar-item {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-5);
  width: max-content;
  min-width: 500px;
  padding: 20px;
  z-index: 100;
}

.navbar-item:hover .submenu {
  display: flex;
  gap: 30px;
}

.submenu-column {
  flex: 1;
}

.submenu-title {
  color: var(--eerie-black-1);
  font-weight: var(--fw-600);
  font-size: var(--fs-6);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.submenu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submenu-link {
  color: var(--gray-web);
  font-size: var(--fs-6);
  transition: var(--transition-1);
}

.submenu-link:hover {
  color: var(--kappel);
}


.news-submenu {
  /* By default, .submenu is set to 'display: flex', 
     but we want this one column-specific layout. */

  /* 1) Override the gap if you don't want a large horizontal space. */
  gap: 0; /* or a smaller value like 10px */

  /* 2) Force a column direction for the flex container. */
  flex-direction: column;

  /* 3) (Optional) Adjust the minimum width if 500px is too wide for a single column. */
  min-width: 300px; /* or auto, depending on your preference */
}

/* Also override the hover rule specifically for the news submenu, 
   so it stays in 'flex' mode but in a column direction. */
.navbar-item:hover .news-submenu {
  display: flex;
}


.year-selector {
    margin-bottom: 2rem;
    text-align: center;
}

select.year-dropdown {
    padding: 0.5rem 2rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.calendar-table th {
    background-color: #007bff;
    color: white;
    padding: 1rem;
    text-align: left;
}

.calendar-table td {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.calendar-table tr:hover {
    background-color: #f8f9fa;
}

.date-column {
    width: 30%;
    font-weight: 500;
}

.event-column {
    width: 70%;
}

.closure-notice {
    color: #dc3545;
    font-style: italic;
    margin-top: 0.25rem;
}


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

/* Hero section styles */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-block: 60px;
  margin-top: 56px; /* Account for fixed header height */
  overflow: hidden;
}

.zero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-block: 60px;
  margin-top: 0px; /* Account for fixed header height */
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/image1.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.8) 30%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.hero-content {
  max-width: 580px;
  margin-inline: 0;
  position: relative;
  z-index: 1;
}

.hero .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.hero-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-4);
  text-align: left;
  margin-block: 18px 20px;
}

.hero .btn {
  margin-inline: 0;
}

/* Media query adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    margin-top: 60px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero .section-title,
  .hero-text {
    text-align: center;
  }

  .hero .btn {
    margin-inline: auto;
  }

  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0.1) 100%
    );
  }
}




/*-----------------------------------*\
  #CATEGORY
\*-----------------------------------*/

.category .section-subtitle { color: var(--radical-red); }

.category .section-title { --color: var(--kappel); }

.category .section-text { margin-block-end: 20px; }

.category-card {
  padding: 20px 30px;
  text-align: center;
  border-radius: var(--radius-5);
}

.category-card .card-icon {
  background-color: hsla(var(--color), 0.1);
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  margin-inline: auto;
  margin-block-end: 30px;
}

.category-card .card-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-5);
  margin-block: 15px 25px;
}

.category-card .card-badge {
  background-color: hsla(var(--color), 0.1);
  color: hsl(var(--color));
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  padding: 2px 18px;
  max-width: max-content;
  margin-inline: auto;
  border-radius: var(--radius-5);
}


/* Quick Links Section */
.quick-links {
  background-color: var(--eerie-black-1);
  padding: 15px 0;
  margin-top: -7px;
  position: relative;
  z-index: 2;
}

.quick-links .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  line-height:1.1;
  gap: 20px;
}

.quick-link-card {
  padding: 20px;
  background-color: hsla(0, 0%, 100%, 0.1);
  border-radius: var(--radius-5);
  transition: var(--transition-1);
}

.quick-link-card:hover {
  background-color: var(--kappel);
}

.quick-link-title {
  color: var(--white);
  font-size: var(--fs-3);
  font-weight: var(--fw-400);
  margin-bottom: 5px;
}

.quick-link-subtitle {
  color: var(--white);
  font-size: var(--fs-6);
  opacity: 0.8;
}

.quick-links-header {
  color: var(--white);
  margin-bottom: 8px;
}

.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.budget-table th, .budget-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.budget-table th {
  background-color: #f5f5f5;
}
.budget-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.budget-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.metric-card {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
}
.metric-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2563eb;
}

/* Directory Page Typography Styles */
.directory-heading-1 {
  margin: 2.5rem 0 1.5rem;
  color: var(--eerie-black-1);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.directory-heading-2 {
  margin: 2rem 0 1.25rem;
  color: var(--eerie-black-1);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.directory-heading-3 {
  margin: 1.75rem 0 1rem;
  color: var(--eerie-black-1);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.directory-list {
  list-style-type: disc;
  list-style-position: outside;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.directory-list li {
  list-style-type: disc; 
  list-style-position: outside;
  margin-bottom: 0.5rem;
}

/* Change bullet disc color to blue */
.directory-list li::marker {
  color: var(--eerie-black-1);
}

.directory-list a {
  color: inherit;
  text-decoration: none;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  padding-block-start: 0;
  overflow: hidden;
}

.about .container {
  display: grid;
  gap: 30px;
}

.about-banner {
  position: relative;
  z-index: 1;
}

.about-banner .img-holder { border-radius: var(--radius-10); }

.about-shape-2 {
  display: block;
  bottom: 250px;
  left: 360px;
  animation: bounce 2.5s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% { transform: translateY(0); }

  40% { transform: translateY(-30px); }

  60% { transform: translateY(-15px); }
}

.about :is(.section-subtitle, .section-title, .section-text) {
  text-align: left;
}

.about-item {
  margin-block: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-item ion-icon {
  color: var(--selective-yellow);
  font-size: 20px;
  --ionicon-stroke-width: 50px;
}

.about-item .span {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
}





/*-----------------------------------*\
  #COURSE
\*-----------------------------------*/

.course { background-color: var(--isabelline); }

.course-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-5);
  overflow: hidden;
}

.course-card .img-cover { transition: var(--transition-2); }

.course-card:is(:hover, :focus-within) .img-cover { transform: scale(1.1); }

.course-card :is(.abs-badge, .badge) {
  font-family: var(--ff-league_spartan);
  border-radius: var(--radius-3);
}

.course-card .abs-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--selective-yellow);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  padding: 6px 8px;
  padding-block-end: 3px;
}

.course-card .abs-badge ion-icon {
  font-size: 18px;
  margin-block-end: 5px;
  --ionicon-stroke-width: 50px;
}

.course-card .card-content { padding: 25px; }

.course-card .badge {
  background-color: var(--kappel_15);
  max-width: max-content;
  color: var(--kappel);
  line-height: 25px;
  padding-inline: 10px;
}

.course-card .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-block: 15px 8px;
  transition: var(--transition-1);
}

.course-card .card-title:is(:hover, :focus) { color: var(--kappel); }

.course-card :is(.wrapper, .rating-wrapper, .card-meta-list, .card-meta-item) {
  display: flex;
  align-items: center;
}

.course-card .wrapper { gap: 10px; }

.course-card .rating-wrapper { gap: 3px; }

.course-card .rating-wrapper ion-icon { color: var(--selective-yellow); }

.course-card .rating-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

.course-card .price {
  color: var(--radical-red);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-block: 8px 15px;
}

.course-card .card-meta-list { flex-wrap: wrap; }

.course-card .card-meta-item {
  position: relative;
  gap: 5px;
}

.course-card .card-meta-item:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: var(--platinum);
  padding-inline: 10px;
}

.course-card .card-meta-item ion-icon {
  color: var(--quick-silver);
  --ionicon-stroke-width: 50px;
}

.course-card .card-meta-item .span {
  color: var(--eerie-black-1);
  font-size: var(--fs-7);
}

.course .btn {
  margin-inline: auto;
  margin-block-start: 60px;
}





/*-----------------------------------*\
  #VIDEO
\*-----------------------------------*/

.video {
  background-size: contain;
  background-position: center top;
}

.video-banner {
  position: relative;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 120px;
}

.video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--radical-red);
  font-size: 30px;
  padding: 16px;
  color: var(--white);
  border-radius: var(--radius-circle);
  box-shadow: 0 0 0 0 var(--white_50);
  z-index: 1;
  animation: pulse 3s ease infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--white_50); }
  100% { box-shadow: 0 0 0 20px transparent; }
}

.video-banner::after {
  inset: 0;
  background-color: var(--black_30);
}





/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats-card {
  text-align: center;
  padding: 25px;
  border-radius: var(--radius-10);
}

.stats-card :is(.card-title, .card-text) { font-family: var(--ff-league_spartan); }

.stats-card .card-title {
  color: hsl(var(--color));
  font-size: var(--fs-2);
  line-height: 1.1;
}

.stats-card .card-text {
  color: var(--eerie-black-1);
  text-transform: uppercase;
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-card .card-banner { border-radius: var(--radius-10); }

.blog-card .card-banner .img-cover { transition: var(--transition-2); }

.blog-card .card-banner::after {
  inset: 0;
  background-color: var(--black_50);
  opacity: 0;
  transition: var(--transition-1);
}

.blog-card:is(:hover, :focus-within) .card-banner .img-cover { transform: scale(1.1); }

.blog-card:is(:hover, :focus-within) .card-banner::after { opacity: 1; }

.blog-card .card-content {
  position: relative;
  margin-inline: 15px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-3);
  margin-block-start: -100px;
  z-index: 1;
}

.blog-card .card-btn {
  position: absolute;
  top: -40px;
  right: 30px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: 20px;
  padding: 20px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
}

.blog-card .card-btn:is(:hover, :focus) { background-color: var(--radical-red); }

.blog-card:is(:hover, :focus-within) .card-btn {
  opacity: 1;
  transform: translateY(10px);
}

.blog-card :is(.card-meta-item, .card-text, .card-subtitle) {
  font-size: var(--fs-5);
}

.blog-card .card-subtitle { text-transform: uppercase; }

.blog-card .card-title {
  margin-block: 10px 15px;
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) { color: var(--kappel); }

.blog-card :is(.card-meta-list, .card-meta-item) { display: flex; }

.blog-card .card-meta-list {
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-block-end: 20px;
}

.blog-card .card-meta-item {
  gap: 10px;
  align-items: center;
  color: var(--eerie-black-1);
}

.blog-card .card-meta-item ion-icon {
  color: var(--kappel);
  font-size: 18px;
  --ionicon-stroke-width: 40px;
}

/*-----------------------------------*\
  #NEWS
\*-----------------------------------*/

.news { 
  background-color: var(--isabelline);
  padding-block: var(--section-padding);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.news-card {
  background-color: var(--white);
  border-radius: var(--radius-10);
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-2);
  transition: transform var(--transition-1);
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-img-holder {
  flex: 0 0 300px;
  overflow: hidden;
}

.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-2);
}

.news-card:hover .news-img {
  transform: scale(1.1);
}

.news-content {
  padding: 20px;
  flex: 1;
}

.news-date {
  color: var(--kappel);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  margin-bottom: 10px;
}

.news-title {
  color: var(--eerie-black-1);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-text {
  color: var(--gray-web);
  font-size: var(--fs-6);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
}
.sidebar {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 5px;
}
.sidebar h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem;
}
.sidebar li {
  margin: 0.5rem 0rem;
}
.sidebar a {
  color: #444;
  text-decoration: none;
}

.mainy-content h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.main-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.department-block {
  margin-bottom: 2rem;
}

.department-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.department-grid .left-col {
  text-align: center; /* or left if you prefer */
}

.dept-thumbnail {
  width: 100%;
  max-width: 200px; /* constrain thumbnail size */
  height: auto;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}

.department-description {
  margin-top: 0.5rem;
}

[id] {
  scroll-margin-top: 120px;
}

/* Submenu collapsed by default; toggled by JS */
.nav-sublist {
  display: none;
  margin-left: 12.5rem; /* optional indentation */
}

.nav-sublist.open {
  display: block;
  margin-left: 12.5rem; /* optional indentation */
}



/* Ensure the parent link and toggle icon stay on the same line */
.nav-list > li > a,
.nav-list > li > .toggle-icon {
  display: inline-block;       /* keep them side by side */
  vertical-align: middle;      /* align text baseline */
  margin: 0;                   /* remove extra margins if needed */
  line-height: 1.2;            /* optional line-height tweak */
}

/* Give the toggle icon a small left margin so it doesn’t butt up directly against the text */
.toggle-icon {
  display: inline-block;     /* ensure it can have width/height/padding */
  margin-left: 6px;          /* small gap from the text */
  padding: 2px 6px;          /* padding around the plus sign */
  font-size: 18px;           /* make text bigger */
  color: #007bff;            /* change text color to blue (Bootstrap primary-ish) */
  font-weight: bold;         /* keep the plus sign bold */
  cursor: pointer;           /* pointer on hover */
  user-select: none;         /* avoid text highlighting */
  line-height: 1;         /* avoid text highlight */
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .news-card {
    flex-direction: column;
  }

  .news-img-holder {
    flex: 0 0 auto;
  }

  .news-img {
    height: 200px;
  }
}

@media (min-width: 992px) {
  .news-list {
    gap: 30px;
  }

  .news-content {
    padding: 30px;
  }
}

/* Breadcrumb Styles */
.breadcrumb-container {
  background-color: #fafafa;
  padding: 10px 10px;
  margin-top: 92px;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #990000;
  text-decoration: none;
}

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

.breadcrumb {
  display: flex;
  align-items: left;
}
.breadcrumb a, 
.breadcrumb span {
  display: inline-block; /* or inline, either works */
  margin-right: 4px;     /* small spacing if you want */
}

/* School Banner Styles */
.school-banner {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}

.school-banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
}

.school-title {
  color: white;
  font-size: 3rem;
  position: relative;
  z-index: 1;
}

/* School Information Styles */
.school-info-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 40px 0;
}

.principal-info {
  text-align: center;
}

.principal-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-left:25px;
}

.principal-name {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.principal-title {
  color: #666;
}

.school-details {
  display: grid;
  gap: 30px;
}

.address-block {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.quick-facts {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.quick-facts ul {
  list-style: none;
  padding: 0;
}

.quick-facts li {
  margin-bottom: 10px;
}

.meeting-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: #fff;
}
.meeting-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.meeting-date {
  font-weight: bold;
  color: #2563eb;
}
.resolution-list {
  list-style: none;
  padding: 0;
}
.resolution-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}
.resolution-item:last-child {
  border-bottom: none;
}
.resolution-number {
  font-weight: bold;
  color: #4b5563;
}
.resolution-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}
.status-approved {
  background: #dcfce7;
  color: #166534;
}
.status-pending {
  background: #fff7ed;
  color: #9a3412;
}
.meeting-documents {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}


/* Leader Profile Styles */
.leader-profile {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.leader-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.leader-info {
  flex: 1;
}

.leader-info h4 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.leader-title {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
  font-style: italic;
}

.leader-bio {
  line-height: 1.6;
  color: #444;
}

/* Directory Grid Styles */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.directory-item {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.directory-item h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.directory-item .title {
  color: #666;
  font-style: italic;
}

/* Department Card Styles */
.department-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.department-card {
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.department-card:hover {
  transform: translateY(-5px);
}

.department-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 0.5rem;
}

.department-card p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.department-card strong {
  color: #2c3e50;
}

/* Quick Facts Table Styles */
.consequence-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
}

.consequence-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.consequence-table tr:last-child td {
  border-bottom: none;
}

.consequence-table strong {
  color: #2c3e50;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .leader-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .leader-image {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  
  .directory-grid {
    grid-template-columns: 1fr;
  }
  
  .department-grid {
    grid-template-columns: 1fr;
  }
}

.download-box {
  border: 2px dashed #aaa;
  padding: 20px;
  text-align: center;
  max-width: 300px;
  margin: 50px auto;
  border-radius: 10px;
  background: #f9f9f9;
}

/* Download link styling */
.download-box a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

/* Change color on hover */
.download-box a:hover {
  color: #0056b3;
}

/* Icon sizing */
.download-box svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  margin-bottom: 10px;
}
    
/* Highlight Box Enhancement */
.highlight-box {
  background-color: #f8f9fa;
  border-left: 4px solid #e74c3c;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

/* Section Header Enhancements */
.policy-header {
  margin-bottom: 2rem;
}

.policy-header h2 {
  color: #2c3e50;
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.policy-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #e74c3c;
}


/* Active Navigation State */
.navbar-item:has(a[href*="schools"]) .navbar-link {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .school-info-grid {
    grid-template-columns: 1fr;
  }
  
  .school-banner {
    height: 300px;
  }
  
  .school-title {
    font-size: 2rem;
  }
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-repeat: no-repeat;
  background-color: var(--eerie-black-2);
  color: var(--eerie-black-1);
  font-size: var(--fs-5);
}

.footer-top {
  display: grid;
  gap: 30px;
}

.footer-brand-text { margin-block: 20px; }

.footer-brand .wrapper {
  display: flex;
  gap: 5px;
}

.footer-brand .wrapper .span { font-weight: var(--fw-500); }

.footer-link { transition: var(--transition-1); }

.footer-link:is(:hover, :focus) { color: var(--kappel); }

.footer-list-title {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  margin-block-end: 10px;
}

.footer-list .footer-link { padding-block: 5px; }

.newsletter-form { margin-block: 20px 35px; }

.newsletter-form .input-field {
  background-color: var(--white);
  padding: 12px;
  border-radius: var(--radius-5);
  margin-block-end: 20px;
}

.newsletter-form .btn {
  min-width: 100%;
  justify-content: center;
}

.social-list {
  display: flex;
  gap: 25px;
}

.social-link { font-size: 20px; }

.footer-bottom {
  border-block-start: 1px solid var(--eerie-black-1);
  padding-block: 30px;
}

.copyright { text-align: center; }

.copyright-link {
  color: var(--kappel);
  display: inline-block;
}


/* Contact Section Styles */
.contact {
  padding: 80px 0;
  background-color: var(--cultured);
}

.contact-container {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card .h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.contact-info {
  margin-top: 15px;
}

.contact-info h4 {
  color: var(--raisin-black);
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0 10px;
}

.contact-info h4:first-child {
  margin-top: 0;
}

.contact-info p {
  color: var(--sonic-silver);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-info p strong {
  color: var(--raisin-black);
  font-weight: 600;
  margin-right: 5px;
}

.support-info {
  margin-top: 40px;
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.support-info .h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.support-info p {
  color: var(--sonic-silver);
  font-size: 16px;
}

.support-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.support-info a:hover {
  color: var(--primary-dark);
}

/* Responsive Grid Layout */
@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .contact-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Card Hover Effects */
.contact-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Email Link Styles */
.contact-info a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Additional Responsive Adjustments */
@media (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card .h3 {
    font-size: 20px;
  }

  .contact-info h4 {
    font-size: 16px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .support-info {
    padding: 20px;
  }
}

/* Print Styles */
@media print {
  .contact-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }

  .support-info {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}



/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: 20px;
  padding: 15px;
  border-radius: var(--radius-circle);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.back-top-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
}



/* Ensure the table uses the full width */
table.striped-table {
  width: 100%;
  border-collapse: collapse; /* merges cell borders to look cleaner */
  margin-bottom: 1em;
}

/* Style table headers to be prominent */
table.striped-table thead th {
  background-color: #333;
  color: #fff;
  text-align: left;
  padding: 12px;
}

/* Add cell padding */
table.striped-table td {
  padding: 12px;
}

/* Optional: Add a border to distinguish cells */
table.striped-table th,
table.striped-table td {
  border: 1px solid #ccc;
}

/* Stripe alternate rows for readability */
table.striped-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Hover effect (optional) */
table.striped-table tbody tr:hover {
  background-color: #eaeaea;
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .grid-list { grid-template-columns: 1fr 1fr; }

  :is(.course, .blog) .grid-list { grid-template-columns: 1fr; }



  /**
   * HEADER
   */

  .header .container { max-width: unset; }

  .header-actions { gap: 30px; }



  /**
   * HERO
   */

  .hero-banner { grid-template-columns: 1fr 0.9fr; }



  /**
   * VIDEO
   */

  .video .play-btn { padding: 25px; }



  /**
   * STATS
   */

  .stats-card { padding: 40px 30px; }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:last-child { grid-column: 1 / 3; }

  .newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .newsletter-form .input-field { margin-block-end: 0; }

  .newsletter-form .btn { min-width: max-content; }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4.6rem;
    --fs-2: 3.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .btn { padding: 15px 30px; }

  :is(.course, .blog) .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * HEADER
   */

  .header .container { padding-inline: 30px; }

  .header .btn {
    display: flex;
    padding: 10px 30px;
    margin-inline: 20px;
  }



  /**
   * HERO
   */

  .hero { padding-block-start: calc(var(--section-padding) + 20px); }

  .hero .container { gap: 20px; }

  .hero-text { margin-block-end: 20px; }

  .hero-banner {
    position: relative;
    z-index: 1;
  }

  .hero-banner .img-holder { max-width: max-content; }

  .hero-banner .img-holder.one { justify-self: flex-end; }

  .hero-banner .img-holder.two { margin-block-start: 20px; }

  .hero-shape-1 {
    display: block;
    position: absolute;
    bottom: -40px;
    left: -10px;
  }



  /**
   * ABOUT
   */

  .about { padding-block-start: 50px; }

  .about-banner {
    padding: 20px;
    padding-inline-end: 0;
  }

  .about-banner .img-holder {
    max-width: max-content;
    margin-inline: auto;
  }

  .about-shape-1 {
    display: block;
    top: -40px;
    right: -70px;
  }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:last-child { grid-column: auto; }

  .newsletter-form .btn { padding-block: 10px; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.5rem;
    --fs-2: 4.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

  .grid-list { grid-template-columns: repeat(4, 1fr); }

  :is(.course, .blog) .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero .section-title,
  .hero-text { text-align: left; }

  .hero .btn { margin-inline: 0; }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.6fr;
    align-items: center;
    gap: 60px;
  }



  /**
   * VIDEO
   */

  .video-banner {
    max-width: 75%;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  .footer .grid-list { grid-template-columns: 1fr 0.6fr 0.6fr 1.2fr; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.5rem;

    /**
     * spacing
     */

    --section-padding: 20px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1185px; }

  .shape { display: block; }

  .about-content,
  .video-card,
  .blog { position: relative; }



  /**
   * HEADER
   */

  .header-action-btn:last-child,
  .navbar .wrapper,
  .overlay { display: none; }

  .header.active {
    transform: translateY(-100%);
    animation: slideIn 0.5s ease forwards;
  }

  @keyframes slideIn {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
  }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    display: flex;
    gap: 50px;
    padding: 0;
  }

  .navbar-item:not(:last-child) { border-block-end: none; }

  .navbar-link {
    color: var(--eerie-black-1);
    padding-block: 20px;
  }

  .header .btn { margin-inline-end: 0; }



  /**
   * HERO
   */

  .hero { padding-block-start: calc(var(--section-padding) + 20px); }

  .hero .container { gap: 20px; }

  .hero-shape-2 {
    top: -80px;
    z-index: -1;
  }



  /**
   * ABOUT
   */

  .about .container { gap: 40px; }

  .about-banner .img-holder { margin-inline: 0; }

  
  .circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}
.bg-blend {
    mix-blend-mode: multiply;
}
  .hero-visual {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 20px auto 0;
    max-width: 300px;
   }

  .fill-cyan {
    fill:#00b6ef;
  }

  .circle[Attributes Style] {
    cx: 73;
    cy: 73;
    r: 73;
  }



  .about-content { z-index: 1; }

  .about-shape-4 {
    top: 30px;
    right: -60px;
    z-index: -1;
  }

.policy-section {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.policy-header {
  border-bottom: 2px solid #2563eb;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.consequence-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.consequence-table th,
.consequence-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.consequence-table th {
  background-color: #f5f5f5;
}
.level-indicator {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}
.level-1 { background: #dcfce7; color: #166534; }
.level-2 { background: #fff7ed; color: #9a3412; }
.level-3 { background: #fee2e2; color: #991b1b; }
.highlight-box {
  background: #f0f9ff;
  border-left: 4px solid #2563eb;
  padding: 1rem;
  margin: 1rem 0;
}

  /**
   * VIDEO
   */

  .video-shape-1 {
    top: -50px;
    left: 0;
  }

  .video-shape-2 {
    top: -80px;
    right: 120px;
    z-index: 1;
  }



  /**
   * BLOG
   */

  .blog-shape {
    top: 0;
    left: 0;
  }

}

a,
a:link,
a:visited,
a:hover,
a:active {
  color: var(--eerie-black-1) !important;
  text-decoration: none !important;
}

