/* Brochure download card — scrollable PDF preview (live-site style) */
.brochure-card .brochure-card-inner {
  align-items: stretch;
}

.brochure-preview-aside {
  flex: 0 0 min(100%, 220px);
  width: 220px;
  max-width: 100%;
  min-width: 0;
}

.brochure-preview-panel {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.brochure-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid #e8eef5;
  background: linear-gradient(180deg, #fafcff 0%, #f3f7fc 100%);
}

.brochure-preview-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.brochure-preview-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 107, 26, 0.12);
  color: var(--orange, #ff6b1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.brochure-preview-titles {
  min-width: 0;
}

.brochure-preview-titles strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f1c2e;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brochure-preview-titles span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: #7a8fa8;
  letter-spacing: 0.02em;
}

.brochure-preview-pill {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange, #ff6b1a);
  border: 1.5px solid rgba(255, 107, 26, 0.45);
  border-radius: 99px;
  padding: 0.28rem 0.55rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.brochure-preview-pill:hover {
  background: var(--orange, #ff6b1a);
  color: #fff;
  border-color: var(--orange, #ff6b1a);
}

.brochure-preview-viewport {
  display: block;
  flex: 1;
  min-height: 168px;
  max-height: 200px;
  overflow: auto;
  background: #eef3f9;
  position: relative;
  text-decoration: none;
  -webkit-overflow-scrolling: touch;
}

.brochure-preview-viewport::-webkit-scrollbar {
  width: 6px;
}

.brochure-preview-viewport::-webkit-scrollbar-thumb {
  background: rgba(0, 104, 179, 0.35);
  border-radius: 99px;
}

.brochure-preview-viewport img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.brochure-preview-viewport iframe,
.brochure-preview-viewport object {
  width: 100%;
  min-height: 560px;
  border: 0;
  display: block;
  pointer-events: none;
  background: #fff;
}

.brochure-preview-viewport::after {
  content: '';
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  display: block;
  margin-top: -28px;
  background: linear-gradient(180deg, transparent, rgba(238, 243, 249, 0.95));
  pointer-events: none;
}

.brochure-preview-empty {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: #7a8fa8;
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.5;
}

.brochure-preview-empty i {
  font-size: 1.6rem;
  color: #b8c5d6;
}

@media (max-width: 640px) {
  .brochure-preview-aside {
    flex: 1 1 100%;
    width: 100%;
  }

  .brochure-preview-viewport {
    max-height: 180px;
  }
}
