.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.btn--primary {
  background: var(--color-indigo);
  color: var(--color-bg);
}
.btn--primary:hover { opacity: 0.85; }

.btn--ghost {
  background: #FFFFFF;
  color: var(--color-ink);
  border: 1px solid rgba(58, 55, 51, 0.12);
}
.btn--ghost:hover { background: #FAF6EE; opacity: 1; }

.btn__arrow {
  color: var(--color-indigo);
  font-size: 1.1em;
}

.card {
  background: transparent;
  display: block;
}

.card__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-placeholder);
  border-radius: 4px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.85rem;
}

.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.6;
}

.card__title::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--color-mustard);
  border-radius: 1px;
  margin-top: 0.4em;
  flex-shrink: 0;
}

.card__desc {
  font-size: 0.92rem;
  color: rgba(58, 55, 51, 0.8);
  line-height: 1.8;
}

.placeholder-image {
  width: 100%;
  background: var(--color-placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.85rem;
  border-radius: 4px;
}

.placeholder-image--hero {
  aspect-ratio: 16 / 10;
  max-width: 100%;
}

.placeholder-image--wide {
  aspect-ratio: 16 / 9;
}

.deco-triangle-yellow {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--color-mustard);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 2;
}

.deco-square-indigo {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(46, 71, 86, 0.18);
  border-radius: 2px;
  z-index: 2;
}

.deco-octagon-yellow {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--color-mustard);
  clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
  z-index: 2;
}

.deco-circle-mustard {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(212, 168, 75, 0.5);
  border-radius: 50%;
  z-index: 2;
}
