/* Teaching Value Cards - Custom Styles */
:root {
  --primary: #20bfa9;
  --secondary: #00394f;
  --accent: #f77ca2;
  --yellow: #ffe066;
  --light: #f8f9fa;
}
.teaching-value-card {
  min-height: 340px;
  height: 100%;
  background: var(--light);
  border-radius: 16px;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 18px rgba(0,57,79,0.10);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
  position: relative;
  overflow: visible;
  padding-top: 2.5rem !important;
  padding-bottom: 1.5rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
}
.teaching-value-card:hover {
  box-shadow: 0 8px 32px rgba(0,57,79,0.16);
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
  background: #fffbe6;
}
.teaching-value-card .emoji {
  position: static;
  margin-top: -1.8rem;
  margin-bottom: 0.7rem;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #fffbe6 60%, #ffe066 100%);
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(32,191,169,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 3;
  transition: background 0.2s, box-shadow 0.2s;
}
.teaching-value-card h4 {
  font-family: 'Handlee', cursive;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  text-align: center;
}
.teaching-value-card p {
  color: var(--secondary);
  font-size: 1.05rem;
  margin-bottom: 0;
  text-align: center;
}
/* Staggered/Overlapping Polaroid Effect */
@media (min-width: 992px) {
  .teaching-value-card {
    margin-top: 0 !important;
    transform: none !important;
  }
}
@media (max-width: 991.98px) {
  .teaching-value-card {
    margin-top: 0 !important;
    transform: none !important;
  }
  .teaching-value-card .emoji {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-top: -1.2rem;
  }
} 