.wdm-suppliers-grid {
  margin-top: 20px;
  margin-bottom: 20px;
}

.wdm-suppliers-grid__title {
  margin: 0;
  color: #323232;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.wdm-suppliers-grid__intro {
  margin-top: 14px;
  margin-bottom: 24px;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.wdm-suppliers-grid__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wdm-suppliers-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  padding: 18px;
}

.wdm-suppliers-card__logo-wrap {
  display: flex;
  align-items: center;
  min-height: 72px;
  margin-bottom: 14px;
}

.wdm-suppliers-card__logo {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.wdm-suppliers-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #efefef;
  padding-top: 14px;
  margin-bottom: 10px;
}

.wdm-suppliers-card__name {
  margin: 0;
  color: #323232;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.wdm-suppliers-card__country {
  color: #555;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

.wdm-suppliers-card__desc {
  margin: 0 0 16px;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  flex-grow: 1;
}

.wdm-suppliers-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wdm-suppliers-card__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  color: #005ca9;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wdm-suppliers-card__icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wdm-suppliers-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  color: #005ca9;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wdm-suppliers-card__cta:hover,
.wdm-suppliers-card__cta:focus-visible,
.wdm-suppliers-card__icon-link:hover,
.wdm-suppliers-card__icon-link:focus-visible {
  background: #005ca9;
  border-color: #005ca9;
  color: #fff;
}

.wdm-suppliers-card__cta.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .wdm-suppliers-grid__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wdm-suppliers-grid {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .wdm-suppliers-grid__cards {
    grid-template-columns: 1fr;
  }

  .wdm-suppliers-grid__title {
    font-size: 28px;
  }

  .wdm-suppliers-grid__intro {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
  }
}
