.awp-widget {
  width: 100%;
}

.awp-items {
  display: grid;
  gap: 16px;
}

.awp-item {
  --awp-item-bg: #ffffff;
  --awp-item-text: #111111;
  --awp-button-bg: #111111;
  --awp-button-text: #ffffff;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 16px;
  background: var(--awp-item-bg);
  color: var(--awp-item-text);
  box-sizing: border-box;
}

.awp-item a,
.awp-item .awp-item-title,
.awp-item .awp-item-description {
  color: var(--awp-item-text);
}

.awp-item-logo img,
.awp-logo-placeholder {
  width: 88px;
  height: 88px;
  display: block;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.22);
}

.awp-item-title {
  margin: 0 0 6px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.awp-item-description {
  margin: 0 0 12px;
}

.awp-item-button {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  background: var(--awp-button-bg);
  color: var(--awp-button-text) !important;
}

.awp-layout-carousel .awp-item {
  display: none;
}

.awp-layout-carousel .awp-item.is-active {
  display: grid;
}

.awp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.awp-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #c7c7c7;
  cursor: pointer;
  padding: 0;
}

.awp-dot.is-active {
  background: #111;
}

@media (max-width: 640px) {
  .awp-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .awp-item-logo img,
  .awp-logo-placeholder {
    margin: 0 auto;
  }
}
