.wgt-table-wrap {
  --wgt-surface: var(--wgt-surface-color, var(--wp--preset--color--base, #f3f4f6));
  --wgt-surface-2: var(--wgt-surface-alt-color, rgba(0, 0, 0, 0.04));
  --wgt-card-bg: var(--wgt-card-bg-color, rgba(20, 20, 24, 0.92));
  --wgt-card-bg-2: var(--wgt-card-bg-soft-color, rgba(255, 255, 255, 0.06));
  --wgt-text: var(--wgt-text-color, var(--wp--preset--color--foreground, #111827));
  --wgt-text-on-dark: var(--wgt-text-on-dark-color, #ffffff);
  --wgt-muted: var(--wgt-muted-color, rgba(17, 24, 39, 0.72));
  --wgt-muted-on-dark: var(--wgt-muted-on-dark-color, rgba(255, 255, 255, 0.78));
  --wgt-border: var(--wgt-border-color, rgba(255, 255, 255, 0.08));
  --wgt-accent: var(--wgt-accent-color, var(--wp--preset--color--primary, #4b5563));
  --wgt-accent-hover: var(--wgt-accent-hover-color, #374151);
  --wgt-radius-xl: 18px;
  --wgt-radius-lg: 14px;
  --wgt-radius-md: 12px;
  margin: 24px 0;
  text-align: center;
  color: var(--wgt-text);
}

.wgt-table-title {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--wgt-text);
}

.wgt-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wgt-cards-grid--sidebar {
  grid-template-columns: 1fr;
  gap: 16px;
}

.wgt-cards-grid--compact {
  grid-template-columns: 1fr;
  gap: 12px;
}

.wgt-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--wgt-border);
  border-radius: var(--wgt-radius-lg);
  background: var(--wgt-card-bg);
  color: var(--wgt-text-on-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.wgt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0) 38%);
}

.wgt-card-top {
  padding: 14px;
}

.wgt-card-bottom {
  padding: 0 14px 14px;
}

.wgt-card-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-align: center;
}

.wgt-logo {
  width: 92px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 8px;
  flex: 0 0 auto;
}

.wgt-card-brand-text {
  min-width: 0;
}

.wgt-name {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--wgt-text-on-dark);
}

.wgt-rating {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--wgt-muted-on-dark);
}

.wgt-bonus {
  display: block;
  margin: 0;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--wgt-radius-md);
  background: var(--wgt-card-bg-2);
  color: var(--wgt-text-on-dark);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  white-space: pre-line;
}

.wgt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: var(--wgt-accent);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.wgt-btn:hover,
.wgt-btn:focus {
  background: var(--wgt-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.wgt-empty {
  padding: 16px;
  border: 1px solid var(--wgt-border);
  border-radius: var(--wgt-radius-lg);
  background: var(--wgt-surface);
  color: var(--wgt-muted);
  font-size: 14px;
}

.wgt-table-wrap--sidebar .wgt-card,
.wgt-cards-grid--sidebar .wgt-card {
  border-radius: 14px;
}

.wgt-table-wrap--sidebar .wgt-card + .wgt-card,
.wgt-cards-grid--sidebar .wgt-card + .wgt-card {
  margin-top: 2px;
}

.wgt-table-wrap--sidebar .wgt-card-top,
.wgt-cards-grid--sidebar .wgt-card-top {
  padding: 14px 14px 12px;
}

.wgt-table-wrap--sidebar .wgt-card-bottom,
.wgt-cards-grid--sidebar .wgt-card-bottom {
  padding: 0 14px 14px;
}

.wgt-table-wrap--sidebar .wgt-card-brand,
.wgt-cards-grid--sidebar .wgt-card-brand {
  gap: 8px;
  margin-bottom: 12px;
}

.wgt-table-wrap--sidebar .wgt-logo,
.wgt-cards-grid--sidebar .wgt-logo {
  width: 74px;
  height: 30px;
}

.wgt-table-wrap--sidebar .wgt-name,
.wgt-cards-grid--sidebar .wgt-name {
  font-size: 14px;
}

.wgt-table-wrap--sidebar .wgt-bonus,
.wgt-cards-grid--sidebar .wgt-bonus {
  padding: 12px 10px;
  font-size: 14px;
}

.wgt-table-wrap--sidebar .wgt-btn,
.wgt-cards-grid--sidebar .wgt-btn {
  min-height: 40px;
  font-size: 13px;
}

.wgt-table-wrap--compact .wgt-cards-grid,
.wgt-cards-grid--compact {
  gap: 12px;
}

.wgt-table-wrap--compact .wgt-card,
.wgt-cards-grid--compact .wgt-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.wgt-table-wrap--compact .wgt-card-top,
.wgt-cards-grid--compact .wgt-card-top {
  padding: 12px;
}

.wgt-table-wrap--compact .wgt-card-bottom,
.wgt-cards-grid--compact .wgt-card-bottom {
  padding: 0 12px 12px;
}

.wgt-table-wrap--compact .wgt-bonus,
.wgt-cards-grid--compact .wgt-bonus {
  font-size: 14px;
  padding: 10px;
}

.wgt-disclaimer-wrap {
  margin: 20px 0;
  padding: 14px 16px;
  border: 1px solid var(--wgt-border);
  background: var(--wgt-surface);
  border-radius: var(--wgt-radius-lg);
  color: var(--wgt-text);
}

.wgt-disclaimer-title {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--wgt-text);
}

.wgt-disclaimer-text {
  color: var(--wgt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.wgt-disclaimer-text p:last-child {
  margin-bottom: 0;
}

.wgt-disclaimer--default {
  border-color: var(--wgt-border);
  background: var(--wgt-surface);
}

.wgt-disclaimer--soft {
  background: color-mix(in srgb, var(--wgt-surface) 85%, var(--wgt-accent) 15%);
}

.wgt-disclaimer--accent {
  background: color-mix(in srgb, var(--wgt-surface) 72%, var(--wgt-accent) 28%);
}

.wgt-disclaimer--type-affiliate {
  border-left: 4px solid var(--wgt-accent);
}

.wgt-disclaimer--type-responsible {
  border-left: 4px solid #ef4444;
}

.wgt-disclaimer--type-editorial {
  border-left: 4px solid #94a3b8;
}

@media (max-width: 1100px) {
  .wgt-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .wgt-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wgt-card-top {
    padding: 12px;
  }

  .wgt-card-bottom {
    padding: 0 12px 12px;
  }

  .wgt-logo {
    width: 76px;
    height: 30px;
  }

  .wgt-bonus {
    font-size: 14px;
  }
}
```css
.wgt-table-wrap {
  --wgt-surface: var(--wgt-surface-color, var(--wp--preset--color--base, #f3f4f6));
  --wgt-surface-2: var(--wgt-surface-alt-color, rgba(0, 0, 0, 0.04));
  --wgt-card-bg: var(--wgt-card-bg-color, rgba(0, 0, 0, 0.72));
  --wgt-card-bg-2: var(--wgt-card-bg-soft-color, rgba(255, 255, 255, 0.06));
  --wgt-text: var(--wgt-text-color, var(--wp--preset--color--foreground, #111827));
  --wgt-text-on-dark: var(--wgt-text-on-dark-color, #ffffff);
  --wgt-muted: var(--wgt-muted-color, rgba(17, 24, 39, 0.72));
  --wgt-muted-on-dark: var(--wgt-muted-on-dark-color, rgba(255, 255, 255, 0.78));
  --wgt-border: var(--wgt-border-color, rgba(17, 24, 39, 0.10));
  --wgt-accent: var(--wgt-accent-color, var(--wp--preset--color--primary, #4b5563));
  --wgt-accent-hover: var(--wgt-accent-hover-color, #374151);
  --wgt-radius-xl: 18px;
  --wgt-radius-lg: 14px;
  --wgt-radius-md: 12px;
  margin: 24px 0;
  color: var(--wgt-text);
}

.wgt-table-title {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--wgt-text);
}

.wgt-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wgt-cards-grid--sidebar {
  grid-template-columns: 1fr;
  gap: 14px;
}

.wgt-cards-grid--compact {
  grid-template-columns: 1fr;
  gap: 10px;
}

.wgt-card {
  overflow: hidden;
  border-radius: var(--wgt-radius-lg);
  background: var(--wgt-card-bg);
  color: var(--wgt-text-on-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.wgt-card-top {
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}

.wgt-card-bottom {
  padding: 0 14px 14px;
}

.wgt-card-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.wgt-logo {
  width: 92px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 8px;
  flex: 0 0 auto;
}

.wgt-card-brand-text {
  min-width: 0;
}

.wgt-name {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--wgt-text-on-dark);
}

.wgt-rating {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--wgt-muted-on-dark);
}

.wgt-bonus {
  display: block;
  margin: 0;
  padding: 14px 12px;
  border-radius: var(--wgt-radius-md);
  background: var(--wgt-card-bg-2);
  color: var(--wgt-text-on-dark);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  white-space: pre-line;
}

.wgt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: var(--wgt-accent);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}

.wgt-btn:hover,
.wgt-btn:focus {
  background: var(--wgt-accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.wgt-empty {
  padding: 16px;
  border: 1px solid var(--wgt-border);
  border-radius: var(--wgt-radius-lg);
  background: var(--wgt-surface);
  color: var(--wgt-muted);
  font-size: 14px;
}

.wgt-table-wrap--sidebar .wgt-card,
.wgt-cards-grid--sidebar .wgt-card {
  border-radius: 12px;
}

.wgt-table-wrap--sidebar .wgt-card-top,
.wgt-cards-grid--sidebar .wgt-card-top {
  padding: 12px;
}

.wgt-table-wrap--sidebar .wgt-card-bottom,
.wgt-cards-grid--sidebar .wgt-card-bottom {
  padding: 0 12px 12px;
}

.wgt-table-wrap--sidebar .wgt-card-brand,
.wgt-cards-grid--sidebar .wgt-card-brand {
  gap: 10px;
  margin-bottom: 12px;
}

.wgt-table-wrap--sidebar .wgt-logo,
.wgt-cards-grid--sidebar .wgt-logo {
  width: 72px;
  height: 30px;
}

.wgt-table-wrap--sidebar .wgt-name,
.wgt-cards-grid--sidebar .wgt-name {
  font-size: 14px;
}

.wgt-table-wrap--sidebar .wgt-bonus,
.wgt-cards-grid--sidebar .wgt-bonus {
  padding: 12px 10px;
  font-size: 14px;
}

.wgt-table-wrap--sidebar .wgt-btn,
.wgt-cards-grid--sidebar .wgt-btn {
  min-height: 40px;
  font-size: 13px;
}

.wgt-table-wrap--compact .wgt-cards-grid,
.wgt-cards-grid--compact {
  gap: 10px;
}

.wgt-table-wrap--compact .wgt-card,
.wgt-cards-grid--compact .wgt-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.wgt-table-wrap--compact .wgt-card-top,
.wgt-cards-grid--compact .wgt-card-top {
  padding: 12px;
}

.wgt-table-wrap--compact .wgt-card-bottom,
.wgt-cards-grid--compact .wgt-card-bottom {
  padding: 0 12px 12px;
}

.wgt-table-wrap--compact .wgt-bonus,
.wgt-cards-grid--compact .wgt-bonus {
  font-size: 14px;
  padding: 10px;
}

.wgt-disclaimer-wrap {
  margin: 20px 0;
  padding: 14px 16px;
  border: 1px solid var(--wgt-border);
  background: var(--wgt-surface);
  border-radius: var(--wgt-radius-lg);
  color: var(--wgt-text);
}

.wgt-disclaimer-title {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--wgt-text);
}

.wgt-disclaimer-text {
  color: var(--wgt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.wgt-disclaimer-text p:last-child {
  margin-bottom: 0;
}

.wgt-disclaimer--default {
  border-color: var(--wgt-border);
  background: var(--wgt-surface);
}

.wgt-disclaimer--soft {
  background: color-mix(in srgb, var(--wgt-surface) 85%, var(--wgt-accent) 15%);
}

.wgt-disclaimer--accent {
  background: color-mix(in srgb, var(--wgt-surface) 72%, var(--wgt-accent) 28%);
}

.wgt-disclaimer--type-affiliate {
  border-left: 4px solid var(--wgt-accent);
}

.wgt-disclaimer--type-responsible {
  border-left: 4px solid #ef4444;
}

.wgt-disclaimer--type-editorial {
  border-left: 4px solid #94a3b8;
}

@media (max-width: 1100px) {
  .wgt-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .wgt-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wgt-card-top {
    padding: 12px;
  }

  .wgt-card-bottom {
    padding: 0 12px 12px;
  }

  .wgt-logo {
    width: 76px;
    height: 30px;
  }

  .wgt-bonus {
    font-size: 14px;
  }
}