.section-trade-overview{
  overflow: visible;
}

.blog-banner{
  height: 100vh !important;
}


/* =====================
   COLLAB HERO SECTION
   ===================== */
.resource-hero-overlay1 {
  position: absolute;
  bottom: 0;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  width: 100%;
  height: 100%;
}

.resource-hero-content1 {
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
  margin-bottom: 100px;
}

.breadcrumb-trail {
  /* Add styles if needed */
}

.hero-content-wrapper h2 {
  font-weight: 600;  
  font-size: 24px;
  line-height: 100%;
  margin-top: 16px;
  margin-bottom: 8px;
  line-height: 34px;
}

.hero-content-wrapper p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
}

.hero-content-wrapper h2 , 
.hero-content-wrapper p {
  max-width: 800px;
}

/* Author Meta */
.author-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.author-info-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  max-width: 32px;
  max-height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info-left p {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: white;
}

.author-meta p {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
}

/* Time & Date */
.wrapper-time-date {
  display: flex;
  gap: 8px;
}

.resource-read-time,
.article-date,
.author-name {
  display: flex;
  align-items: center;
}

.resource-read-time::before,
.article-date::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #1d6dd0;
  border-radius: 50%;
  margin-right: 8px;
}

/* Action Icons */
.action-icons-right {
  display: flex;
  gap: 16px;
  overflow: visible;
}

.action-icons-right img {
  background: #1d6dd0;
  padding: 10px;
  border-radius: 100%;
  overflow: visible;
  cursor: pointer;
}

/* =====================
   TRADE OVERVIEW SECTION
   ===================== */
.trade-content-layout {
  display: flex;
  gap: 84px;
}

/* Table of Contents */
/* .table-of-contents {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 212px;
  flex-shrink: 0;
} */
.p-description{
  margin-top: 32px;
}

.p-description a{
  display: none;
} 


.table-of-contents {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 212px;
  flex-shrink: 0;
  position: sticky;
  top: 140px;
  align-self: flex-start;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  scrollbar-width: none;
}


.table-of-contents::-webkit-scrollbar{
  display: none;
}

.table-of-contents p {
  color: #1d6dd0;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
}

.main-content h2 {
  padding : 32px 0px 20px;

}

.main-content p {
  margin-bottom: 32px;
  line-height: 32px;

}

.main-content p:last-child {
  margin-bottom: 0;
}

/* Overview Sections */
.overview-section,
.document-limits-section,
.datafication-section,
.conclusion-section {
  /* No additional styles */
}

.datafication-img {
  border-radius: 12px;
  overflow: hidden;
}

/* Lists */
ul {
  padding-left: 15px;
  padding-bottom: 32px;
}

/* Lists */
ul li{
  margin-bottom: 10px;
}

/* =====================
   TYPOGRAPHY
   ===================== */
.research-section-heading {
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
}

p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
}

p a{
  text-decoration: none;
  color: black;
}


p a:hover{
  opacity: 0.6;
  padding-bottom: 10px;
}

/* =====================
   CTA SECTION
   ===================== */
.resource-cta-section {
  background: url(/asset/images/offering-banner.png);
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.resource-cta-content {
  display: flex;
  flex-direction: column;
  gap: 120px;
  max-width: 488px;
}

.resource-cta-text {
  max-width: 385px;
}

.resource-cta-text h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
}

.resource-cta-text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}

.resource-cta-actions {
  /* Add styles if needed */
}

.signup-cont {
  /* Add styles if needed */
}

.email-input-group {
  display: flex;
  align-items: center;
}

.email-input-group input {
  padding: 12px 16px;
  border: none;
  border-radius: 8px 0 0 8px;
  width: 300px;
}

/* =====================
   MOBILE (max-width: 768px)
   ===================== */
@media (max-width: 768px) {
  /* Table of Contents - Hide */
  .table-of-contents {
    display: none;
  }

  /* Typography */
  .research-section-heading {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
  }

  p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0%;
  }

  /* Hero Section Mobile */
  .hero-content-wrapper h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
  }

  .hero-content-wrapper p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
  }

  .resource-hero-content1 {
    padding: 0 24px;
  }

  /* Author Meta - Mobile */
  .author-meta {
    align-items: self-start;
    flex-direction: column;
    gap: 32px;
  }

  .author-info-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .wrapper-time-date {
    display: flex;
    gap: 8px;
  }

  /* Trade Content Layout Mobile */
  .trade-content-layout {
    flex-direction: column;
    gap: 40px;
  }

  /* Datafication Image Mobile */
  .datafication-img {
    width: 100%;
    height: 600px;
    min-height: 300px;
    display: block;
    object-fit: cover;
  }
}