/* SINGLE PAGE STYLES */

/* HERO SECTION OVERRIDES */
.single-hero {
  height: 50vh !important;
  min-height: 400px;
}
.single-hero .page-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.single-hero::after {
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 1) 0%,
    transparent 55%
  ) !important;
}

/* MAIN CONTAINER */
.single-main {
  background: var(--deep);
  padding: 5rem 2rem 8rem;
  position: relative;
}
.single-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(13, 12, 10, 0.4);
  border: 1px solid rgba(85, 224, 255, 0.1);
  padding: 4rem 5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .single-container {
    padding: 3rem 2rem;
  }
}

/* TYPOGRAPHY IN MARKDOWN CONTENT */
.single-content {
  color: rgba(245, 240, 232, 0.7);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
}

/* Headings */
.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.single-content h1 {
  font-size: 2.5rem;
  color: var(--gold);
}

.single-content h2 {
  font-size: 2rem;
  border-bottom: 1px solid rgba(85, 224, 255, 0.2);
  padding-bottom: 0.5rem;
}

.single-content h3 {
  font-size: 1.5rem;
}

/* Paragraphs */
.single-content p {
  margin-bottom: 1.5rem;
}

/* Bold & Italic */
.single-content strong {
  font-weight: 500;
  color: var(--cream);
}
.single-content em {
  font-style: italic;
  color: var(--gold-light);
}

/* Lists */
.single-content ul,
.single-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.single-content li {
  margin-bottom: 0.5rem;
  position: relative;
}
.single-content ul {
  list-style-type: none;
}
.single-content ul li::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

/* Links */
.single-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.single-content a:hover {
  border-color: var(--gold);
}

/* Blockquotes */
.single-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(85, 224, 255, 0.05);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
}

/* First paragraph intro */
.single-content > p:first-of-type {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 3rem;
}
