/* Schröer Custom CSS */
.schroeer-hero .wp-block-cover__inner-container {
  max-width: 1100px;
}
.schroeer-section-soft {
  background: linear-gradient(180deg, #f5f7f5 0%, #eef3ef 100%);
  padding: 48px 32px;
  border-radius: 18px;
}
.schroeer-contact-cta {
  background: linear-gradient(135deg, #0f4b45 0%, #0a2f2c 100%);
  color: #fff;
  padding: 48px 32px;
  border-radius: 18px;
}
.schroeer-contact-cta h2,
.schroeer-contact-cta p {
  color: #fff;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 24px 0 32px;
}
.team-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  min-height: 620px;
  text-decoration: none;
  background: #dfe6df;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  background: rgba(8, 20, 22, 0.78);
  color: #fff;
  transform: translateY(calc(100% - 128px));
  transition: transform .28s ease;
}
.team-card:hover .team-overlay,
.team-card:focus .team-overlay {
  transform: translateY(0);
}
.team-overlay h3 {
  margin: 0 0 8px;
  color: #fff;
}
.team-overlay .role {
  color: #90d23a;
  font-weight: 600;
}
.team-overlay ul {
  margin: 12px 0 0 18px;
}
.team-overlay .more {
  margin-top: 18px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    min-height: auto;
  }
  .team-overlay {
    position: static;
    transform: none;
    background: rgba(8, 20, 22, 0.9);
  }
}