/*
Theme Name: RentWiz
Theme URI: https://rentwiz.com.au
Author: RentWiz
Description: Minimal theme for RentWiz — a research demo about NSW residential tenancy law.
Version: 1.0.0
License: All rights reserved
Text Domain: rentwiz
*/

/*
  RentWiz — public site v1
  Baseline: adapted from appoven-theme-style.css (Onest typography, raised-button
  system, card patterns). Accent recoloured to a slate-teal palette to give
  RentWiz its own identity: calm, trustworthy, public-service in feel.
*/

/* ============================================
   RESET & VARIABLES
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #ffffff;
  --bg: #F7F5F0;           /* off-white, warm-neutral background */
  --bg-warm: #EFECE4;
  --bg-panel: #ffffff;
  --bg-muted: #F1EEE7;
  --text-dark: #1F2A2E;    /* near-black, slight blue-green undertone */
  --text-body: #3B4A50;
  --text-muted: #7A8890;
  --text-light: #B7C0C4;

  /* Primary accent: slate teal — calm, trustworthy, roof/water feel */
  --accent: #2F6F7A;
  --accent-hover: #24575F;
  --accent-soft: #E4EEF0;
  --accent-tint: rgba(47, 111, 122, 0.08);

  /* Supporting */
  --amber: #B57F2A;        /* used sparingly for disclaimer border */
  --amber-soft: #FBF3E2;
  --border-neutral: #D9D3C7;
  --border-panel: #E4DFD3;

  /* Raised-button shadow anchor */
  --btn-border: #1F2A2E;
  --btn-shadow: #1F2A2E;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --radius-btn: 10px;

  --shadow-soft: 0 2px 16px rgba(31, 42, 46, 0.06);
  --shadow-btn: 0 6px 0 0 var(--btn-shadow);
  --shadow-panel: 0 4px 24px rgba(31, 42, 46, 0.06);

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--accent); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }

/* ============================================
   BUTTONS (adapted raised-button style)
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 500; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.15s ease;
  white-space: nowrap;
  padding: 13px 22px;
  border-radius: var(--radius-btn);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #fff;
  border: 1px solid var(--btn-border);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  color: #fff;
  background: var(--accent-hover);
  box-shadow: 0 3px 0 0 var(--btn-shadow);
  transform: translateY(3px);
}
.btn-primary:active {
  box-shadow: 0 1px 0 0 var(--btn-shadow);
  transform: translateY(5px);
}
.btn-primary:disabled {
  opacity: 0.55; cursor: not-allowed; transform: none;
  box-shadow: var(--shadow-btn);
}
.btn-secondary {
  background: #fff; color: var(--text-dark);
  border: 1px solid var(--btn-border);
  box-shadow: var(--shadow-btn);
}
.btn-secondary:hover {
  box-shadow: 0 3px 0 0 var(--btn-shadow);
  transform: translateY(3px);
  color: var(--text-dark);
}
.btn-text {
  color: var(--text-body); font-weight: 500; padding: 8px 0;
  background: transparent;
}
.btn-text:hover { color: var(--accent); }

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
  font-size: 2.2rem; font-weight: 600; color: var(--text-dark);
  line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 14px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-body);
  line-height: 1.65; font-weight: 400; max-width: 640px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}
.navbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-dark);
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-text {
  font-size: 20px; font-weight: 600; color: var(--text-dark);
  letter-spacing: -0.01em;
}
.navbar-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-body);
  transition: color 0.2s; letter-spacing: 0.005em;
}
.nav-link:hover { color: var(--accent); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 80px 0 40px;
  position: relative;
}
.hero-inner {
  max-width: 900px; margin: 0 auto; padding: 0 32px;
  text-align: center;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600; color: var(--text-dark);
  line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--accent); }
.hero-subtitle {
  font-size: 18px; color: var(--text-body); line-height: 1.65;
  font-weight: 400; max-width: 640px; margin: 0 auto;
}
.hero-badges {
  display: inline-flex; gap: 8px; margin-bottom: 20px;
  flex-wrap: wrap; justify-content: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500;
  background: var(--accent-soft); color: var(--accent);
}
.badge-neutral {
  background: var(--bg-muted); color: var(--text-muted);
}

/* ============================================
   DEMO PANEL (centre of gravity)
   ============================================ */
.demo {
  padding: 30px 0 60px;
}
.demo-inner {
  max-width: 820px; margin: 0 auto; padding: 0 32px;
}
.demo-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-panel);
}
.demo-label {
  display: block;
  font-size: 14px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 10px;
}
.demo-textarea {
  width: 100%;
  min-height: 110px;
  padding: 16px 18px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1.55;
}
.demo-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.demo-textarea::placeholder { color: var(--text-muted); }

.demo-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 14px 0 18px;
}
.chip {
  background: #fff;
  border: 1px solid var(--border-neutral);
  color: var(--text-body);
  font-family: var(--font);
  font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-pill);
  cursor: pointer; transition: all 0.15s ease;
  line-height: 1.3;
}
.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.chip-label {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.demo-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.demo-hint {
  font-size: 12px; color: var(--text-muted);
}

/* ============================================
   ANSWER PANEL
   ============================================ */
.answer-panel {
  margin-top: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: none;
}
.answer-panel.visible { display: block; }
.answer-panel.state-loading { border-color: var(--accent); }
.answer-panel.state-error { border-color: #B44A2E; }

.answer-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.answer-title {
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.mock-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--amber-soft); color: var(--amber);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
}

.answer-body {
  font-size: 15.5px; color: var(--text-dark);
  line-height: 1.7;
}
.answer-body p { margin-bottom: 12px; }
.answer-body p:last-child { margin-bottom: 0; }
.answer-body strong { font-weight: 600; color: var(--text-dark); }

.citations {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-panel);
}
.citations-label {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.citation-list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.citation {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px; font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font);
}
.citation:hover {
  border-color: var(--accent);
  background: #fff;
}
.citation .expanded {
  display: none;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}
.citation.open .expanded { display: inline; }

.answer-meta {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-panel);
  font-size: 12px; color: var(--text-muted);
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* Loading state */
.loader {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-body);
  font-size: 15px;
}
.spinner {
  width: 22px; height: 22px;
  border: 2.5px solid var(--accent-soft);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text { font-weight: 500; }

/* Error state */
.error-msg {
  color: #8A2E1A;
  background: #FBE9E2;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  padding: 70px 0;
  background: var(--bg-warm);
}
.how-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 32px;
}
.how-header { text-align: center; margin-bottom: 40px; }
.how-header .section-subtitle { margin: 0 auto; }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.how-card {
  background: #fff;
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.how-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 20px; font-weight: 700;
}
.how-card h3 {
  font-size: 17px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 8px;
}
.how-card p {
  font-size: 14px; color: var(--text-body); line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 70px 0;
  background: var(--bg);
}
.about-inner {
  max-width: 780px; margin: 0 auto; padding: 0 32px;
  text-align: center;
}
.about-inner .section-title { margin-bottom: 18px; }
.about-inner p {
  font-size: 16px; color: var(--text-body); line-height: 1.7;
  margin-bottom: 14px;
}
.about-inner p:last-child { margin-bottom: 0; }

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer {
  padding: 40px 0 70px;
  background: var(--bg);
}
.disclaimer-inner {
  max-width: 820px; margin: 0 auto; padding: 0 32px;
}
.disclaimer-box {
  background: var(--amber-soft);
  border: 1.5px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 26px 28px;
}
.disclaimer-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--amber);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.disclaimer-box p {
  font-size: 14.5px; color: var(--text-dark); line-height: 1.65;
  margin-bottom: 10px;
}
.disclaimer-box p:last-child { margin-bottom: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 32px 32px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border-panel);
  text-align: center;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.footer-copy {
  font-size: 13px; color: var(--text-muted);
}
.footer-links {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
  font-size: 13px;
}
.footer-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-dot { color: var(--text-light); }

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  .navbar-inner { padding: 0 20px; }
  .navbar-links { display: none; }

  .hero { padding: 50px 0 30px; }
  .hero-inner { padding: 0 20px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 16px; }

  .demo { padding: 20px 0 40px; }
  .demo-inner { padding: 0 20px; }
  .demo-card { padding: 22px; border-radius: var(--radius-md); }
  .demo-actions { flex-direction: column-reverse; align-items: stretch; }
  .demo-actions .btn { width: 100%; }

  .answer-panel { padding: 22px; }

  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 15px; }

  .how { padding: 50px 0; }
  .how-inner { padding: 0 20px; }
  .how-grid { grid-template-columns: 1fr; gap: 14px; }

  .about { padding: 50px 0; }
  .about-inner { padding: 0 20px; }
  .about-inner p { font-size: 15px; }

  .disclaimer { padding: 30px 0 50px; }
  .disclaimer-inner { padding: 0 20px; }
  .disclaimer-box { padding: 22px; }

  .site-footer { padding: 24px 20px 32px; }
}


/* -----------------------------------------------------------                                                                                                                        
     Non-homepage pages: default to left-aligned content,                                                                                                                             
     with a wider container for readable legal / prose pages.                                                                                                                           
     Added 2026-07-16.
     ----------------------------------------------------------- */                                                                                                                     
  body:not(.home) .rentwiz-main,                                                                                                                                                        
  body:not(.home) .rentwiz-main * {
    text-align: left;                                                                                                                                                                   
  }                                                                                                                                                                                     
  body:not(.home) .about-inner {
    max-width: 1000px;                                                                                                                                                                   
  }                      


/* -----------------------------------------------------------
   Resource library.
   Added 2026-07-17. Covers listing (home.php + archive.php)
   and single article (single.php).
   ----------------------------------------------------------- */

/* Listing — grid of resource cards */
.resource-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.resource-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.15s ease;
}

.resource-item:hover {
  border-color: #999;
}

.resource-thumb {
  display: block;
}

.resource-thumb img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.resource-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.resource-title {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.3;
}

.resource-title a {
  color: #222;
  text-decoration: none;
}

.resource-title a:hover {
  text-decoration: underline;
}

.resource-excerpt {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.resource-more {
  color: #0a63d1;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: auto;
}

.resource-more:hover {
  text-decoration: underline;
}

/* Cards without a featured image collapse to a single column */
.resource-item:not(:has(.resource-thumb)) {
  grid-template-columns: 1fr;
}

/* Stack on mobile */
@media (max-width: 640px) {
  .resource-item {
    grid-template-columns: 1fr;
  }
}

/* Pagination */
.resource-pagination {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.resource-pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.resource-pagination .page-numbers {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #222;
  text-decoration: none;
  background: #fff;
}

.resource-pagination .page-numbers:hover {
  background: #f5f5f5;
}

.resource-pagination .page-numbers.current {
  background: #222;
  color: #fff;
  border-color: #222;
}

.resource-pagination .page-numbers.dots {
  border: none;
  background: transparent;
}

/* Single article */
.resource-article .resource-meta {
  margin: 12px 0 24px;
  color: #666;
  font-size: 0.9rem;
}

.resource-article .resource-meta-sep {
  margin: 0 8px;
  color: #ccc;
}

.resource-article .resource-hero {
  margin: 0 0 24px;
}

.resource-article .resource-hero img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.resource-article .resource-body {
  font-size: 1.05rem;
  line-height: 1.7;
}

.resource-article .resource-body h2,
.resource-article .resource-body h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.resource-article .resource-taxonomies {
  margin: 32px 0 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
  font-size: 0.95rem;
  color: #555;
}

.resource-article .resource-taxonomy-label {
  font-weight: 600;
  color: #333;
  margin-right: 6px;
}

.resource-article .resource-taxonomies a {
  color: #0a63d1;
  text-decoration: none;
}

.resource-article .resource-taxonomies a:hover {
  text-decoration: underline;
}

.resource-article .resource-back {
  margin-top: 24px;
  font-size: 0.95rem;
}

.resource-article .resource-back a {
  color: #0a63d1;
  text-decoration: none;
}

.resource-article .resource-back a:hover {
  text-decoration: underline;
}


/* -----------------------------------------------------------
   Related articles (auto-rendered by single.php from shared
   Resource Topic — see the setup brief Phase 4).
   ----------------------------------------------------------- */

.resource-related {
  margin: 40px 0 24px;
  padding: 24px;
  background: #f7f7f7;
  border-radius: 8px;
}

.resource-related-title {
  margin: 0 0 16px;
  font-size: 1.25rem;
  color: #222;
}

.resource-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.resource-related-item {
  margin: 0;
}

.resource-related-link {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  color: #222;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.resource-related-link:hover {
  border-color: #0a63d1;
  transform: translateY(-1px);
}

.resource-related-item-title {
  display: block;
  font-weight: 600;
  color: #0a63d1;
  margin-bottom: 4px;
  line-height: 1.3;
}

.resource-related-item-excerpt {
  display: block;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* -----------------------------------------------------------
   Ad slots (reserved in single.php for AdSense / Mediavine /
   manual ad code). Empty divs collapse to nothing so they're
   invisible in the interim. When populated, they get sensible
   spacing and centered alignment.
   ----------------------------------------------------------- */

.rw-ad-slot {
  margin: 24px 0;
  text-align: center;
  min-height: 0;
}

/* Any :empty ad-slot renders as nothing at all — no vertical space
   until an ad populates it. Once populated (by injected script or
   manual paste), the margin above kicks in. */
.rw-ad-slot:empty {
  display: none;
}


/* -----------------------------------------------------------                                                                                                                        
     Legal disclaimer footer (auto-rendered by single.php after                                                                                                                       
     the topic tags, before related articles). Site-wide standing                                                                                                                       
     disclaimer for YMYL / E-E-A-T. Also acts as the entry point
     to the /editorial-policy/ page.                                                                                                                                                    
     ----------------------------------------------------------- */                                                                                                                   
                                                                                                                                                                                        
  .resource-article .resource-disclaimer {                                                                                                                                              
    margin: 32px 0 24px;
    padding: 16px 20px;                                                                                                                                                                 
    background: #f7f7f7;                                                                                                                                                              
    border-left: 4px solid #999;                                                                                                                                                        
    border-radius: 4px;
    font-size: 0.9rem;                                                                                                                                                                  
    color: #444;                                                                                                                                                                      
    line-height: 1.55;
  }                                                                                                                                                                                     
   
  .resource-article .resource-disclaimer p {                                                                                                                                            
    margin: 0;                                                                                                                                                                        
  }

  .resource-article .resource-disclaimer strong {
    color: #222;
  }

  .resource-article .resource-disclaimer a {                                                                                                                                            
    color: #0a63d1;
    text-decoration: none;                                                                                                                                                              
  }                                                                                                                                                                                   

  .resource-article .resource-disclaimer a:hover {                                                                                                                                      
    text-decoration: underline;
  }


/* Restore list bullets inside page content (theme's default reset removes them) */                                                                                                   
  .page .entry-content ul,                                                                                                                                                              
  .page-template-default ul.wp-block-list,
  .rentwiz-main ul {                                                                                                                                                                    
    list-style: disc;                                                                                                                                                                 
    padding-left: 1.5em;                                                                                                                                                                
    margin: 12px 0 16px;                                                                                                                                                              
  }                                                                                                                                                                                     
                                                                                                                                                                                      
  .page .entry-content ol,                                                                                                                                                              
  .rentwiz-main ol {
    list-style: decimal;                                                                                                                                                                
    padding-left: 1.5em;                                                                                                                                                              
    margin: 12px 0 16px;
  }
                                                                                                                                                                                        
  .rentwiz-main li {
    margin-bottom: 6px;                                                                                                                                                                 
    line-height: 1.55;                                                                                                                                                                
  }
