 /* School Profile Card */
.school-card {
  display: grid;
  grid-template-columns: 100px auto;
  align-items: center;
  gap: 1.5rem;
  background: #f2f2f2;
  border-left: 6px solid #003b31;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  margin-bottom: 0rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.school-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.school-card h1::before{
  content: "— ";
}
.school-card h1::after{
  content: " —";
}
.school-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #003b31;
  object-fit: cover;
  background: #ddd;
}
.school-card h1 {
  margin: 0 0 0.5rem;
  font-size: 1.9rem;
  color: #003b31;
}
.school-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #000;
}
.school-card li {
  display: flex;
  align-items: left;
  gap: 0.4rem;
  background: #ffc400;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #000;
  white-space: normal;     /* allow wrapping */
  word-break: keep-all;    /* keep words like 'Location' intact */
  overflow-wrap: break-word; /* wrap only long location names */
  max-width: 100%;
}


/* Responsive fix for mobile */
@media (max-width: 600px) {
  .school-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .school-card img {
    margin: 0 auto;
  }
  .school-card ul {
    justify-content: center;
  }
}


/* School description */
.school-description {
  background: #f2f2f2;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border-top: #000 solid 1px;
  border-right: #000 solid 1px;
  border-bottom: #000 solid 1px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.school-description h2 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #003b31;
}

/* Accordion */
.accordion { border-radius: 12px; overflow: hidden; margin-bottom: 2rem; }
.accordion-item { border-bottom: 1px solid #003b3122; }
.accordion-header {
  background: #003b31;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}
.accordion-header:hover { background: #730000; }
.accordion-content {
  display: block;
  border: solid 1px #000;
  padding: 1rem 1.5rem;
  background: #f2f2f2;
}
.accordion-content.active { display: none; }

/* Updates list */
.updates {
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 10px;
}
.updates h2 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #003b31;
  border-left: 6px solid #003b31;
  padding: 10px;
}
.updates h2::before{
    
}
.updates ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: grid;
  gap: 0rem; /* spacing between cards */
}
.updates li {
  background: #ffffff;
  padding: 1rem 1.2rem;
  border-radius: 8px 0;
  border-bottom: 1px solid #000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.updates li:hover {
  transform: translateY(-0px);
  border-bottom: 1px solid #f30000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.updates li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #ff0000;
  border-radius: 50%;
  margin-right: 0.6rem;
}

.updates a {
  display: block;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 1rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .updates {
    padding: 0rem;
  }
  .updates li {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  .updates a {
    font-size: 0.95rem;
  }
}


/* Card List */
  .GNschoolarc-card-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 20px 10px;
  }

  .GNschoolarc-card-links a {
    flex: 1 1 250px;
    background: #ffc400;
    color: #000;
    text-decoration: none;
    text-align: center;
    padding: 12px 20px;
    border-radius: 0 6px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .GNschoolarc-card-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }


  .blinko {
  animation: blinker 1s step-start infinite;
  color: #ff0000;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}