.pdf-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 24px;
  align-items: center;
  border: 1px solid #242424;
  background: #090909;
  padding: 18px;
}

.pdf-feature h2,
.pdf-card h2 {
  font-size: 18px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pdf-feature p,
.pdf-card p {
  margin-top: 14px;
  color: #aaa69d;
  line-height: 1.6;
}

.pdf-feature img,
.pdf-card img {
  width: 100%;
  border: 1px solid #242424;
  background: #050505;
  object-fit: cover;
  filter: contrast(1.08) brightness(.78);
}

.pdf-feature img {
  aspect-ratio: 4 / 3;
}

.pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pdf-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pdf-card {
  border: 1px solid #242424;
  background: #090909;
  padding: 16px;
}

.pdf-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
}

.pdf-card.logo-preview img {
  object-fit: contain;
  padding: 36px;
}

@media (max-width: 980px) {
  .pdf-feature,
  .pdf-card-grid {
    grid-template-columns: 1fr;
  }

  .pdf-feature,
  .pdf-card {
    max-width: 350px;
  }
}
