/* 🔥 DropZone Section Styling – Phase 1 – DZ-casper-40 */
.zone-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* 💎 Diamond Line Header – Centered Fix (Homepage only) */
.diamond-line-header {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto 2rem;
  gap: 1rem;
  text-align: center;
}

.diamond-line-header::before,
.diamond-line-header::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 191, 255, 0.25), rgba(0, 191, 255, 0.05));
}

.diamond-line-header::after {
  background: linear-gradient(to left, rgba(0, 191, 255, 0.25), rgba(0, 191, 255, 0.05));
}

.diamond {
  width: 10px;
  height: 10px;
  background-color: #00bfff;
  transform: rotate(45deg);
  box-shadow: 0 0 6px rgba(0, 191, 255, 0.5);
}

/* 💡 Skip Links – Accessibility Fix */
.skip-links {
  position: absolute;
  top: -1000px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.skip-links a {
  position: absolute;
  left: -999px;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 1001;
  transition: top 0.3s ease, left 0.3s ease;
}

.skip-links a:focus,
.skip-links a:focus-visible {
  top: 0;
  left: 0;
}

/* 🌬️ Post Feed */
.post-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;
}

.post-feed .post-card {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

/* DropZone – Font Correction */
h1, h2, h3, h4, h5, h6,
.post-card-title,
.gh-head-brand,
.post-card-excerpt {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ============================================================
   COLLECTION PAGE HEADER – SAFE, SCOPED, NON-DESTRUCTIVE
   ============================================================ */

.collection-zone > .collection-header {
  display: block;
  padding: 0 2rem;
  margin: 3rem auto 2.5rem;
  max-width: 1400px;
}

.collection-zone > .collection-header > .collection-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: #ffffff;
}

/* ============================================================
   FUTUREIMAGING COLLECTION — CENTERED TITLE + GLOWING DIVIDER
   ============================================================ */

.futureimaging-collection .collection-title.futureimaging-title {
  text-align: center;
  margin: 0 auto 0.75rem;
  color: #00bfff !important;
}

.futureimaging-collection .futureimaging-divider {
  width: 80%;
  height: 1px;
  margin: 0 auto 2rem;
  background: linear-gradient(
    to right,
    rgba(0, 191, 255, 0) 0%,
    rgba(0, 191, 255, 0.6) 50%,
    rgba(0, 191, 255, 0) 100%
  );
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.4);
}

/* ============================================================
   VIBRANTCURVES COLLECTION — CENTERED TITLE + GLOWING DIVIDER
   ============================================================ */

.collection-title.vibrantcurves {
  text-align: center;
  margin: 0 auto 0.75rem;
  color: #00bfff !important;
}

.vibrantcurves-divider {
  width: 80%;
  height: 1px;
  margin: 0 auto 2rem;
  background: linear-gradient(
    to right,
    rgba(0, 191, 255, 0) 0%,
    rgba(0, 191, 255, 0.6) 50%,
    rgba(0, 191, 255, 0) 100%
  );
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.4);
}

/* ============================================================
   COLLECTION DESCRIPTION
   ============================================================ */

.collection-zone > .collection-header > .collection-description {
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0 auto;
}

/* ============================================================
   FINAL FIX — COLLECTION PAGE BACKGROUND (ONLY)
   ============================================================ */

.collection-zone {
  background: var(--background-color);
}

/* ============================================================
   HOMEPAGE TAG COLOR — UNIVERSAL VISIBILITY FIX
   ============================================================ */

.post-card-primary-tag {
  color: #00bfff;
  font-weight: 600;
}

/* =============================================
   HOMEPAGE SECTION HEADERS – COLLECTION LINKS
   ============================================= */

.section-title a {
  color: #00bfff;
  font-weight: 700;
  text-decoration: none;
}