:root {
  --awpwl-bg: #ffffff;
  --awpwl-border: #e5e7eb;
  --awpwl-title: #111827;
  --awpwl-text: #374151;
  --awpwl-primary: #0ea5e9;
}
.awpwl-section {
  direction: rtl;
  background: var(--awpwl-bg);
  margin: 1rem 0;
}
.awpwl-title {
  text-align: right;
  font-size: 1.5rem;
  color: var(--awpwl-title);
  margin: 0 0 1rem 0;
}
.awpwl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.awpwl-card {
  border: 1px solid var(--awpwl-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.awpwl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.awpwl-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: #f9fafb;
  border-bottom: 1px solid var(--awpwl-border);
}
.awpwl-logo {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}
.awpwl-placeholder {
  color: #6b7280;
  font-size: .9rem;
}
.awpwl-info {
  padding: 12px 14px;
}
.awpwl-name {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: var(--awpwl-title);
  text-align: right;
}
.awpwl-link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--awpwl-primary), #22c55e);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}
.awpwl-link:hover {
  opacity: .9;
}
.awpwl-disabled {
  background: #9ca3af;
  cursor: not-allowed;
}
.awpwl-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--awpwl-text);
  padding: 16px;
  border: 1px dashed var(--awpwl-border);
  border-radius: 12px;
}
