/* ==========================================================================
   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 --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    padding: 0;
}

.header__top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0 16px;
}

.header__logo {
    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);
}

.header__logo:hover { color: var(--accent-hover); }

.header__logo span {
    color: var(--gold);
}

.header__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0 0 16px;
    flex-wrap: wrap;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.header__nav 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;
}

.header__nav a:hover {
    color: var(--accent);
    background: var(--accent-light);
}

/* Search */
.header__search {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.header__search-input {
    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;
}

.header__search-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-light);
    width: 280px;
}

.header__search-input::placeholder { color: var(--text-light); }

.header__search-btn {
    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);
}

.header__search-btn:hover { color: var(--accent); }

/* Search Dropdown */
.search-dropdown {
    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;
}

.search-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition);
}

.search-dropdown a:last-child { border-bottom: none; }
.search-dropdown a:hover { background: var(--accent-light); color: var(--accent); }

/* Mobile menu toggle */
.header__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 4px;
}

/* ==========================================================================
   MAIN
   ========================================================================== */
.main {
    flex: 1;
    padding: 32px 0 48px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    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;
}

.hero h1 {
    font-size: 2.6rem;
    color: var(--accent);
    margin-bottom: 0.4em;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* ==========================================================================
   TWO-COLUMN LAYOUT (index)
   ========================================================================== */
.layout-two-col {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.layout-two-col__main { min-width: 0; }

.sidebar {
    position: sticky;
    top: 24px;
}

.sidebar__block {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.sidebar__block 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);
}

.sidebar__list {
    list-style: none;
    padding: 0;
}

.sidebar__list li { margin-bottom: 0; }

.sidebar__list 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);
}

.sidebar__list li:last-child a { border-bottom: none; }

.sidebar__list a:hover { color: var(--accent); padding-left: 4px; }

.sidebar__count {
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 12px;
}

/* ==========================================================================
   SECTION
   ========================================================================== */
.section {
    margin-bottom: 40px;
}

.section h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.section--intro {
    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;
}

.section--intro p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.section--intro a { color: var(--accent); font-weight: 600; }

.section--text {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   CARDS GRID
   ========================================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--gap);
}

.card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.card__img-link { display: block; overflow: hidden; }

.card__img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card__img { transform: scale(1.05); }

.card__body {
    padding: 16px 20px 20px;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.card__title a { color: var(--text); }
.card__title a:hover { color: var(--accent); }

.card__location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.card__type {
    font-size: 0.8rem;
    color: var(--gold);
    font-style: italic;
}

/* ==========================================================================
   LIST VIEW (for region/dept/ville pages)
   ========================================================================== */
.annonces-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.annonce-list-item {
    display: flex;
    gap: 24px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.annonce-list-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.annonce-list-item__img-link {
    flex-shrink: 0;
    display: block;
    width: 200px;
    overflow: hidden;
}

.annonce-list-item__img {
    width: 200px;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.annonce-list-item:hover .annonce-list-item__img {
    transform: scale(1.05);
}

.annonce-list-item__body {
    padding: 20px 24px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.annonce-list-item__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.annonce-list-item__title a { color: var(--text); }
.annonce-list-item__title a:hover { color: var(--accent); }

.annonce-list-item__location {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.annonce-list-item__excerpt {
    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;
}

.annonce-list-item__type {
    font-size: 0.8rem;
    color: var(--gold);
    font-style: italic;
}

/* ==========================================================================
   TAGS
   ========================================================================== */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    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);
}

.tag:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.tag:hover .tag__count { background: rgba(255,255,255,0.2); color: #fff; }

.tag__count {
    font-size: 0.75rem;
    background: var(--bg-alt);
    color: var(--text-light);
    padding: 1px 7px;
    border-radius: 10px;
    transition: all var(--transition);
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); }

/* ==========================================================================
   ANNONCE DETAIL PAGE
   ========================================================================== */
.annonce-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.annonce-detail__gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.annonce-detail__photo {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.annonce-detail__photo--main {
    max-height: 500px;
}

.annonce-detail__thumbs {
    display: flex;
    gap: 12px;
}

.annonce-detail__thumbs img {
    width: calc(50% - 6px);
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.annonce-detail__info {
    display: flex;
    flex-direction: column;
}

.annonce-detail__name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.annonce-detail__location {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.annonce-detail__location::before {
    content: '\25C8';
    margin-right: 6px;
    color: var(--gold);
}

/* CTA Button */
.btn-cta {
    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;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 34, 82, 0.4);
    color: #fff;
}

/* Info box */
.annonce-detail__info-box {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 20px;
}

.annonce-detail__info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.annonce-detail__info-row:last-child { border-bottom: none; }

.annonce-detail__info-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Content sections below hero */
.annonce-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.annonce-section {
    background: var(--surface);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.annonce-section h2 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.annonce-section h2::after { display: none; }

.annonce-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Practices */
.practices-box {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.practices-box h3 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.practices-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.practices-list li {
    background: var(--accent-light);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
}

/* Annonce list ul */
.annonce__list {
    list-style: none;
    padding: 0;
}

.annonce__list li {
    position: relative;
    padding: 6px 0 6px 20px;
    color: var(--text-muted);
}

.annonce__list li::before {
    content: '\2726';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.pagination__link {
    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);
}

.pagination__link:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.pagination__link--active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.pagination__dots {
    color: var(--text-light);
    padding: 0 4px;
}

/* ==========================================================================
   SEARCH PAGE
   ========================================================================== */
.search-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin-bottom: 32px;
}

.search-form__input {
    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);
}

.search-form__input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-light);
}

.search-form__btn {
    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;
}

.search-form__btn:hover {
    background: var(--accent-hover);
}

.subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.empty {
    text-align: center;
    color: var(--text-light);
    padding: 48px 0;
    font-size: 1rem;
    font-style: italic;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.blog-categories__link {
    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);
}

.blog-categories__link:hover,
.blog-categories__link--active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Blog list */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-item {
    display: flex;
    gap: 24px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.blog-item:hover {
    box-shadow: var(--shadow);
}

.blog-item__img-link {
    flex-shrink: 0;
    display: block;
    width: 260px;
    overflow: hidden;
}

.blog-item__img {
    width: 260px;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-item__img { transform: scale(1.05); }

.blog-item__body {
    padding: 24px 28px 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.blog-item__category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-item__body h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.blog-item__body h2 a { color: var(--text); }
.blog-item__body h2 a:hover { color: var(--accent); }
.blog-item__body h2::after { display: none; }

.blog-item__date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
}

.blog-item__body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.blog-item__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-item__link::after { content: ' \2192'; }

/* Blog grid (for homepage/article bottom) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--gap);
}

.blog-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.blog-card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 16px 20px 8px;
    font-size: 1.05rem;
}

.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--accent); }

.blog-card p, .blog-card time {
    padding: 0 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.blog-card time { padding-bottom: 16px; color: var(--text-light); }

/* ==========================================================================
   ARTICLE DETAIL
   ========================================================================== */
.article { margin-bottom: 40px; }

.article__header {
    margin-bottom: 24px;
}

.article__header h1 { margin-bottom: 12px; }

.article__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article__date { color: var(--text-light); }

.article__category {
    background: var(--accent-light);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article__hero {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

.article__content {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* Content text styling */
.content-text { line-height: 1.8; color: var(--text); }
.content-text h2, .content-text h3 { margin-top: 1.5em; }
.content-text h2::after { display: none; }
.content-text a { color: var(--accent); text-decoration: underline; }
.content-text ul, .content-text ol { padding-left: 1.5em; margin-bottom: 1em; }
.content-text li { margin-bottom: 0.3em; list-style: disc; }
.content-text 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);
}
.content-text img { border-radius: var(--radius); margin: 1em 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 48px 0;
}

.footer__col 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);
}

.footer__col p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer__col ul {
    list-style: none;
    padding: 0;
}

.footer__col li {
    margin-bottom: 6px;
}

.footer__col a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: all var(--transition);
}

.footer__col a:hover { color: var(--accent); padding-left: 4px; }

.footer__bottom {
    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) {
    .layout-two-col {
        grid-template-columns: 1fr;
    }

    .sidebar { position: static; }

    .annonce-detail {
        grid-template-columns: 1fr;
    }

    .annonce-content {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root { --gap: 16px; }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.3rem; }

    .header__top { padding: 16px 0 12px; }

    .header__bottom {
        flex-direction: column;
        gap: 8px;
    }

    .header__nav {
        gap: 4px;
    }

    .header__nav a {
        padding: 5px 10px;
        font-size: 0.82rem;
    }

    .header__search {
        margin-left: 0;
        width: 100%;
        max-width: 320px;
    }

    .header__search-input {
        width: 100%;
    }

    .header__search-input:focus {
        width: 100%;
    }

    .hero {
        padding: 32px 16px;
    }

    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }

    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }

    .card__img { height: 220px; }

    /* List items stack */
    .annonce-list-item {
        flex-direction: column;
        gap: 0;
    }

    .annonce-list-item__img-link {
        width: 100%;
    }

    .annonce-list-item__img {
        width: 100%;
        height: 200px;
        min-height: 0;
    }

    .annonce-list-item__body {
        padding: 16px;
    }

    /* Blog items stack */
    .blog-item {
        flex-direction: column;
        gap: 0;
    }

    .blog-item__img-link {
        width: 100%;
    }

    .blog-item__img {
        width: 100%;
        height: 200px;
        min-height: 0;
    }

    .blog-item__body {
        padding: 16px;
    }

    .search-form {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0;
    }

    .annonce-detail { gap: 24px; }

    .section--text { padding: 20px; }

    .article__content { padding: 24px; }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .card__img { height: 180px; }

    .card__body { padding: 12px 14px 14px; }
    .card__title { font-size: 0.95rem; }

    .tags { gap: 6px; }
    .tag { padding: 6px 12px; font-size: 0.82rem; }

    .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
    }
}
