/* ================================================================
   SHE Report — Awareness Page Styles
   Loaded only on the Awareness page template (see enqueue in
   inc/she-awareness-cpt.php). Keeps style.css untouched.
   ================================================================ */

.awareness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 340px));
  gap: 2rem;
  justify-content: center;
}

@media (max-width: 640px) {
  .awareness-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
  }
}

.awareness-card {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: var(--radius, 14px);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.awareness-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.awareness-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--border, #eee);
  background-size: cover;
  background-position: center;
}

.awareness-play-btn {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.awareness-play-btn svg {
  width: 24px;
  height: 24px;
  fill: #b00020;
  margin-left: 3px; /* optical centering for the triangle */
}

.awareness-card:hover .awareness-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

@media (max-width: 640px) {
  .awareness-play-btn {
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 0 5px rgba(255, 255, 255, 0.25);
  }
  .awareness-play-btn svg {
    width: 20px;
    height: 20px;
  }
}

.awareness-card-body {
  padding: 1.1rem 1.25rem 1.4rem;
}

.awareness-card-body h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.awareness-card-body p {
  font-size: 0.9rem;
  color: var(--text-light, #777);
  margin: 0;
  line-height: 1.55;
}

.awareness-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #888;
}

.awareness-empty .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}