/* Blog ad components — mirrors AffiliateBanner.vue and AdSlot.vue styles */

.affiliate-banner {
  background: #ffffff;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0;
}

.affiliate-banner-label {
  font-size: 10px;
  font-weight: 600;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.affiliate-banner-text {
  font-size: 0.875rem;
  color: #57534e;
  margin: 0;
}

.affiliate-banner-cta {
  display: inline-block;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background: #1c1917;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}

.affiliate-banner-cta:hover {
  background: #292524;
}

.ad-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  border: 2px dashed #e7e5e4;
  border-radius: 12px;
  background: #f5f5f4;
  color: #a8a29e;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 1.5rem 0;
}

@media (max-width: 639px) {
  .affiliate-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .affiliate-banner-cta {
    align-self: flex-start;
  }
}
