/**
 * ECMES Academic — LTR (English) Overrides
 * Loaded when site language is English or any LTR language
 * WordPress auto-loads ltr.css for LTR languages
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@400;500;600&display=swap');

/* Direction */
body { direction: ltr; }

/* Fonts — switch to Latin-optimised */
body,
.entry-content,
.quote-text {
  font-family: 'Crimson Pro', Georgia, serif;
}

h1,h2,h3,h4,h5,h6,
.site-title,
.post-card__title,
.archive-card__title,
.book-card__title,
.widget-block__title,
.single-post-title {
  font-family: 'Playfair Display', Georgia, serif;
}

.section-label,
.nav-menu > li > a,
.meta,
.read-more,
.btn-primary,
.widget-block__cta,
.footer-col ul a,
.lp-card__cat,
.lp-card__meta,
.bio-tab-btn {
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* Flip border sides for LTR */
.quote-text {
  border-left: 3px solid var(--accent);
  border-right: none;
  padding-left: 1.5rem;
  padding-right: 0;
  text-align: left;
}
.content-block__title {
  border-left: 3px solid var(--accent);
  border-right: none;
  padding-left: .75rem;
  padding-right: 0;
}
.entry-content blockquote {
  border-left: 3px solid var(--accent);
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}

/* Dropdown opens right-aligned in LTR */
.sub-menu { left: auto; right: 0; }

/* Nav search */
.nav-search-form { right: auto; left: 0; }
.nav-search-form input { direction: ltr; text-align: left; }

/* Quotes centered for LTR */
.quote-text { text-align: center; border: none; padding: 0 2rem; }
.quote-text::before { content: '\201C\00a0'; }
.quote-text::after  { content: '\00a0\201D'; }

/* Bio page LTR */
.bio-layout { direction: ltr; }
.bio-portrait { order: -1; }

/* General text alignment */
.page-header,
.single-post-header,
.newsletter-section { text-align: center; }
