/* Forex Daily — shared "more-awards-card" component.
   One press-release's broker logo/name + first award badge + Read
   More link. Rendered by fordai_render_award_card_item() in
   inc/render-press-release.php. Used on two grids:
   - single-press-release.php "More Awards" section (.single-pr__more-awards-grid)
   - homepage Section 3 (.hp-awards-grid, inc/render-homepage-sections.php)
   Grid wrapper layout lives with each caller's own stylesheet —
   only the card itself is shared here. */

.more-awards-card {
  background: var(--fxd-surface);
  border-radius: var(--fdt-radius-lg);
  box-shadow: var(--fdt-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.more-awards-card__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: var(--fdt-space-3);
  border-bottom: 1px solid var(--fxd-border);
  text-align: left;
}
.more-awards-card__logo {
  width: 22px;
  height: 22px;
  border-radius: var(--fdt-radius-sm);
  object-fit: cover;
  flex: 0 0 auto;
}
.more-awards-card__name {
  font-weight: 800;
  font-size: 12px;
  color: var(--fxd-text);
}
.more-awards-card__body {
  padding: var(--fdt-space-4) var(--fdt-space-3) var(--fdt-space-2);
  flex: 1;
}
.more-awards-card__badge {
  max-width: 160px;
  width: 100%;
  height: auto;
  margin: 0 auto var(--fdt-space-3);
  display: block;
}
.more-awards-card__year {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fxd-primary);
  margin-bottom: 6px;
}
.more-awards-card__category {
  margin: 0;
  font-weight: 600;
  font-size: 13px;
  color: var(--fxd-text);
  line-height: 1.35;
}
.more-awards-card__link {
  display: block;
  padding: var(--fdt-space-2);
  font-size: 12px;
  font-weight: 600;
  color: var(--fxd-text-muted);
  text-decoration: none;
  border-top: 1px solid var(--fxd-border);
}
.more-awards-card__link:hover { color: var(--fxd-primary); }
