/* ============================================
   The Chic Blogs — General / About Page Styles
   ============================================ */

/* ---- Hero ---- */
.about-hero {
  position: relative;
  overflow: hidden;
  background-color: #faf8f5;
  border-bottom: 1px solid #e5e2dc;
  text-align: center;
  padding: 5rem 1rem;
}

@media (min-width: 1024px) {
  .about-hero {
    padding: 7rem 1rem;
  }
}

.about-hero .hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-hero .eyebrow {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c20000;
  margin-bottom: 1.25rem;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: #111;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.about-hero .hero-rule {
  width: 3.5rem;
  height: 1px;
  background-color: #c20000;
  margin: 0 auto 1.5rem;
}

.about-hero .hero-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* corner brackets */
.about-hero .corner {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.5;
  border-color: #c20000;
  border-style: solid;
}

.about-hero .corner-tl {
  top: 1.5rem;
  left: 1.5rem;
  border-width: 1px 0 0 1px;
}

.about-hero .corner-br {
  bottom: 1.5rem;
  right: 1.5rem;
  border-width: 0 1px 1px 0;
}


/* ============================================
   Editor / Post Content
   ============================================ */

.page-section {
  padding: 4rem 1rem 5rem;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: #2d2d2d;
  line-height: 1.85;
}

/* ---- Paragraphs ---- */
.page-content p {
  margin-bottom: 1.5rem;
  color: #2d2d2d;
}

.page-content p:last-child {
  margin-bottom: 0;
}

/* ---- Headings ---- */
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #111;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #c20000;
  line-height: 1.2;
}

.page-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #111;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.page-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.page-content h5,
.page-content h6 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

/* ---- Inline formatting ---- */
.page-content strong,
.page-content b {
  font-weight: 700;
  color: #111;
}

.page-content em,
.page-content i {
  font-style: italic;
}

.page-content a {
  color: #c20000;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.15s ease;
}

.page-content a:hover {
  opacity: 0.65;
}

/* ---- Blockquote ---- */
.page-content blockquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.75rem 2rem 1.75rem 4rem;
  background-color: #faf8f5;
  border-left: 4px solid #c20000;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #333;
  line-height: 1.6;
}

.page-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: #c20000;
  opacity: 0.25;
}

.page-content blockquote p {
  margin: 0;
  color: inherit;
}

/* ---- Lists ---- */
.page-content ul,
.page-content ol {
  margin: 0 0 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.page-content ul li,
.page-content ol li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  color: #2d2d2d;
}

/* custom bullet */
.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background-color: #c20000;
  border-radius: 50%;
}

/* ordered list counter */
.page-content ol {
  counter-reset: ol-counter;
}

.page-content ol li {
  counter-increment: ol-counter;
}

.page-content ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #c20000;
  line-height: 1.85;
}

/* ---- Horizontal rule ---- */
.page-content hr {
  border: none;
  height: 1px;
  background-color: #e5e2dc;
  margin: 3rem auto;
  width: 60%;
}

/* ---- Images ---- */
.page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2.5rem auto;
}

.page-content figure {
  margin: 2.5rem 0;
}

.page-content figcaption {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}

/* ---- Tables ---- */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.925rem;
}

.page-content th {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  background-color: #faf8f5;
  border-bottom: 2px solid #c20000;
  padding: 0.75rem 1rem;
  text-align: left;
}

.page-content td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e2dc;
  color: #2d2d2d;
  vertical-align: top;
}

.page-content tr:last-child td {
  border-bottom: none;
}

/* ---- Code ---- */
.page-content code {
  font-family: monospace;
  font-size: 0.875rem;
  background-color: #f4f1ee;
  color: #c20000;
  padding: 0.15em 0.4em;
  border-radius: 2px;
}

.page-content pre {
  background-color: #1a1a1a;
  color: #f0ece6;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  font-size: 0.875rem;
  line-height: 1.65;
}

.page-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

/* ---- Content wrapper ---- */
.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1rem 5rem;
}

/* ---- Opening statement ---- */
.about-opening {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-opening p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.45;
}

.about-opening strong {
  font-style: normal;
  font-weight: 700;
  color: #c20000;
}

/* ---- Body copy ---- */
.about-body {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: #000000 !important;
  line-height: 1.85;
  margin-bottom: 3.5rem;
}

.about-body p + p {
  margin-top: 1.4rem;
}

/* ---- Pull quote ---- */
.about-pullquote {
  position: relative;
  margin: 3.5rem 0;
  padding: 2.5rem 2.5rem 2.5rem 3.5rem;
  background-color: #faf8f5;
  border-left: 4px solid #c20000;
}

.about-pullquote .quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  width: 1.75rem;
  height: 1.75rem;
  color: #c20000;
  opacity: 0.4;
}

.about-pullquote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: #222;
  line-height: 1.55;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/* ---- Pillars grid ---- */
.about-pillars {
  margin-bottom: 3.5rem;
}

.about-pillars h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.about-pillars .section-rule {
  width: 2.5rem;
  height: 1px;
  background-color: #c20000;
  margin-bottom: 2rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  border: 1px solid #e5e2dc;
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}

.pillar-card:hover {
  border-color: #c20000;
}

.pillar-card .card-rule {
  width: 2rem;
  height: 1px;
  background-color: #c20000;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.4rem;
}

.pillar-card p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ---- Closing CTA ---- */
.about-closing {
  border-top: 1px solid #e5e2dc;
  padding-top: 3rem;
  text-align: center;
}

.about-closing .closing-lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: #222;
  margin-bottom: 0.5rem;
}

.about-closing .closing-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.975rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-closing .closing-welcome {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.02em;
}

.about-closing .closing-rule {
  width: 3.5rem;
  height: 1px;
  background-color: #c20000;
  margin: 2rem auto 0;
}

