/* School Directory Plugin Styles */
.sd-school-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.sd-school-card-list {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.sd-school-card-list:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.sd-school-thumb {
  display: block;
  width: 100%;
}
.sd-school-thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.sd-school-card-list-body {
  padding: 1rem;
}
.sd-school-card-list h3 {
  margin: 0 0 .5rem 0;
  font-size: 1.2rem;
}
.sd-school-state {
  color: #2a7ae2;
  font-size: .95rem;
  font-weight: 500;
}

/* Single School Card */
.sd-school-card-main {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
}
.sd-school-header {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
.sd-school-thumb-main img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  background: #f5f5f5;
}
.sd-school-header-info {
  flex: 1 1 300px;
  min-width: 220px;
}
.sd-school-header-info h1 {
  margin: 0 0 .5rem 0;
  font-size: 2rem;
  color: #2a7ae2;
}
.sd-school-state-main {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: .5rem;
}
.sd-school-address, .sd-school-contact, .sd-school-email {
  font-size: 1rem;
  margin-bottom: .3rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sd-school-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.sd-card-section {
  background: #f8faff;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0;
  box-shadow: 0 1px 4px rgba(42,122,226,0.04);
  position: relative;
}
.sd-card-section h2 {
  font-size: 1.1rem;
  margin: 0 0 .7rem 0;
  color: #2a7ae2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sd-icon {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin-right: 2px;
}
/* Timeline for Important Dates */
.sd-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid #2a7ae2;
}
.sd-timeline li {
  position: relative;
  padding: 0.5em 0 0.5em 1.5em;
  margin-bottom: .2em;
}
.sd-timeline-date {
  font-weight: bold;
  color: #2a7ae2;
  margin-right: 8px;
}
.sd-timeline-label {
  background: #eaf2fd;
  color: #1a3d6d;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: .98em;
}
.sd-timeline li:before {
  content: '';
  position: absolute;
  left: -9px;
  top: 1.1em;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 3px solid #2a7ae2;
  border-radius: 50%;
  z-index: 1;
}
/* Badges for numbers */
.sd-badges-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.sd-badge-card {
  background: #eaf2fd;
  border-radius: 8px;
  padding: 1em 1.5em;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(42,122,226,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sd-badge-label {
  color: #2a7ae2;
  font-size: 1em;
  margin-bottom: .3em;
}
.sd-badge-value {
  font-size: 1.3em;
  font-weight: bold;
  color: #1a3d6d;
}
/* Step/Process sections */
.sd-step-section {
  border-left: 4px solid #2a7ae2;
  background: #fafdff;
  margin-bottom: 0;
}
.sd-step-content {
  padding-left: .5em;
  color: #1a3d6d;
  font-size: 1em;
}
/* Button links */
.sd-links-list {
  display: flex;
  flex-direction: column;
  gap: .7em;
  margin-top: .5em;
}
.sd-link-btn {
  display: inline-block;
  background: linear-gradient(90deg,#2a7ae2 60%,#1a3d6d 100%);
  color: #fff !important;
  padding: .5em 1.2em;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(42,122,226,0.10);
}
.sd-link-btn:hover {
  background: linear-gradient(90deg,#1a3d6d 60%,#2a7ae2 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(42,122,226,0.18);
}
/* Gallery */
.sd-school-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sd-school-faqs dt {
  font-weight: bold;
  margin-top: .7em;
}
.sd-school-faqs dd {
  margin: 0 0 .5em 0;
  padding-left: 1em;
}
@media (max-width: 800px) {
  .sd-school-sections { grid-template-columns: 1fr; }
  .sd-school-header { flex-direction: column; gap: 1rem; }
  .sd-school-card-main { padding: 1rem; }
  .sd-badges-row { flex-direction: column; gap: .7rem; }
}