.contracts-main {
  background: linear-gradient(180deg, #f8fcfd 0%, #fff 40%);
}

.contracts-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.contracts-section__head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.contracts-section__head h2 {
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.contracts-section__head p {
  margin: 0;
  color: var(--text-muted, #5a6b73);
  line-height: 1.7;
}

.contracts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem;
}

.contract-card {
  background: #fff;
  border: 1px solid rgba(26, 168, 182, 0.12);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 45, 55, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contract-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 45, 55, 0.1);
}

.contract-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  margin-bottom: 1rem;
}

.contract-card__logo img {
  max-width: 160px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.contract-card__placeholder {
  font-size: 2rem;
  opacity: 0.5;
}

.contract-card__name {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.contract-card__notes {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted, #5a6b73);
  line-height: 1.6;
}

.contracts-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px dashed rgba(26, 168, 182, 0.25);
}

.contracts-empty p {
  margin: 0 0 1.25rem;
  color: var(--text-muted, #5a6b73);
}

.contracts-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(26, 168, 182, 0.08), rgba(212, 175, 55, 0.08));
  border-radius: 1rem;
}

.contracts-cta p {
  margin: 0 0 1rem;
  color: var(--text-muted, #5a6b73);
}
