/* Apartmani Elegance — blog styles
 * Prose, listing cards, blog hero. Scoped under .ael-blog-* and .ael-prose.
 * Relies on the Webflow fonts already loaded on every page. */

/* ================================================================
   BLOG HERO
   ================================================================ */

.ael-blog-hero {
  background: #070707;
  padding: 120px 5vw 72px;
  text-align: center;
}

.ael-blog-hero__cat {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b98b2c;
  margin-bottom: 18px;
}

.ael-blog-hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 5vw, 52px);
  color: #fff5ea;
  margin: 0 auto 20px;
  max-width: 820px;
  line-height: 1.2;
}

.ael-blog-hero__meta {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #6b6b6b;
}

.ael-blog-hero__meta time { color: #b98b2c; }

.ael-blog-hero__img-wrap {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ael-blog-hero__img {
  width: 100%;
  display: block;
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* ================================================================
   PROSE BODY
   ================================================================ */

.ael-prose-wrap {
  background: #faf8f3;
  padding: 72px 5vw;
}

.ael-prose {
  max-width: 740px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
}

.ael-prose h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3.5vw, 32px);
  margin: 48px 0 16px;
  color: #1a1a1a;
  line-height: 1.25;
}

.ael-prose h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 36px 0 12px;
  color: #1a1a1a;
}

.ael-prose p { margin: 0 0 22px; }

.ael-prose a {
  color: #b98b2c;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ael-prose a:hover { color: #856013; }

.ael-prose ul,
.ael-prose ol {
  margin: 0 0 22px;
  padding-left: 24px;
}
.ael-prose li { margin-bottom: 8px; }

.ael-prose blockquote {
  margin: 36px 0;
  padding: 20px 24px;
  border-left: 4px solid #b98b2c;
  background: rgba(185, 139, 44, .06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #3a3a3a;
}

.ael-prose strong { font-weight: 700; }
.ael-prose em { font-style: italic; }

/* cite-able lede (first paragraph highlighted) */
.ael-prose .lede {
  font-size: 20px;
  line-height: 1.7;
  color: #2a2a2a;
  font-weight: 400;
  margin-bottom: 32px;
}

/* ================================================================
   FAQ SECTION (blog posts)
   ================================================================ */

.ael-blog-faq {
  background: #070707;
  padding: 72px 5vw;
}

.ael-blog-faq__inner {
  max-width: 740px;
  margin: 0 auto;
}

.ael-blog-faq__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 4vw, 36px);
  color: #fff5ea;
  margin: 0 0 40px;
  text-align: center;
}

.ael-blog-faq__item {
  border-bottom: 1px solid #2a2a2a;
  padding: 22px 0;
}
.ael-blog-faq__item:first-of-type { border-top: 1px solid #2a2a2a; }

.ael-blog-faq__q {
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff5ea;
  margin: 0 0 10px;
}

.ael-blog-faq__a {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #9a9a8a;
  margin: 0;
}

/* ================================================================
   BLOG LISTING PAGE
   ================================================================ */

.ael-blog-listing {
  background: #faf8f3;
  padding: 72px 5vw;
}

.ael-blog-listing__head {
  text-align: center;
  margin-bottom: 56px;
}

.ael-blog-listing__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 5vw, 44px);
  color: #1a1a1a;
  margin: 0 0 12px;
}

.ael-blog-listing__sub {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #6b6b6b;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.ael-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}

.ael-blog-card {
  background: #fff;
  border: 1px solid #e7e2d8;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: box-shadow .2s, transform .2s;
}
.ael-blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.ael-blog-card__img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  display: block;
  background: #e7e2d8;
}

.ael-blog-card__body { padding: 24px; }

.ael-blog-card__cat {
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b98b2c;
  margin-bottom: 10px;
  display: block;
}

.ael-blog-card__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #1a1a1a;
  margin: 0 0 10px;
  line-height: 1.3;
}

.ael-blog-card__excerpt {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #6b6b6b;
  margin: 0 0 18px;
}

.ael-blog-card__meta {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #b98b2c;
}

/* loading skeleton */
.ael-blog-card--skeleton .ael-blog-card__img  { background: #e7e2d8; }
.ael-blog-card--skeleton .ael-blog-card__title,
.ael-blog-card--skeleton .ael-blog-card__excerpt { background: #e7e2d8; color: transparent; border-radius: 6px; }

/* ================================================================
   BREADCRUMB
   ================================================================ */

.ael-breadcrumb {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #6b6b6b;
  padding: 16px 5vw 0;
  background: #faf8f3;
  max-width: 740px;
  margin: 0 auto;
}
.ael-breadcrumb a { color: #b98b2c; text-decoration: none; }
.ael-breadcrumb a:hover { text-decoration: underline; }
.ael-breadcrumb span { margin: 0 6px; }

/* ================================================================
   DESKTOP RESPONSIVE
   ================================================================ */

@media (min-width: 768px) {
  .ael-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

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