* {
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  margin: 0;
  background: #ffffff;
  color: #1f2937;
}

.page-container {
  max-width: 1100px;
  margin: auto;
  padding: 32px 20px 2px;
}

/* HEADER */
.feature-blog-header{
  position: sticky;
  top: 0px;
  z-index: 999;
}

.hero-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;

  background: linear-gradient(90deg, #573db8 0%, rgba(179, 26, 131, 0.9) 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-three-header {
  margin-top: 1rem;
}

.secondary-blog ul {
  margin-left: 20px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280;
}

.meta {
  background: rgba(247, 241, 252, 1);
  padding: 8px;
  border-radius: 7px;
}

.meta-bold {
  font-weight: 500;
  color: rgba(113, 111, 115, 1);
}

.tag {
  font-size: 14px;
  font-weight: 400;
}

/* HERO IMAGE */
.hero-image {
  margin: 20px 0 32px;
}

.hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
}

/* CONTENT + SHARE */
.content-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.content h2 {
  font-weight: 500;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.025em;
}

.content p {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  margin-top: 1rem;
  margin-bottom: 14px;
}

/* SOCIAL SHARE */
.social-share {
  position: sticky;
  top: 120px;

  display: flex;
  flex-direction: column;
  gap: 18px;

  padding: 16px 12px;
  border-radius: 8px;

  background: #f7f1fc;
}

/* ICON BUTTON */
.social-share a {
  width: 36px;
  height: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 25px;

  /* ICON GRADIENT */
  background: linear-gradient(0deg, #573db8 0%, rgba(87, 61, 184, 0.9) 100%),
    linear-gradient(
      90deg,
      rgba(87, 61, 184, 0.5) 0%,
      rgba(179, 26, 131, 0.5) 100%
    );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  cursor: pointer;
}

/* Optional hover (very subtle, Figma-like) */
.social-share a:hover {
  transform: scale(1.05);
}

/* SECOND BLOG */
.secondary-blog {
  margin-top: 1rem;
}

.secondary-blog h2 {
  font-weight: 500;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.025em;
}

.secondary-blog p {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  margin-top: 1rem;
  margin-bottom: 14px;
}

.conclusion {
  margin-top: 1rem;
}

.section-divider-wrapper {
  width: 100%;
  padding: 20px 20px;
  /* keeps spacing on small screens */
  box-sizing: border-box;
}

.section-divider {
  position: relative;
  width: 100%;
  max-width: 1250px;
  /* same visual width everywhere */
  height: 1px;
  margin: 0px auto 40px;
  background-color: #d8b4fe;
  /* SOLID color — no fading */
}

.feature-blog {
  padding-top: 0px !important;
}

.blog-image {
  width: 100%;
  max-width: 912px;
  height: auto;
  display: block;
  margin: 24px auto;
}

/* Diamonds */
.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background-color: currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* Left diamond */
.section-divider::before {
  left: -5px;
  /* sits outside line */
  color: #c084fc;
}

/* Right diamond */
.section-divider::after {
  right: -5px;
  /* sits outside line */
  color: #ec4899;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-image img {
    height: 220px;
  }

  .meta-row {
    gap: 0.5rem;
  }

  .content-layout {
    flex-direction: column;
  }

  .social-share {
    flex-direction: row;
    margin-top: 12px;
  }
}
