/* ============================================================
   HaitiCreoleRadio — style.css
   Mobile-first | Bleu #0d4a8c | Vert pâle #e8f5e0 | Blanc
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: Georgia, 'Times New Roman', serif; background: #f0f4f8; color: #1a2a3a; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* --- Variables --- */
:root {
  --blue:       #0d4a8c;
  --blue-dark:  #0a3d73;
  --blue-deeper:#072d57;
  --green-pale: #e8f5e0;
  --green:      #2d8a2d;
  --white:      #ffffff;
  --gray-light: #f0f4f8;
  --gray-bg:    #f7fafe;
  --gray-border:#d0dce8;
  --text:       #1a2a3a;
  --text-muted: #6b7c93;
  --radius:     8px;
  --radius-lg:  12px;
  --shadow:     0 2px 12px rgba(13,74,140,.08);
  --trans:      all .2s ease;
}

/* --- Container --- */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { background: var(--blue); color: #fff; }

.top-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 11px; color: rgba(255,255,255,.7); gap: 8px;
  font-family: Arial, sans-serif;
}
.top-bar-left { display: flex; align-items: center; gap: 14px; }
.top-bar-right { display: flex; align-items: center; gap: 10px; }
.top-social { color: rgba(255,255,255,.6); font-size: 13px; transition: var(--trans); }
.top-social:hover { color: var(--green-pale); }
.top-date { display: none; }

.live-indicator { display: flex; align-items: center; gap: 5px; }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-pale);
  animation: blink 1.4s ease infinite;
  display: inline-block;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px; background: var(--green-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: .3px; }
.logo-tag { font-size: 9px; color: rgba(255,255,255,.6); letter-spacing: 1px; text-transform: uppercase; font-family: Arial, sans-serif; }

.header-search { display: none; }
.header-search form { display: flex; align-items: center; }
.header-search input {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px 0 0 20px; color: #fff; padding: 7px 14px; font-size: 12px;
  width: 190px; outline: none;
}
.header-search input::placeholder { color: rgba(255,255,255,.45); }
.header-search button {
  background: var(--green-pale); border: none; border-radius: 0 20px 20px 0;
  padding: 7px 12px; cursor: pointer; color: var(--blue);
}

/* --- Nav --- */
.main-nav { background: var(--blue-dark); position: relative; }
.main-nav .container { position: relative; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 12px 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.85); border-radius: 2px; transition: var(--trans);
}

.nav-list {
  display: none; flex-direction: column;
  background: var(--blue-dark);
  position: absolute; top: 100%; left: 0; right: 0;
  z-index: 100; border-top: 1px solid rgba(255,255,255,.1);
}
.nav-list.open { display: flex; }
.nav-list li a {
  display: block; color: rgba(255,255,255,.82); font-size: 13px;
  padding: 11px 16px; font-family: Arial, sans-serif;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--trans);
}
.nav-list li a:hover, .nav-list li a.active {
  background: rgba(255,255,255,.1); color: #fff;
}
.nav-list li a.active { border-left: 3px solid var(--green-pale); }

/* Breaking bar */
.breaking-bar {
  background: #d9f0cc; border-left: 4px solid var(--green);
}
.breaking-bar .container {
  display: flex; align-items: center; gap: 10px;
  padding-top: 8px; padding-bottom: 8px; font-size: 12px;
}
.breaking-label {
  background: var(--green); color: #fff; font-size: 10px;
  padding: 2px 8px; border-radius: 3px; font-weight: 700;
  letter-spacing: .8px; white-space: nowrap; font-family: Arial, sans-serif;
}
.breaking-text { color: #1a5c1a; font-style: italic; flex: 1; }
.breaking-text a { color: #1a5c1a; font-weight: 700; }

/* ============================================================
   LAYOUT PRINCIPAL
   ============================================================ */
.page-wrapper { padding: 20px 0 100px; }
.main-layout { display: block; }
.content-area { min-width: 0; }

/* ============================================================
   CARDS ARTICLES
   ============================================================ */
/* Featured */
.featured-card {
  background: var(--blue); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 20px;
}
.featured-img {
  height: 200px; background: linear-gradient(135deg, #1a6bb5 0%, var(--blue-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.featured-img-placeholder { text-align: center; color: rgba(255,255,255,.3); font-family: Arial,sans-serif; font-size: 11px; }
.featured-img-placeholder i { font-size: 32px; display: block; margin-bottom: 6px; }
.featured-content { padding: 18px; }
.featured-content h2 { color: #fff; font-size: 18px; line-height: 1.4; margin: 8px 0; }
.featured-content p { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 11px; color: rgba(255,255,255,.55); font-family: Arial,sans-serif; }
.meta-sep { width: 3px; height: 3px; background: rgba(255,255,255,.3); border-radius: 50%; }

/* Tag / Badge catégorie */
.cat-tag {
  display: inline-block; font-size: 9px; padding: 2px 8px;
  border-radius: 3px; text-transform: uppercase; letter-spacing: .8px;
  font-weight: 700; font-family: Arial,sans-serif; margin-bottom: 6px;
  background: var(--green-pale); color: var(--green);
}

/* Section title */
.section-title {
  font-size: 12px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 2px solid var(--blue); padding-bottom: 6px; margin-bottom: 14px;
  font-family: Arial,sans-serif;
}

/* Grille articles */
.article-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 20px; }

.article-card {
  background: #fff; border: 1px solid var(--gray-border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--trans); box-shadow: var(--shadow);
}
.article-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,74,140,.12); }

.article-thumb {
  height: 180px; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-thumb .thumb-placeholder { color: #bbb; font-size: 28px; }

.article-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.article-body h3 { font-size: 15px; color: var(--text); line-height: 1.4; margin-bottom: 6px; }
.article-body p { font-size: 12px; color: var(--text-muted); flex: 1; margin-bottom: 10px; line-height: 1.5; }
.article-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.article-meta-small { font-size: 10px; color: var(--text-muted); font-family: Arial,sans-serif; }
.comment-count { font-size: 10px; color: var(--blue); font-family: Arial,sans-serif; }
.comment-count i { margin-right: 3px; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 24px 0; flex-wrap: wrap; }
.page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border: 1px solid var(--gray-border); border-radius: 6px;
  font-size: 13px; color: var(--blue); background: #fff;
  font-family: Arial,sans-serif; cursor: pointer; transition: var(--trans);
}
.page-btn:hover, .page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.article-header { margin-bottom: 20px; }
.article-header h1 { font-size: 22px; line-height: 1.35; color: var(--text); margin: 10px 0; }
.article-image { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.article-image-placeholder {
  width: 100%; height: 240px; background: var(--gray-light);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: #bbb; font-size: 40px; margin-bottom: 16px;
}
.article-content { font-size: 15px; line-height: 1.85; color: var(--text); }
.article-content p { margin-bottom: 14px; }
.article-content h2 { font-size: 18px; margin: 20px 0 10px; color: var(--blue); }
.article-content h3 { font-size: 16px; margin: 16px 0 8px; }
.article-content blockquote {
  border-left: 4px solid var(--blue); padding: 10px 16px;
  background: var(--gray-bg); margin: 16px 0; font-style: italic; color: var(--text-muted);
}

/* Author box */
.author-box {
  display: flex; align-items: center; gap: 14px; padding: 14px;
  background: var(--gray-bg); border-radius: var(--radius);
  border: 1px solid var(--gray-border); margin: 20px 0;
}
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; font-weight: 700; flex-shrink: 0;
  font-family: Arial,sans-serif;
}
.author-info h4 { font-size: 14px; color: var(--text); margin-bottom: 3px; }
.author-info p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   COMMENTAIRES
   ============================================================ */
.comment-section { margin-top: 28px; }

.comment-form-box {
  background: var(--gray-bg); border-radius: var(--radius);
  padding: 18px; margin-bottom: 24px; border: 1px solid var(--gray-border);
}
.comment-form-box h3 { font-size: 15px; margin-bottom: 14px; color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 10px; }
.form-input, .form-textarea {
  width: 100%; border: 1px solid var(--gray-border); border-radius: 6px;
  padding: 9px 12px; font-size: 13px; background: #fff; color: var(--text);
  transition: var(--trans); outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,74,140,.08); }
.form-textarea { min-height: 100px; resize: vertical; font-family: Georgia, serif; }

.anon-toggle { display: flex; align-items: center; gap: 10px; margin: 10px 0; cursor: pointer; }
.toggle-track {
  width: 36px; height: 20px; background: #ccc; border-radius: 10px;
  position: relative; transition: var(--trans); flex-shrink: 0;
}
.toggle-track.on { background: var(--green); }
.toggle-thumb {
  width: 14px; height: 14px; background: #fff; border-radius: 50%;
  position: absolute; top: 3px; left: 3px; transition: var(--trans);
}
.toggle-track.on .toggle-thumb { left: 19px; }
.toggle-label { font-size: 13px; color: var(--text-muted); font-family: Arial,sans-serif; }

.btn-submit {
  background: var(--blue); color: #fff; border: none; border-radius: 6px;
  padding: 10px 22px; font-size: 13px; cursor: pointer; font-family: Arial,sans-serif;
  transition: var(--trans); margin-top: 6px;
}
.btn-submit:hover { background: var(--blue-dark); }

/* Comment list */
.comment-list { display: flex; flex-direction: column; gap: 16px; }
.comment-item { display: flex; gap: 12px; }
.comment-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700; flex-shrink: 0;
  font-family: Arial,sans-serif;
}
.comment-avatar.anon { background: #bbb; }
.comment-body { flex: 1; border-bottom: 1px solid var(--gray-border); padding-bottom: 14px; }
.comment-author-name { font-size: 13px; font-weight: 700; color: var(--blue); font-family: Arial,sans-serif; }
.comment-author-name.anon { color: var(--text-muted); }
.comment-date { font-size: 10px; color: var(--text-muted); margin-left: 8px; font-family: Arial,sans-serif; }
.comment-text { font-size: 13px; color: var(--text); line-height: 1.6; margin-top: 5px; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { margin-top: 20px; }
.sidebar-block {
  background: #fff; border: 1px solid var(--gray-border); border-radius: var(--radius);
  padding: 16px; margin-bottom: 16px; box-shadow: var(--shadow);
}
.sidebar-title {
  font-size: 11px; font-weight: 700; color: var(--blue-dark);
  text-transform: uppercase; letter-spacing: 1px; font-family: Arial,sans-serif;
  border-bottom: 2px solid var(--blue); padding-bottom: 6px; margin-bottom: 14px;
}
.sidebar-title i { margin-right: 5px; }

/* Radio widget */
.radio-widget {
  background: var(--blue); border-radius: var(--radius); padding: 16px; text-align: center;
}
.rw-live { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 10px; color: rgba(255,255,255,.7); font-family: Arial,sans-serif; margin-bottom: 8px; }
.rw-station { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.rw-show { color: rgba(255,255,255,.6); font-size: 11px; margin-bottom: 14px; font-family: Arial,sans-serif; }
.rw-controls { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 10px; }
.rw-play {
  width: 38px; height: 38px; background: var(--green-pale); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--blue);
  font-size: 14px; transition: var(--trans);
}
.rw-play:hover { background: #d0f0b8; }
.rw-vol { flex: 1; display: flex; align-items: center; gap: 6px; }
.rw-vol input[type=range] { flex: 1; height: 3px; accent-color: var(--green-pale); cursor: pointer; }
.rw-link { font-size: 11px; color: var(--green-pale); font-family: Arial,sans-serif; }
.rw-link:hover { text-decoration: underline; }

/* Top articles */
.top-article {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; border-bottom: 1px solid var(--gray-border);
  cursor: pointer; transition: var(--trans);
}
.top-article:last-child { border-bottom: none; padding-bottom: 0; }
.top-article:hover .top-title { color: var(--blue); }
.top-num { font-size: 22px; font-weight: 700; color: #d8e4f0; line-height: 1; font-family: Arial,sans-serif; flex-shrink: 0; width: 28px; }
.top-title { font-size: 12px; color: var(--text); line-height: 1.4; transition: var(--trans); }
.top-meta { font-size: 10px; color: var(--text-muted); font-family: Arial,sans-serif; }

/* Cat pills */
.cat-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-pill {
  font-size: 11px; padding: 4px 10px; border-radius: 12px;
  border: 1px solid transparent; font-family: Arial,sans-serif;
  transition: var(--trans); cursor: pointer;
}
.cat-pill:hover { filter: brightness(.9); }
.cat-count { font-size: 9px; opacity: .7; margin-left: 3px; }

/* Recent articles sidebar */
.recent-article { display: block; padding: 8px 0; border-bottom: 1px solid var(--gray-border); transition: var(--trans); }
.recent-article:last-child { border-bottom: none; }
.recent-article:hover .recent-title { color: var(--blue); }
.recent-title { font-size: 12px; color: var(--text); line-height: 1.4; margin-bottom: 3px; transition: var(--trans); }
.recent-date { font-size: 10px; color: var(--text-muted); font-family: Arial,sans-serif; }

/* Newsletter */
.nl-desc { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.nl-form { display: flex; flex-direction: column; gap: 7px; }
.nl-form input {
  border: 1px solid var(--gray-border); border-radius: 6px; padding: 8px 12px;
  font-size: 12px; outline: none;
}
.nl-form button {
  background: var(--green); color: #fff; border: none; border-radius: 6px;
  padding: 9px; font-size: 12px; cursor: pointer; transition: var(--trans); font-family: Arial,sans-serif;
}
.nl-form button:hover { background: #1f6b1f; }
.nl-msg { margin-top: 6px; min-height: 18px; }

/* ============================================================
   RADIO PAGE
   ============================================================ */
.radio-page-hero {
  background: var(--blue); color: #fff; border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center; margin-bottom: 24px;
}
.radio-page-hero h1 { font-size: 24px; margin-bottom: 6px; }
.radio-page-hero p { font-size: 13px; opacity: .75; margin-bottom: 20px; }
.radio-play-big {
  width: 64px; height: 64px; background: var(--green-pale); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  cursor: pointer; color: var(--blue); font-size: 22px; transition: var(--trans);
}
.radio-play-big:hover { background: #d0f0b8; transform: scale(1.05); }

.schedule-grid { display: grid; gap: 10px; }
.program-card {
  background: #fff; border: 1px solid var(--gray-border); border-radius: var(--radius);
  padding: 14px; display: flex; gap: 14px; align-items: center; box-shadow: var(--shadow);
}
.program-time {
  background: var(--blue); color: #fff; border-radius: 6px;
  padding: 6px 10px; font-size: 12px; font-family: Arial,sans-serif;
  font-weight: 700; text-align: center; white-space: nowrap; min-width: 80px;
}
.program-info h4 { font-size: 14px; color: var(--text); margin-bottom: 3px; }
.program-info p { font-size: 12px; color: var(--text-muted); }
.program-host { font-size: 11px; color: var(--blue); font-family: Arial,sans-serif; margin-top: 3px; }

/* ============================================================
   PLAYER BAR (fixe en bas)
   ============================================================ */
.player-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--blue-deeper); border-top: 2px solid var(--green-pale);
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.pb-live {
  display: none; align-items: center; gap: 4px;
  background: #c0392b; color: #fff; font-size: 9px; padding: 3px 7px;
  border-radius: 3px; font-weight: 700; font-family: Arial,sans-serif; white-space: nowrap;
}
.pb-btn {
  width: 34px; height: 34px; background: var(--green-pale); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--blue); font-size: 13px; flex-shrink: 0; transition: var(--trans);
}
.pb-btn:hover { background: #d0f0b8; }
.pb-info { flex: 1; min-width: 0; }
.pb-label { font-size: 9px; color: rgba(255,255,255,.5); font-family: Arial,sans-serif; display: block; }
.pb-show { font-size: 12px; color: #fff; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.pb-progress { display: none; flex: 2; }
.pb-track { height: 3px; background: rgba(255,255,255,.2); border-radius: 2px; }
.pb-fill { width: 0%; height: 100%; background: var(--green-pale); border-radius: 2px; transition: width .5s linear; }
.pb-vol { display: none; align-items: center; gap: 6px; }
.pb-vol input[type=range] { width: 70px; accent-color: var(--green-pale); cursor: pointer; }
.pb-close {
  background: none; border: none; color: rgba(255,255,255,.4); cursor: pointer;
  font-size: 14px; flex-shrink: 0; transition: var(--trans); padding: 4px;
}
.pb-close:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--blue-dark); color: #fff; margin-top: 0; }
.footer-main { padding: 30px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }

.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-logo span { font-size: 16px; font-weight: 700; color: var(--green-pale); }
.footer-about p { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 12px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact div { font-size: 12px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 7px; font-family: Arial,sans-serif; }
.footer-contact i { color: var(--green-pale); width: 14px; }

.footer-col h4 {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.8);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-family: Arial,sans-serif;
}
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 7px; transition: var(--trans); font-family: Arial,sans-serif; }
.footer-col a:hover { color: var(--green-pale); }
.footer-col a i { margin-right: 5px; width: 14px; }

.footer-bottom { background: var(--blue-deeper); padding: 10px 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; font-size: 11px; color: rgba(255,255,255,.4); font-family: Arial,sans-serif; }
.footer-bottom-links { display: flex; gap: 10px; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,.4); font-size: 11px; }
.footer-bottom-links a:hover { color: var(--green-pale); }

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.category-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius); margin-bottom: 20px;
  background: var(--blue); color: #fff;
}
.category-header h1 { font-size: 20px; }
.category-header p { font-size: 12px; opacity: .7; margin-top: 3px; }

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-header { margin-bottom: 20px; }
.search-header h1 { font-size: 18px; color: var(--text); }
.search-header span { color: var(--blue); }
.search-form-big { display: flex; gap: 8px; margin-bottom: 20px; }
.search-form-big input {
  flex: 1; border: 1px solid var(--gray-border); border-radius: 6px;
  padding: 10px 14px; font-size: 14px; outline: none;
}
.search-form-big input:focus { border-color: var(--blue); }
.search-form-big button { background: var(--blue); color: #fff; border: none; border-radius: 6px; padding: 10px 18px; cursor: pointer; }

/* ============================================================
   ALERTS & UTILS
   ============================================================ */
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 14px; font-size: 13px; font-family: Arial,sans-serif; }
.alert-success { background: #e8f5e0; color: #1a5c1a; border: 1px solid #b8d4a0; }
.alert-error { background: #fde0e0; color: #8a1a1a; border: 1px solid #f0b0b0; }
.alert-info { background: #e0ecf8; color: #0a3d73; border: 1px solid #b0c8e8; }

.badge-breaking { background: #e82525; color: #fff; font-size: 9px; padding: 2px 7px; border-radius: 3px; font-weight: 700; font-family: Arial,sans-serif; letter-spacing: .5px; }
.badge-featured { background: var(--blue); color: #fff; font-size: 9px; padding: 2px 7px; border-radius: 3px; font-weight: 700; font-family: Arial,sans-serif; }

/* ============================================================
   RESPONSIVE — Tablette 600px+
   ============================================================ */
@media (min-width: 600px) {
  .top-date { display: inline; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .featured-card { display: grid; grid-template-columns: 1fr 1fr; }
  .featured-img { height: auto; }
  .nl-form { flex-direction: row; }
  .nl-form input { flex: 1; }
  .nl-form button { white-space: nowrap; }
  .pb-live { display: flex; }
  .pb-progress { display: block; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   RESPONSIVE — Desktop 900px+
   ============================================================ */
@media (min-width: 900px) {
  .header-search { display: block; }
  .nav-toggle { display: none; }
  .nav-list {
    display: flex !important; flex-direction: row;
    position: static; background: none; border: none;
  }
  .nav-list li a { border-bottom: none; padding: 11px 14px; }
  .nav-list li a.active { border-left: none; border-bottom: 2px solid var(--green-pale); }

  .main-layout { display: grid; grid-template-columns: 1fr 260px; gap: 24px; }
  .sidebar { margin-top: 0; }

  .featured-card { grid-template-columns: 1fr 1.1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .pb-vol { display: flex; }
  .pb-live { display: flex; }
}

/* ============================================================
   RESPONSIVE — Large 1100px+
   ============================================================ */
@media (min-width: 1100px) {
  .article-grid { grid-template-columns: 1fr 1fr 1fr; }
}