/* =========================
   ARTICLE WRAPPER
========================= */
.orchid-article-wrapper {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 40px 6vw;

  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);

  font-family: "Segoe UI", system-ui, sans-serif;
}

/* =========================
   BACK LINK
========================= */
.sunflower-back-link {
  display: inline-block;
  margin-bottom: 20px;

  color: #17409f;
  font-weight: 600;
  text-decoration: none;
}

.sunflower-back-link:hover {
  text-decoration: underline;
}

/* =========================
   TITLE
========================= */
.rose-article-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 12px;
}

/* =========================
   META
========================= */
.lavender-article-meta {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 28px;
}

/* =========================
   PARAGRAPHS
========================= */
.jasmine-article-text {
  font-size: 16.5px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 18px;
}

/* =========================
   SUBHEADINGS
========================= */
.tulip-article-subheading {
  font-size: 22px;
  font-weight: 700;
  color: #102895;
  margin: 36px 0 12px;
  position: relative;
}

.tulip-article-subheading::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  margin-top: 8px;
  background: linear-gradient(90deg, #17409f, #3fb9ff);
  border-radius: 2px;
}

/* =========================
   LISTS
========================= */
.lily-article-list {
  margin: 16px 0 24px 22px;
  padding-left: 14px;
}

.daisy-article-item {
  font-size: 16px;
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
  .orchid-article-wrapper {
    margin: 20px auto 60px;
    padding: 30px 5vw;
    border-radius: 14px;
  }

  .rose-article-title {
    font-size: 26px;
  }

  .jasmine-article-text {
    font-size: 15.5px;
  }

  .tulip-article-subheading {
    font-size: 20px;
  }
}
/* PAGE BACKGROUND (Mobile default) */
body {
  background: url("../img/bg.jpeg") center / cover no-repeat fixed;
}

/* Desktop background */
@media (min-width: 1024px) {
  body {
    background: url("../img/bgnew.jpeg") center / cover no-repeat fixed;
  }
}
