/* post-card-small.css — estilos para .prime-post-card-small (sidebar del single post) */

.prime-post-card-small {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.prime-post-card-small-image-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.prime-post-card-small-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background-color: #C8D5DE;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s ease;
}

.prime-post-card-small:hover .prime-post-card-small-image {
  transform: scale(1.03);
}

.prime-post-card-small-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 var(--spacing-xs);
}

.prime-post-card-small-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

.prime-post-card-small-title a {
  color: inherit;
  text-decoration: none;
}

.prime-post-card-small-title a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.prime-post-card-small-more {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

.prime-post-card-small-more:hover {
  text-decoration: underline;
}