div.sports-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

div.sports-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 400px;
}

div.sports-search-wrapper::before {
  content: '';
  position: absolute;
  left: 10px;
  width: 16px;
  height: 16px;
  opacity: 0.65;
  color: #8a8a8a;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

#sport-search {
  width: 100%;
  height: 34px;
  padding: 0 12px 0 30px;
  border-radius: 8px;
  border: 1.5px solid #e2e2e2;
  background: #ffffff;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

#sport-search::placeholder {
  color: #9b9b9b;
  font-weight: 500;
}

#sport-search:hover {
  border-color: #d0d0d0;
}

#sport-search:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--light-orange);
}

div.sports-card {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 14px;
  display: grid;
  gap: 12px;
}

div.sports-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

div.sports-identity {
  display: flex;
  align-items: center;
  gap: 10px;
}

img.sport-icon-image {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
}

h2.sport-name {
  font-size: 1rem;
  color: var(--gray);
}

div.sport-type-tags {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

span.sport-type {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f5f5f;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  padding: 4px 8px;
  background: #f7f7f7;
}

div.sports-meta-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 280px;
}

div.sports-meta-item {
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 8px;
  background: #fafafa;
}

p.sports-meta-label,
p.sports-detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a7a7a;
}

p.sports-meta-value,
p.sports-detail-value {
  margin-top: 3px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 10px;
}

div.sports-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
}

div.sports-detail-block {
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
}

div.sports-venue-by-gender {
  margin-top: 3px;
  display: grid;
  gap: 8px;
}

div.sports-venue-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

div.sports-venue-row-text{
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

div.sports-venue-by-gender p, div.sports-venue-by-gender span {
  font-size: 0.82rem;
  color: #4f4f4f;
}

div.sports-venue-by-gender span {
  font-weight: 800;
  color: var(--orange);
}

button.view-map-button {
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  background: #ffffff;
  color: var(--gray);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
  cursor: pointer;
  white-space: nowrap;
}

button.view-map-button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

details.sports-more-dropdown {
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #fafafa;
  overflow: hidden;
}

details.sports-more-dropdown > summary {
  cursor: pointer;
  list-style: none;
  padding: 9px 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

details.sports-more-dropdown > summary::-webkit-details-marker {
  display: none;
}

div.sports-more-content {
  border-top: 1px solid #e7e7e7;
  padding: 8px 10px;
  display: grid;
  gap: 4px;
}

div.sports-more-content p {
  font-size: 0.8rem;
  color: #5f5f5f;
}

@media screen and (max-width: 860px) {
  div.sports-search-wrapper {
    width: 100%;
    min-width: 0;
  }

  div.sports-card-header {
    flex-direction: column;
  }

  div.sports-meta-quick {
    min-width: 0;
    width: 100%;
  }

  div.sports-details-grid {
    grid-template-columns: 1fr;
  }

  div.sports-venue-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
