/* Our Mascots section styles */

.our-mascots-section {
  background: #f8fafc;
  padding: 36px 0 36px 0;
  margin: 0 auto 48px auto;
  max-width: 900px;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(30,40,60,0.08);
}
.our-mascots-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 1.5px;
  padding: 18px 0 18px 0;
  background: linear-gradient(90deg, #e3f6e8 0%, #2b503b 100%);
  color: #fff;
  border: 2.5px solid #b6e0d8;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(30,40,60,0.13);
  border: 2.5px solid #e3f6e8;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px #1a3a2d44, 0 1px 0 #fff;
}
.our-mascots-flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 18px;
}
.our-mascot-flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 200px;
}
.our-mascot-flex-col.left {
  justify-content: flex-start;
}
.our-mascot-flex-col.right {
  justify-content: flex-end;
}
.our-mascot-img-large {
  width: 240px;
  height: 240px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 #b6e0d8cc;
}
.our-mascot-name-large {
  font-size: 2rem;
  font-weight: 800;
  color: #23424a;
  margin-top: 8px;
  letter-spacing: 1px;
}
.our-mascot-flex-desc {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 180px;
  max-width: 340px;
  margin: 0 12px;
}
.our-mascot-desc-large {
  font-size: 1.08rem;
  color: #314358;
  font-weight: 500;
  margin-bottom: 0;
  opacity: 0.96;
  max-width: 220px;
}
.our-mascot-desc-large.mola {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.our-mascot-desc-large.ava {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}
@media (max-width: 900px) {
  .our-mascots-section {
    padding: 24px 16px;
  }
  .our-mascots-title {
    font-size: 1.8rem;
    width: 90%;
  }
  .our-mascots-flex-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0 4vw;
  }
  .our-mascot-flex-col {
    flex: 0 0 auto;
  }
  .our-mascot-flex-col.left,
  .our-mascot-flex-col.right {
    order: 1;
  }
  .our-mascot-flex-desc {
    order: 2;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }
  .our-mascot-desc-large.mola,
  .our-mascot-desc-large.ava {
    margin: 0 auto;
    text-align: center;
  }
  .our-mascot-desc-large.ava {
    margin-top: 16px;
  }
  .our-mascot-img-large {
    width: 180px;
    height: 180px;
  }
  .our-mascot-name-large {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .our-mascots-title {
    font-size: 1.5rem;
  }
  .our-mascot-img-large {
    width: 150px;
    height: 150px;
  }
  .our-mascot-name-large {
    font-size: 1.3rem;
  }
  .our-mascot-desc-large {
    font-size: 1rem;
  }
}
