.pa-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem;
}

.pa-page-header {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  padding: 2.5rem 0;
}

.pa-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.pa-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.pa-breadcrumb span {
  opacity: 0.9;
}

.pa-header-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.pa-titles h1 {
  margin: 0.25rem 0 0.75rem 0;
  color: #0f172a;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pa-subtitle {
  color: #374151;
  margin: 0;
  line-height: 1.7;
}

.pa-actions {
  text-align: right;
}

.pa-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e63939;
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.pa-btn-primary:hover {
  background: #c71f1f;
}

.pa-video-wrapper {
  width: 100%;
  margin-top: 0.75rem;
}

.pa-video-shell,
.pa-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.pa-video-shell video,
.pa-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}

.pa-play-overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.pa-play-overlay:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.pa-play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #111827;
  margin-left: 3px;
}

.pa-section {
  padding: 2.5rem 0;
}

.pa-section-title {
  margin: 0.5rem 0 0.25rem 0;
  color: #0f172a;
}

.pa-section-subtitle {
  margin: 0 0 0.75rem 0;
  color: #334155;
  font-weight: 600;
}

.pa-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.pa-card {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.pa-card-clickable {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pa-card-clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: #cf2e2e;
}

.pa-thumb {
  background: #fff;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  margin: 1rem 1rem 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.pa-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pa-card-content {
  padding: 1rem 1.25rem 1.5rem;
}

.pa-card-content h3 {
  margin: 0 0 0.5rem 0;
  color: #0f172a;
}

.pa-card-content p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

.pa-card-actions {
  margin-top: 0.85rem;
}

.pa-btn-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.pa-btn-link:hover {
  text-decoration: underline;
}

.pa-faqs {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

.pa-faqs-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: flex-start;
}

.pa-faq-title {
  color: #0f172a;
  font-weight: 700;
  font-size: 1.5rem;
}

.pa-faq-list details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.pa-faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
  list-style: none;
}

.pa-faq-list summary::-webkit-details-marker {
  display: none;
}

.pa-faq-list p {
  margin: 0.6rem 0 0;
  color: #374151;
}

.pa-videos h2 {
  margin: 0 0 1rem 0;
  color: #0f172a;
}

.pa-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  align-items: center;
}

.pa-top-video .pa-video-grid {
  grid-template-columns: 1fr 1.4fr;
}

.pa-video-text h3 {
  margin: 0 0 0.5rem 0;
  color: #0f172a;
}

.pa-video-text p {
  margin: 0;
  color: #374151;
  max-width: 60ch;
}

@media (max-width: 1024px) {
  .pa-header-content {
    grid-template-columns: 1fr;
  }

  .pa-actions {
    text-align: left;
  }

  .pa-top-video .pa-video-grid {
    grid-template-columns: 1fr;
  }

  .pa-faqs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pa-breadcrumb {
    flex-wrap: wrap;
  }

  .pa-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}


