/* Provider Page Styles */

.provider-article {
  padding: 2rem 0 4rem;
}

/* Provider Hero */
.provider-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .provider-hero {
    grid-template-columns: 200px 1fr;
    align-items: center;
  }
}

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: var(--radius);
}

.provider-logo img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
}

.provider-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, var(--foreground) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .provider-hero h1 {
    font-size: 2.5rem;
  }
}

.provider-tagline {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* Provider Stats */
.provider-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1rem;
}

.provider-stats .stat {
  text-align: center;
}

.provider-stats .stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}

.provider-stats .stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Provider Content */
.provider-content {
  max-width: 900px;
}

.provider-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--foreground);
}

.provider-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--gold);
}

.provider-content p {
  margin-bottom: 1rem;
  color: var(--foreground);
  line-height: 1.7;
}

/* Provider Slots Grid */
.provider-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 640px) {
  .provider-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .provider-slots-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.provider-slot-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.provider-slot-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.provider-slot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.slot-card-info {
  padding: 0.75rem;
  text-align: center;
}

.slot-card-info .slot-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.slot-card-info .slot-rtp {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.feature-list li strong {
  color: var(--gold);
}

/* Related Providers */
.related-providers {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-providers h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.provider-card-small {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--foreground);
  transition: all 0.3s;
}

.provider-card-small:hover {
  border-color: var(--gold);
  color: var(--gold);
}