.single-content {
  position: relative;
  width: 100%;
  margin-top: -150px;
  padding-bottom: 100px;
  z-index: 10;
}

.single-content__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

/* Overlapping Card */
.single-content__card {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.single-content__category {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-blue-accent, #2a4b8d);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.single-content__title {
  font-family: var(--font-display, serif);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--color-brand-navy-deep, #0f2a44);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 25px;
}

.single-content__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #888;
}

.single-content__body {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.single-content__body h2 {
  font-family: var(--font-display, serif);
  font-size: 32px;
  color: var(--color-brand-navy-deep);
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}

.single-content__body p {
  margin-bottom: 1.5em;
}

/* Sticky Social Share */
.single-content__share {
  position: sticky;
  left: -60px;
  top: 150px;
  height: 0;
  display: flex;
  flex-direction: column;
  z-index: 20;
  margin-left: -70px;
  float: left;
}

.single-content__share-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-gold, #f9c23c);
  color: var(--color-brand-navy-deep, #0f2a44);
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.single-content__share-link:first-child {
  border-radius: 5px 5px 0 0;
}

.single-content__share-link:last-child {
  border-radius: 0 0 5px 5px;
  border-bottom: none;
}

.single-content__share-link svg {
  width: 20px;
  height: 20px;
}

.single-content__share-link:hover {
  transform: translateX(-5px);
  background: #fff;
}

@media (max-width: 1100px) {
  .single-content__share {
    position: static;
    flex-direction: row;
    margin-bottom: 20px;
    left: auto;
    top: auto;
  }
  .single-content__share-link {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
  .single-content__share-link:first-child {
    border-radius: 5px 0 0 5px;
  }
  .single-content__share-link:last-child {
    border-radius: 0 5px 5px 0;
    border-right: none;
  }
}

@media (max-width: 768px) {
  .single-content {
    margin-top: -80px;
  }
  .single-content__inner {
    padding: 0 20px;
  }
  .single-content__card {
    padding: 40px 25px;
  }
}
