/* ===== Report detail hero (after header) ===== */
.report-detail-hero {
  background: linear-gradient(to right, #f5f0fa 0%, #faf8fc 40%, #ffffff 100%);
  padding: 1rem 0 2rem;
}

.report-detail-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.report-detail-breadcrumb {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.report-detail-breadcrumb a {
  color: #4b5563;
  text-decoration: none;
}

.report-detail-breadcrumb a:hover {
  color: #7b42e6;
}

.report-detail-breadcrumb-sep {
  margin: 0 0.35rem;
}

.report-detail-breadcrumb-current {
  color: var(--text-dark);
}

.report-detail-hero-title {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  max-width: 52ch;
}

.report-detail-hero-desc {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #1f2937;
  line-height: 1.6;
}

.report-detail-hero-meta {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
}
.report-detail-hero-meta span {
  margin-right: 10px;
  margin-left: 10px;
}

.report-detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-hero-primary {
  background: #7b42e6;
  color: #fff;
  border-color: #7b42e6;
}

.btn-hero-primary:hover {
  background: #6b32d6;
  border-color: #6b32d6;
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: #7b42e6;
  border-color: #7b42e6;
}

.btn-hero-outline:hover {
  background: rgba(123, 66, 230, 0.08);
  color: #6b32d6;
  border-color: #6b32d6;
}

.report-detail-hero-content{
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.report-detail-hero-content img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.report-detail-img img{
  width: 200px;
  height: auto;
  border-radius: 10px;
}

/* ===== Sticky report header (after scroll past hero) ===== */
/* Hide main header when report sticky is visible (details page only) */
body.page-details .header.header-hidden-when-report-sticky {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.report-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  visibility: hidden;
}

.report-sticky-header.is-visible {
  transform: translateY(0);
  visibility: visible;
}

.report-sticky-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.report-sticky-header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.report-sticky-logo {
  flex-shrink: 0;
  display: block;
}

.report-sticky-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.report-sticky-info {
  min-width: 0;
}

.report-sticky-title {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  font-family: Georgia, "Times New Roman", Times, serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.report-sticky-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: #6b7280;
}

.report-sticky-header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.report-sticky-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.report-sticky-contact-link {
  font-size: 0.875rem;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
}

.report-sticky-contact-link:hover {
  color: #7b42e6;
  text-decoration: underline;
}

.report-sticky-contact-link i {
  margin-right: 0.35rem;
}

.report-sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-report-sticky {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.btn-report-sticky-sample {
  background: #d97706;
  color: #fff;
}

.btn-report-sticky-sample:hover {
  background: #b45309;
  color: #fff;
}

.btn-report-sticky-meeting {
  background: #2563eb;
  color: #fff;
}

.btn-report-sticky-meeting:hover {
  background: #6b32d6;
  color: #fff;
}

@media (max-width: 768px) {
  .report-sticky-header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 1rem;
  }
  .report-sticky-header-left {
    flex-wrap: wrap;
  }
  .report-sticky-title {
    white-space: normal;
  }
  .report-sticky-header-right {
    flex-direction: column;
    align-items: stretch;
  }
  .report-sticky-contact {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .report-sticky-actions {
    justify-content: stretch;
  }
  .btn-report-sticky {
    flex: 1;
    min-width: 0;
  }
}

/* ===== Details Page ===== */
.details-page {
    background: #f3f4f6;
    padding: 1.5rem 0 0;
    min-height: 60vh;
  }

  .details-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* Breadcrumb (legacy, used elsewhere if needed) */
  .breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
  }

  .breadcrumb a:hover {
    color: var(--primary);
  }

  .breadcrumb-sep {
    margin: 0 0.35rem;
  }

  .breadcrumb-current {
    color: var(--text-dark);
  }
  
  /* Two-column layout */
  .details-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 2rem;
    align-items: start;
  }
  
  /* Main content */
  .details-main {
    min-width: 0;
  }
  
  /* Report hero: card + info */
  .report-hero {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  /* Report overview card */
  .report-overview-card {
    flex-shrink: 0;
    width: 280px;
    background: #fff;
    border-radius: 12px 12px 0 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .report-card-gradient {
    height: 100px;
    background: linear-gradient(135deg, #e85d04 0%, #dc3545 100%);
    position: relative;
    padding: 0.75rem 1rem;
  }
  
  .report-card-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
  }
  
  .report-card-image-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    margin: -50px auto 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .report-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .report-card-meta {
    padding: 1rem 1rem 1.25rem;
  }
  
  .report-card-title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
  }
  
  .report-card-segments {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
  }
  
  .report-card-segments li {
    position: relative;
    padding-left: 0.5rem;
  }
  
  .report-card-segments li::before {
    content: "•";
    position: absolute;
    left: 0;
  }
  
  /* Report info (title, meta, buttons) */
  .report-info {
    flex: 1;
    min-width: 0;
  }
  
  .report-title {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
  }
  
  .report-meta {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .report-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
  }
  
  .btn-detail-primary {
    background: var(--primary);
    color: #fff;
  }
  
  .btn-detail-primary:hover {
    background: var(--primary-hover);
    color: #fff;
  }
  
  .btn-detail-secondary {
    background: #e0f2fe;
    color: var(--primary);
  }
  
  .btn-detail-secondary:hover {
    background: #bae6fd;
    color: var(--primary-hover);
  }
  
  .btn-detail-orange {
    background: var(--footer-subscribe-btn);
    color: #fff;
  }
  
  .btn-detail-orange:hover {
    background: var(--footer-subscribe-btn-hover);
    color: #fff;
  }
  
  /* Tabs */
  .report-tabs {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 8px 8px 0 0;
    padding: 8px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 68px;
    z-index: 10;
  }
  
  .report-tab {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .report-tab:hover {
    color: var(--text-dark);
  }
  
  .report-tab.active {
    background: #e85d04;
    color: #fff;
  }
  
  .report-tab-content {
    display: none;
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
  }
  
  .report-tab-content.active {
    display: block;
  }
  
  .report-description-list {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
  }
  
  .report-description-list li {
    margin-bottom: 0.35rem;
  }
  
  .report-companies-list {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    list-style: disc;
    color: var(--text-dark);
  }
  
  .report-companies-list li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
  }
  
  /* Table of contents – hierarchical numbered list */
  .report-toc {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: toc1;
    color: var(--text-dark);
    font-family: inherit;
  }
  
  .report-toc .toc-item {
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
  
  .report-toc .toc-level-1 {
    counter-increment: toc1;
    counter-reset: toc2;
    font-weight: 700;
    font-size: 1.05em;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-left: 0;
  }
  
  .report-toc .toc-level-1:first-child {
    margin-top: 0;
  }
  
  .report-toc .toc-level-1::before {
    content: counter(toc1) ". ";
    font-weight: 700;
  }
  
  .report-toc .toc-level-2 {
    counter-increment: toc2;
    counter-reset: toc3;
    font-weight: 400;
    padding-left: 1.25rem;
  }
  
  .report-toc .toc-level-2::before {
    content: counter(toc1) "." counter(toc2) ". ";
    font-weight: 400;
  }
  
  .report-toc .toc-level-3 {
    counter-increment: toc3;
    font-weight: 400;
    padding-left: 2.5rem;
  }
  
  .report-toc .toc-level-3::before {
    content: counter(toc1) "." counter(toc2) "." counter(toc3) ". ";
    font-weight: 400;
  }
  
  .report-tab-content p {
    margin: 0 0 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
  }
  
  /* Report stats cards – top of description tab */
  .report-stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .report-stat-card {
    border-radius: 6px;
    padding: 0.5rem 0.65rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
  
  .report-stat-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .report-stat-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
    text-align: left;
  }
  
  .report-stat-card__label {
    font-size: 0.7rem;
    font-weight: 500;
  }
  
  .report-stat-card__value {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .report-stat-card__suffix {
    font-size: 0.7rem;
    font-weight: 500;
  }
  
  .report-stat-card--purple {
    background: #ede9fe;
    color: #6d28d9;
  }
  
  .report-stat-card--purple .report-stat-card__icon {
    color: #7c3aed;
  }
  
  .report-stat-card--green {
    background: #dcfce7;
    color: #15803d;
  }
  
  .report-stat-card--green .report-stat-card__icon {
    color: #16a34a;
  }
  
  .report-stat-card--blue {
    background: #dbeafe;
    color: #1d4ed8;
  }
  
  .report-stat-card--blue .report-stat-card__icon {
    color: #2563eb;
  }
  
  .report-stat-card--orange {
    background: #ffedd5;
    color: #c2410c;
  }
  
  .report-stat-card--orange .report-stat-card__icon {
    color: #ea580c;
  }
  
  /* Report description – headings & paragraphs */
  .report-description-body {
    margin-bottom: 0;
  }
  
  .report-desc-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
    line-height: 1.35;
  }
  
  .report-desc-lead {
    margin: 0 0 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
  }
  
  .report-desc-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
    line-height: 1.4;
  }
  
  .report-desc-bullets {
    margin: 0 0 0;
    padding-left: 1.25rem;
    list-style: disc;
    color: var(--text-dark);
  }
  
  .report-desc-bullets li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }
  
  /* Sidebar – affix wrapper: stretch so sticky has a tall containing block */
  .details-sidebar {
    position: relative;
    align-self: stretch;
  }
  
  .sidebar-affix {
    position: sticky;
    top: 68px;
    z-index: 5;
  }
  
  /* Licence box - inside sticky sidebar-affix */
  .licence-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.25rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.25rem;
  }
  
  .licence-title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
  }
  
  .licence-options {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
  }
  
  .licence-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.4rem 0;
  }
  
  .licence-option input {
    margin: 0;
    accent-color: var(--primary);
  }
  
  .licence-label {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
  }
  
  .licence-price {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
  }
  
  .licence-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn-licence {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .btn-licence-buy {
    background: var(--footer-subscribe-btn);
    color: #fff;
    font-weight: 600;
  }
  
  .btn-licence-buy:hover {
    background: var(--footer-subscribe-btn-hover);
    color: #fff;
  }
  
  .btn-licence-sample {
    background: var(--primary);
    color: #fff;
  }
  
  .btn-licence-sample:hover {
    background: var(--primary-hover);
    color: #fff;
  }
  
  .btn-licence-custom {
    background: #e0f2fe;
    color: var(--primary);
  }
  
  .btn-licence-custom:hover {
    background: #bae6fd;
  }
  
  .btn-licence-discount {
    background: #374151;
    color: #fff;
  }
  
  .btn-licence-discount:hover {
    background: #1f2937;
    color: #fff;
  }

  /* Need a Tailored Report box (below Licence Type) */
  .tailored-report-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }

  .tailored-report-title {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
  }

  .tailored-report-desc {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #333;
    line-height: 1.55;
  }

  .btn-tailored-report {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }

  
  /* Why Choose Us */
  .why-choose-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .why-choose-title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
  }
  
  .why-choose-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .why-choose-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
  }
  
  .why-choose-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
  }
  
  /* ===== FAQ Section (Details Page) ===== */
  .faq-section {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
  }
  
  .faq-title {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
  }
  
  .faq-subtitle {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.5;
  }
  
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    border-left-width: 4px;
    border-left-color: #d5d5d5;
    overflow: hidden;
    transition: border-left-color 0.2s ease;
  }

  .faq-item.is-open {
    border-left-color: #2563eb;
    border-left-width: 4px;
  }
  
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .faq-question:hover {
    background: #f9fafb;
  }
  
  .faq-question span:first-child {
    flex: 1;
  }
  
  .faq-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-dark);
    transition: transform var(--transition);
  }
  
  .faq-item.is-open .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    padding: 0 1.25rem 1rem;
  }
  
  .faq-answer[hidden] {
    display: none;
  }
  
  .faq-answer p {
    margin: 0;
    padding: 0 0 0 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  /* ===== Our Clients Section (Details Page – Marquee) ===== */
  .clients-section {
    margin-top: 0;
    padding: 2rem 0 3rem;
    width: 100%;
  }
  
  .clients-title {
    margin: 0 0 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.25;
  }
  
  .clients-marquee-wrap {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }
  
  .clients-marquee-track {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    animation: clients-marquee 30s linear infinite;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .clients-marquee-track {
      animation: none;
    }
  }
  
  @keyframes clients-marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .clients-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }
  
  .clients-marquee-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

/* ===== Details page: Recent Published Reports – horizontal 4 cards (horizontal-cards-inner) ===== */
.recent-reports-row.latest-reports-section {
  padding: 2.5rem 1.5rem;
}

.recent-reports-row .horizontal-cards-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.recent-reports-row .content-cards-title {
  margin-bottom: 1.5rem;
}

.recent-reports-row .content-cards-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.recent-reports-row .content-card {
  margin: 0;
  min-width: 0;
}

.recent-reports-row .content-card-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  min-height: 0;
  padding: 1.25rem;
  gap: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  border-top: 3px solid #2563eb;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.recent-reports-row .content-card-link:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-top-color: #1d4ed8;
}

/* Date in small tag – override index.css */
.recent-reports-row .content-card-date {
  flex-shrink: 0;
  width: auto;
  min-height: 0;
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin: 0 0 0.5rem;
  padding: 0;
  background: none;
  border-radius: 0;
  text-align: left;
}

.recent-reports-row .content-card-date-month,
.recent-reports-row .content-card-date-year {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.3;
}

.recent-reports-row .content-card-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-reports-row .content-card-link:hover .content-card-title {
  color: #2563eb;
}

.recent-reports-row .content-card-details {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  line-height: 1.4;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-reports-row .content-card-details strong {
  color: #475569;
}

.recent-reports-row .content-card-desc {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  flex: 1;
  min-height: 0;
}

@media (max-width: 1024px) {
  .recent-reports-row .content-cards-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recent-reports-row .content-cards-list {
    grid-template-columns: 1fr;
  }

  .recent-reports-row .content-card-link {
    padding: 1rem 1.25rem;
  }

  .recent-reports-row .content-card-title {
    -webkit-line-clamp: 2;
  }
}

.report-tab-content p img {
 width: 100%;
 height: auto;
 }

span.pdf-icon img {
width: 44px;
    height: 28px;
    margin-bottom: -7px; }

.report-tab-content table {
 width: 100%;
 border-collapse: collapse;
 }

.report-tab-content table, th, td {
 border: 1px solid #d1d5db;
 }

.report-tab-content td, th {
 padding: 8px;
 text-align: left;
 }
.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 17px;
    border: 2px solid #121112;
    border-radius: 30px;
    background-color: #fff;
    color: #121112;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease
}

.pdf-btn:hover {
    background-color: #e28743;
    color: #efefef
}

.pdf-icon {
    width: 51px!important;
    margin: -2px -17px 1px -12px!important;
    max-width: 50px!important;
    height: 0%!important;
    display: block!important
}

.cty-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}
#tab-description .tab-content img {
    width: 55%;
    border-radius: 5px;
    margin: 0 auto;
    display: block;
    height: auto
}