/* ==========================================================================
   Light Elegant Theme - Cream/Ivory with Serif Typography
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --bg: #faf8f5;
    --bg-alt: #f5f0eb;
    --surface: #ffffff;
    --surface-hover: #fdfcfa;
    --text: #2c2420;
    --text-muted: #8a7e76;
    --text-light: #b5a99e;
    --accent: #8b2252;
    --accent-hover: #6e1a41;
    --accent-light: #f3e6ed;
    --gold: #c9a959;
    --gold-light: #f5ecd4;
    --border: #e8e2db;
    --border-light: #f0ebe5;
    --shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.06);
    --shadow: 0 2px 12px rgba(44, 36, 32, 0.08);
    --shadow-lg: 0 8px 30px rgba(44, 36, 32, 0.12);
    --shadow-hover: 0 8px 25px rgba(44, 36, 32, 0.14);
    --radius: 8px;
    --radius-lg: 12px;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', Georgia, 'Times New Roman', serif;
    --font-ui: 'Lora', Georgia, serif;
    --container: 1200px;
    --gap: 24px;
    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: 2.2rem; margin-bottom: 0.6em; }
h2 { font-size: 1.6rem; margin-bottom: 0.5em; }
h3 { font-size: 1.25rem; margin-bottom: 0.4em; }
h4 { font-size: 1.1rem; margin-bottom: 0.3em; }

p { margin-bottom: 1em; }

ul, ol { padding-left: 1.5em; }
ul { list-style: none; padding-left: 0; }

/* --- Container --- */
.fwof3 {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.wxuq0 {
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    padding: 0;
}

.pjacn6 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0 16px;
}

.wbaco7 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.wbaco7:hover { color: var(--accent-hover); }

.wbaco7 span {
    color: var(--gold);
}

.vzuf7 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0 0 16px;
    flex-wrap: wrap;
}

.tcacj0 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.tcacj0 a {
    color: var(--text-muted);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all var(--transition);
    white-space: nowrap;
}

.tcacj0 a:hover {
    color: var(--accent);
    background: var(--accent-light);
}

/* Search */
.hdacx3 {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.jgaco0 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--bg);
    color: var(--text);
    width: 220px;
    transition: all var(--transition);
    outline: none;
}

.jgaco0:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-light);
    width: 280px;
}

.jgaco0::placeholder { color: var(--text-light); }

.dfacd7 {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 6px 10px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.dfacd7:hover { color: var(--accent); }

/* Search Dropdown */
.drecf8 {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
}

.drecf8 a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition);
}

.drecf8 a:last-child { border-bottom: none; }
.drecf8 a:hover { background: var(--accent-light); color: var(--accent); }

/* Mobile menu toggle */
.chacn1 {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 4px;
}

/* ==========================================================================
   MAIN
   ========================================================================== */
.ljech8 {
    flex: 1;
    padding: 32px 0 48px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.bkacj3 {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.bkacj3 h1 {
    font-size: 2.6rem;
    color: var(--accent);
    margin-bottom: 0.4em;
}

.bkacj3 p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* ==========================================================================
   TWO-COLUMN LAYOUT (index)
   ========================================================================== */
.xlacl3 {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.imacp8 { min-width: 0; }

.oficc0 {
    position: sticky;
    top: 24px;
}

.xgicg7 {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.xgicg7 h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
    color: var(--accent);
}

.hjicd7 {
    list-style: none;
    padding: 0;
}

.hjicd7 li { margin-bottom: 0; }

.hjicd7 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}

.hjicd7 li:last-child a { border-bottom: none; }

.hjicd7 a:hover { color: var(--accent); padding-left: 4px; }

.ghicb4 {
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 12px;
}

/* ==========================================================================
   SECTION
   ========================================================================== */
.qwecm7 {
    margin-bottom: 40px;
}

.qwecm7 h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.qwecm7 h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.qxecz3 {
    background: var(--surface);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.qxecz3 p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.qxecz3 a { color: var(--accent); font-weight: 600; }

.kcicl1 {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   CARDS GRID
   ========================================================================== */
.slob0 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--gap);
}

.lxin1 {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.lxin1:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.efog5 { display: block; overflow: hidden; }

.ndor8 {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lxin1:hover .ndor8 { transform: scale(1.05); }

.xzie4 {
    padding: 16px 20px 20px;
}

.tjoy3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.tjoy3 a { color: var(--text); }
.tjoy3 a:hover { color: var(--accent); }

.tgoc6 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pkoa8 {
    font-size: 0.8rem;
    color: var(--gold);
    font-style: italic;
}

/* ==========================================================================
   LIST VIEW (for region/dept/ville pages)
   ========================================================================== */
.ynet1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zqa5 {
    display: flex;
    gap: 24px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.zqa5:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.dvh8 {
    flex-shrink: 0;
    display: block;
    width: 200px;
    overflow: hidden;
}

.ltl8 {
    width: 200px;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zqa5:hover .ltl8 {
    transform: scale(1.05);
}

.vrj2 {
    padding: 20px 24px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.cxh1 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.cxh1 a { color: var(--text); }
.cxh1 a:hover { color: var(--accent); }

.awi6 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.lso4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.hzl3 {
    font-size: 0.8rem;
    color: var(--gold);
    font-style: italic;
}

/* ==========================================================================
   TAGS
   ========================================================================== */
.vqicr8 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ymicz0 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--surface);
    color: var(--text);
    font-size: 0.88rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    font-family: var(--font-ui);
}

.ymicz0:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.ymicz0:hover .rpici3 { background: rgba(255,255,255,0.2); color: #fff; }

.rpici3 {
    font-size: 0.75rem;
    background: var(--bg-alt);
    color: var(--text-light);
    padding: 1px 7px;
    border-radius: 10px;
    transition: all var(--transition);
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.lqiv3 {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.lqiv3 a { color: var(--text-muted); }
.lqiv3 a:hover { color: var(--accent); }
.lqiv3 span { color: var(--text); }

/* ==========================================================================
   ANNONCE DETAIL PAGE
   ========================================================================== */
.yck5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.xdp5 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.umo2 {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.ynm7 {
    max-height: 500px;
}

.npw1 {
    display: flex;
    gap: 12px;
}

.npw1 img {
    width: calc(50% - 6px);
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.afw9 {
    display: flex;
    flex-direction: column;
}

.hlw0 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.ekr8 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.ekr8::before {
    content: '\25C8';
    margin-right: 6px;
    color: var(--gold);
}

/* CTA Button */
.ztid8 {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(139, 34, 82, 0.3);
    margin: 20px 0;
    letter-spacing: 0.02em;
}

.ztid8:hover {

/* Floating contact CTA */
.lvii2 {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  padding: .85rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.lvii2.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .lvii2 {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }
}    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 34, 82, 0.4);
    color: #fff;
}

/* Info box */
.jgm6 {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 20px;
}

.jjr6 {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.jjr6:last-child { border-bottom: none; }

.xhw3 {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Content sections below hero */
.sbg8 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.zbet2 {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.zbet2 h2 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.zbet2 h2::after { display: none; }

.zbet2 p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Practices */
.apecf8 {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.apecf8 h3 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.vqecn5 {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vqecn5 li {
    background: var(--accent-light);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
}

/* Annonce list ul */
.xgei4 {
    list-style: none;
    padding: 0;
}

.xgei4 li {
    position: relative;
    padding: 6px 0 6px 20px;
    color: var(--text-muted);
}

.xgei4 li::before {
    content: '\2726';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.ekecp0 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.vmect3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.vmect3:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.hnecp3 {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.elecr4 {
    color: var(--text-light);
    padding: 0 4px;
}

/* ==========================================================================
   SEARCH PAGE
   ========================================================================== */
.ksecp7 {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin-bottom: 32px;
}

.qveci7 {
    flex: 1;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 14px 24px;
    border: 2px solid var(--border);
    border-radius: 30px;
    background: var(--surface);
    color: var(--text);
    outline: none;
    transition: all var(--transition);
}

.qveci7:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-light);
}

.dtech4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.dtech4:hover {
    background: var(--accent-hover);
}

.kkici2 {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.zzoh8 {
    text-align: center;
    color: var(--text-light);
    padding: 48px 0;
    font-size: 1rem;
    font-style: italic;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.qbic8 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.zcih9 {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.zcih9:hover,
.edix1 {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Blog list */
.upih9 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.jgif1 {
    display: flex;
    gap: 24px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.jgif1:hover {
    box-shadow: var(--shadow);
}

.hmid9 {
    flex-shrink: 0;
    display: block;
    width: 260px;
    overflow: hidden;
}

.xliz1 {
    width: 260px;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jgif1:hover .xliz1 { transform: scale(1.05); }

.yhii8 {
    padding: 24px 28px 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.jjiv4 {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.yhii8 h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.yhii8 h2 a { color: var(--text); }
.yhii8 h2 a:hover { color: var(--accent); }
.yhii8 h2::after { display: none; }

.rkiw6 {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
}

.yhii8 p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.dnij5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dnij5::after { content: ' \2192'; }

/* Blog grid (for homepage/article bottom) */
.mfiu4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--gap);
}

.xxek6 {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.xxek6:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.azex0 {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.xxek6 h3 {
    padding: 16px 20px 8px;
    font-size: 1.05rem;
}

.xxek6 h3 a { color: var(--text); }
.xxek6 h3 a:hover { color: var(--accent); }

.xxek6 p, .xxek6 time {
    padding: 0 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.xxek6 time { padding-bottom: 16px; color: var(--text-light); }

/* ==========================================================================
   ARTICLE DETAIL
   ========================================================================== */
.cpet2 { margin-bottom: 40px; }

.ttea6 {
    margin-bottom: 24px;
}

.ttea6 h1 { margin-bottom: 12px; }

.fweu5 {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lsei8 { color: var(--text-light); }

.jqeg1 {
    background: var(--accent-light);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bved5 {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

.aref5 {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* Content text styling */
.jxox1 { line-height: 1.8; color: var(--text); }
.jxox1 h2, .jxox1 h3 { margin-top: 1.5em; }
.jxox1 h2::after { display: none; }
.jxox1 a { color: var(--accent); text-decoration: underline; }
.jxox1 ul, .jxox1 ol { padding-left: 1.5em; margin-bottom: 1em; }
.jxox1 li { margin-bottom: 0.3em; list-style: disc; }
.jxox1 blockquote {
    border-left: 3px solid var(--gold);
    padding: 12px 20px;
    margin: 1.5em 0;
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-muted);
}
.jxox1 img { border-radius: var(--radius); margin: 1em 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.isuw9 {
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.vwuj3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 48px 0;
}

.vvut5 h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.vvut5 p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.vvut5 ul {
    list-style: none;
    padding: 0;
}

.vvut5 li {
    margin-bottom: 6px;
}

.vvut5 a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: all var(--transition);
}

.vvut5 a:hover { color: var(--accent); padding-left: 4px; }

.ctui5 {
    border-top: 1px solid var(--border-light);
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .xlacl3 {
        grid-template-columns: 1fr;
    }

    .oficc0 { position: static; }

    .yck5 {
        grid-template-columns: 1fr;
    }

    .sbg8 {
        grid-template-columns: 1fr;
    }

    .vwuj3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root { --gap: 16px; }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.3rem; }

    .pjacn6 { padding: 16px 0 12px; }

    .vzuf7 {
        flex-direction: column;
        gap: 8px;
    }

    .tcacj0 {
        gap: 4px;
    }

    .tcacj0 a {
        padding: 5px 10px;
        font-size: 0.82rem;
    }

    .hdacx3 {
        margin-left: 0;
        width: 100%;
        max-width: 320px;
    }

    .jgaco0 {
        width: 100%;
    }

    .jgaco0:focus {
        width: 100%;
    }

    .bkacj3 {
        padding: 32px 16px;
    }

    .bkacj3 h1 { font-size: 1.8rem; }
    .bkacj3 p { font-size: 1rem; }

    .slob0 {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }

    .ndor8 { height: 220px; }

    /* List items stack */
    .zqa5 {
        flex-direction: column;
        gap: 0;
    }

    .dvh8 {
        width: 100%;
    }

    .ltl8 {
        width: 100%;
        height: 200px;
        min-height: 0;
    }

    .vrj2 {
        padding: 16px;
    }

    /* Blog items stack */
    .jgif1 {
        flex-direction: column;
        gap: 0;
    }

    .hmid9 {
        width: 100%;
    }

    .xliz1 {
        width: 100%;
        height: 200px;
        min-height: 0;
    }

    .yhii8 {
        padding: 16px;
    }

    .ksecp7 {
        flex-direction: column;
    }

    .mfiu4 {
        grid-template-columns: 1fr;
    }

    .vwuj3 {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0;
    }

    .yck5 { gap: 24px; }

    .kcicl1 { padding: 20px; }

    .aref5 { padding: 24px; }
}

@media (max-width: 480px) {
    .slob0 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ndor8 { height: 180px; }

    .xzie4 { padding: 12px 14px 14px; }
    .tjoy3 { font-size: 0.95rem; }

    .vqicr8 { gap: 6px; }
    .ymicz0 { padding: 6px 12px; font-size: 0.82rem; }

    .ztid8 {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
    }
}

/* SEO text source-order optimization: text appears early in HTML for crawlers,
   but visually stays at the bottom via CSS order */
.ljech8 > .fwof3 { display: flex; flex-direction: column; }
.lqiv3 { order: 1; }
h1 { order: 2; }
.qxecz3 { order: 3; }
.fbicc8 { order: 90; }
.qwecm7 { order: 10; }
.wmor9 { order: 80; }
.bkacj3 { order: 2; }
.kcicl1 { order: 85; }
/* ── Filter bar ─────────────────────────────────────────────────────────── */
.pbuj5 {
    margin: 1.5rem 0 2rem;
    padding: 1rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.adul4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.adul4 + .adul4 {
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}
.ifup5 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    white-space: nowrap;
    min-width: 8.5rem;
    flex-shrink: 0;
}
.pgua8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.qnicu1 {
    background: var(--color-accent) !important;
    color: var(--color-white, #fff) !important;
    border-color: var(--color-accent) !important;
    font-weight: 600;
}
.qnicu1 .rpici3 {
    color: rgba(255,255,255,0.75) !important;
}
@media (max-width: 600px) {
  .pbuj5 { padding: .75rem; }
  .adul4 { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .ifup5 { min-width: unset; }
}

/* ── Comments ─────────────────────────────────────────────────────────── */
.rbot1 {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: .8rem;
    color: var(--color-text-muted, #888);
}
.lhoz8 { color: var(--color-accent, #e91e8c); letter-spacing: 1px; }
.ccog2 { color: inherit; }

.wlej4 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-surface, rgba(255,255,255,.08));
    border-radius: 20px;
    padding: 4px 12px;
    margin-top: 8px;
    font-size: .9rem;
}
.jkea8 { color: var(--color-accent, #e91e8c); letter-spacing: 1px; }
.fjeo9 { font-weight: 700; }
.ohem2 { color: var(--color-text-muted, #aaa); text-decoration: none; font-size: .85rem; }
.ohem2:hover { text-decoration: underline; }

.jcey8 { margin-top: 32px; }
.lfeg0 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.wden5 {
    background: var(--color-accent, #e91e8c);
    color: #fff;
    border-radius: 20px;
    padding: 2px 9px;
    font-size: .8rem;
    font-weight: 700;
}
.hvoc9 { display: flex; flex-direction: column; gap: 16px; }
.jroq8 {
    background: var(--color-surface, rgba(255,255,255,.05));
    border-radius: 8px;
    padding: 14px 16px;
}
.iqoh5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.inoj7 { font-weight: 700; font-size: .95rem; }
.ason6 { color: var(--color-accent, #e91e8c); letter-spacing: 1px; }
.tpoz6 { color: var(--color-text-muted, #888); font-size: .8rem; margin-left: auto; }
.etot2 { margin: 0; font-size: .9rem; line-height: 1.6; }
