.public-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 22px 24px;
  border-bottom: 4px solid #ec4899;
}

.public-header-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.public-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.public-brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #ec4899;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.public-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.public-kicker {
  margin: 0 0 4px;
  color: #f9a8d4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.public-header h1 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.public-nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.public-nav a:hover,
.public-nav a.active {
  color: #ffffff;
  background: rgba(236, 72, 153, 0.9);
}

@media (max-width: 700px) {
  .public-header {
    padding: 18px 14px;
  }

  .public-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-brand-icon {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .public-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .public-nav a {
    text-align: center;
    padding: 9px 8px;
  }
}
body {
  margin: 0;
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
}
* {
  box-sizing: border-box;
}
.teams-widget {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.eyebrow {
  margin: 0 0 6px;
  color: #ec4899;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
h1 {
  margin: 0 0 20px;
  font-size: 34px;
}
.public-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 18px;
}
.public-filters select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
}
.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.team-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 22px 44px rgba(17, 24, 39, 0.14);
}
.color-bar {
  height: 8px;
  width: 100%;
  border-radius: 999px;
  margin-bottom: 16px;
  background: #ec4899;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.1);
}
.team-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.1);
}
.team-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
  color: #111827;
}
.meta {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.65;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .teams-grid {
    grid-template-columns: 1fr 1fr;
  }
  .public-filters {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .teams-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .teams-widget {
    padding: 14px;
  }

  .team-card {
    padding: 18px;
  }

  .team-card:hover {
    transform: none;
  }
}
