/* Sports Team Bio Plugin Styles */

.team-bio {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-logo {
  text-align: center;
  margin-bottom: 20px;
}

.team-logo img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}

.team-title {
  font-size: 2.5em;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 3px solid #007cba;
  padding-bottom: 10px;
}

.team-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.team-details {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.team-details h3 {
  color: #007cba;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.team-details ul {
  list-style: none;
  padding: 0;
}

.team-details li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.team-details li:last-child {
  border-bottom: none;
}

.team-details strong {
  color: #333;
  display: inline-block;
  width: 120px;
}

/* Teams List Styles */
.teams-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.team-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.team-item .team-logo {
  margin-right: 15px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.team-item .team-logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.team-item .team-info h3 {
  margin: 0 0 5px 0;
  font-size: 1.2em;
}

.team-item .team-info h3 a {
  color: #007cba;
  text-decoration: none;
}

.team-item .team-info h3 a:hover {
  text-decoration: underline;
}

.team-item .team-info p {
  margin: 0;
  color: #666;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-bio {
    padding: 15px;
    margin: 10px;
  }

  .team-title {
    font-size: 2em;
  }

  .teams-list {
    grid-template-columns: 1fr;
  }

  .team-item {
    flex-direction: column;
    text-align: center;
  }

  .team-item .team-logo {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .team-details strong {
    width: auto;
    display: block;
    margin-bottom: 5px;
  }
}
