/* veterinairedesvergers.fr — Retro vet clinic theme (Centravet/GMV style) */

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  background: #e8e8e8;
}

a { color: #C82050; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ------------------------------------------------------------------ */
/* TOPBAR                                                              */
/* ------------------------------------------------------------------ */
.veto__topbar {
  background: #006068;
  padding: 5px 0;
  font-size: 12px;
  color: #fff;
}
.veto__topbar-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}
.veto__search {
  padding: 3px 6px;
  border: 1px solid #ccc;
  font-size: 12px;
  width: 180px;
  border-radius: 2px;
}
.veto__login {
  color: #fff;
  font-size: 12px;
}

/* ------------------------------------------------------------------ */
/* BANNER / HEADER                                                     */
/* ------------------------------------------------------------------ */
.veto__banner {
  background: linear-gradient(135deg, #00959E 0%, #007A82 100%);
  color: #fff;
  padding: 12px 0 0;
}
.veto__banner-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}
.veto__clinic-name {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.veto__clinic-sub {
  font-size: 13px;
  font-style: italic;
  color: #c0f0f0;
  margin-bottom: 6px;
}
.veto__animals-strip {
  height: 50px;
  background: linear-gradient(90deg, #00959E, #00a8b3, #00959E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  letter-spacing: 12px;
  overflow: hidden;
}

/* ------------------------------------------------------------------ */
/* NAVIGATION                                                          */
/* ------------------------------------------------------------------ */
.veto__nav {
  background: linear-gradient(to bottom, #009ea8, #008a93);
  border-bottom: 2px solid #006068;
}
.veto__nav-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  padding: 0 10px;
}
.veto__nav a {
  display: block;
  padding: 7px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.veto__nav a:first-child {
  background: rgba(255,255,255,0.15);
  padding-left: 10px;
}
.veto__nav a:hover {
  background: rgba(255,255,255,0.25);
  text-decoration: none;
}

/* ------------------------------------------------------------------ */
/* LAYOUT                                                              */
/* ------------------------------------------------------------------ */
.veto__page {
  max-width: 980px;
  margin: 0 auto;
  background: #FFFCE8;
  min-height: 600px;
}
.veto__layout {
  display: flex;
  padding: 12px 10px;
  gap: 14px;
}

/* ------------------------------------------------------------------ */
/* SIDEBAR                                                             */
/* ------------------------------------------------------------------ */
.veto__aside {
  width: 230px;
  flex-shrink: 0;
}
.veto__aside-box {
  margin-bottom: 14px;
  border: 1px solid #ccc;
  background: #fff;
}
.veto__aside-box h3 {
  background: linear-gradient(to bottom, #00a8b3, #00959E);
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.veto__aside-box h3::before {
  content: "\2709";
  font-size: 14px;
}
.veto__aside-body {
  padding: 10px;
  font-size: 12px;
  line-height: 1.6;
  background: #FFFEF5;
}
.veto__aside-body a {
  display: block;
  margin: 2px 0;
  padding-left: 8px;
}
.veto__aside-body p {
  margin-bottom: 4px;
}

/* Annonces button */
.veto__annonce-btn {
  display: block;
  background: linear-gradient(to bottom, #e85070, #d03050);
  color: #fff !important;
  text-align: center;
  padding: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  text-decoration: none !important;
}
.veto__annonce-btn:hover {
  background: linear-gradient(to bottom, #d03050, #b82040);
}

/* Diapo box */
.veto__diapo-box h3::before { content: "\1F431"; }
.veto__diapo-img {
  text-align: center;
  padding: 8px;
  background: #fff;
}
.veto__diapo-img span {
  display: block;
  width: 120px;
  height: 100px;
  margin: 0 auto 6px;
  background: #f0e8d8;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.veto__diapo-name {
  color: #C82050;
  font-size: 12px;
  font-weight: bold;
}
.veto__photos-btn {
  display: inline-block;
  background: #333;
  color: #fff !important;
  padding: 3px 10px;
  font-size: 11px;
  border-radius: 3px;
  margin-top: 6px;
  text-decoration: none !important;
}

/* Video box */
.veto__video-box h3::before { content: "\1F3AC"; }

/* ------------------------------------------------------------------ */
/* MAIN CONTENT                                                        */
/* ------------------------------------------------------------------ */
.veto__content {
  flex: 1;
  min-width: 0;
}
.veto__content h1 {
  font-size: 16px;
  color: #00959E;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid #00959E;
}
.veto__content h2 {
  font-size: 14px;
  color: #007A82;
  margin: 14px 0 6px;
}

/* Notice/Rappel box */
.veto__rappel {
  background: #FFF8DC;
  border: 1px solid #e0d8b0;
  border-left: 4px solid #e85070;
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 12px;
  font-style: italic;
}

/* Article body */
.veto__article-body {
  font-size: 13px;
  line-height: 1.65;
}
.veto__article-body p {
  margin-bottom: 10px;
}
.veto__article-body h2 {
  font-size: 14px;
  color: #007A82;
  margin: 16px 0 6px;
  padding-bottom: 3px;
  border-bottom: 1px solid #d0d0d0;
}

/* Tags */
.veto__tags {
  margin-top: 14px;
  padding-top: 8px;
  border-top: 1px solid #d0d0d0;
  font-size: 11px;
  color: #666;
}
.veto__tags span {
  display: inline-block;
  background: #e8f8f8;
  color: #007A82;
  padding: 2px 8px;
  border-radius: 10px;
  margin: 2px 3px 2px 0;
  font-size: 11px;
}

/* Article meta */
.veto__meta {
  font-size: 11px;
  color: #888;
  margin-bottom: 10px;
}

/* Bienvenue header */
.veto__bienvenue {
  display: inline-block;
  background: linear-gradient(to bottom, #00a8b3, #00959E);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 12px;
  margin-bottom: 10px;
  border-radius: 2px;
}

/* Intro text */
.veto__intro {
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.veto__intro p {
  margin-bottom: 8px;
}

/* Section title */
.veto__section-title {
  font-size: 14px;
  color: #fff;
  background: linear-gradient(to bottom, #00a8b3, #00959E);
  padding: 5px 10px;
  margin: 16px 0 10px;
  border-radius: 2px;
}

/* ------------------------------------------------------------------ */
/* SERVICES GRID                                                       */
/* ------------------------------------------------------------------ */
.veto__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.veto__service-card {
  background: #fff;
  border: 1px solid #d0d0d0;
  padding: 10px 8px;
  text-align: center;
  border-radius: 2px;
}
.veto__service-card:hover {
  border-color: #00959E;
  background: #f0fafa;
}
.veto__service-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}
.veto__service-card strong {
  display: block;
  font-size: 12px;
  color: #007A82;
  margin-bottom: 2px;
}
.veto__service-card > span {
  font-size: 11px;
  color: #666;
  line-height: 1.4;
}

/* ------------------------------------------------------------------ */
/* TEAM                                                                */
/* ------------------------------------------------------------------ */
.veto__equipe {
  margin-bottom: 16px;
}
.veto__equipe-membre {
  display: flex;
  gap: 10px;
  padding: 8px;
  margin-bottom: 6px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
}
.veto__equipe-photo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: #f0ece0;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.veto__equipe-info {
  flex: 1;
  min-width: 0;
}
.veto__equipe-info strong {
  display: block;
  font-size: 13px;
  color: #007A82;
}
.veto__equipe-info > span {
  display: block;
  font-size: 12px;
  color: #555;
}
.veto__equipe-detail {
  font-size: 11px !important;
  color: #888 !important;
}

/* ------------------------------------------------------------------ */
/* HORAIRES TABLE                                                      */
/* ------------------------------------------------------------------ */
.veto__horaires-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 6px;
}
.veto__horaires-table th {
  background: linear-gradient(to bottom, #00a8b3, #00959E);
  color: #fff;
  padding: 5px 8px;
  text-align: left;
  font-size: 12px;
}
.veto__horaires-table td {
  padding: 4px 8px;
  border-bottom: 1px solid #e0e0e0;
}
.veto__horaires-table tbody tr:nth-child(even) {
  background: #f8f8f0;
}
.veto__horaires-table tbody tr:hover {
  background: #f0fafa;
}
.veto__ferme {
  color: #C82050;
  font-style: italic;
}

/* ------------------------------------------------------------------ */
/* CONSEILS (limited display on homepage)                              */
/* ------------------------------------------------------------------ */
.veto__conseils article:nth-child(n+7) {
  display: none;
}

/* ------------------------------------------------------------------ */
/* ARTICLE CARDS (homepage listing)                                    */
/* ------------------------------------------------------------------ */
.veto__conseils article,
.veto__content > article {
  padding: 10px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}
.veto__conseils article h2,
.veto__content > article h2 {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 4px;
  border: none;
  padding: 0;
}
.veto__conseils article h2 a,
.veto__content > article h2 a {
  color: #C82050;
}
.veto__conseils article time,
.veto__content > article time {
  font-size: 11px;
  color: #888;
  display: block;
  margin-bottom: 6px;
}
.veto__conseils article > p,
.veto__content > article > p {
  font-size: 12px;
  color: #555;
  margin-bottom: 6px;
  line-height: 1.5;
}
.veto__conseils article > a,
.veto__content > article > a {
  display: inline-block;
  background: #333;
  color: #fff !important;
  padding: 3px 10px;
  font-size: 11px;
  border-radius: 3px;
  text-decoration: none !important;
  float: right;
}
.veto__conseils article > a:hover,
.veto__content > article > a:hover {
  background: #00959E;
}

/* Category section on homepage */
.veto__cat-section {
  margin-bottom: 16px;
}
.veto__cat-title {
  background: linear-gradient(to bottom, #00a8b3, #00959E);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 10px;
  margin-bottom: 8px;
  display: inline-block;
  border-radius: 2px;
}

/* ------------------------------------------------------------------ */
/* URGENCES BOX                                                        */
/* ------------------------------------------------------------------ */
.veto__urgences {
  background: #C82050;
  color: #fff;
  padding: 12px;
  text-align: center;
  margin-bottom: 14px;
  border-radius: 4px;
}
.veto__urgences strong {
  display: block;
  font-size: 16px;
}
.veto__urgences span {
  font-size: 12px;
  text-decoration: underline;
}
.veto__urgences .veto__tel {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-top: 4px;
}

/* ------------------------------------------------------------------ */
/* RELATED ARTICLES                                                    */
/* ------------------------------------------------------------------ */
.related {
  margin-top: 16px;
  padding: 10px;
  background: #f0fafa;
  border: 1px solid #d0e8e8;
  border-radius: 3px;
}
.related h3 {
  font-size: 13px;
  color: #007A82;
  margin-bottom: 6px;
}
.related ul {
  list-style: none;
  padding: 0;
}
.related li {
  padding: 3px 0;
  font-size: 12px;
}
.related li::before {
  content: "\27A4 ";
  color: #00959E;
}

/* ------------------------------------------------------------------ */
/* FOOTER                                                              */
/* ------------------------------------------------------------------ */
.veto__footer-bar {
  background: #006068;
  color: #ccc;
  padding: 8px 0;
  font-size: 11px;
  text-align: center;
  border-bottom: 1px solid #004850;
}
.veto__footer-bar a {
  color: #90d0d0;
  margin: 0 8px;
}
.veto__footer {
  background: #003840;
  color: #aaa;
  padding: 16px 0 10px;
  font-size: 11px;
}
.veto__footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  gap: 30px;
}
.veto__footer-col {
  flex: 1;
}
.veto__footer-col h4 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.veto__footer-col a {
  display: block;
  color: #90b0b0;
  font-size: 11px;
  padding: 1px 0 1px 8px;
}
.veto__footer-col a:hover {
  color: #fff;
}
.veto__footer-copy {
  max-width: 980px;
  margin: 10px auto 0;
  padding: 8px 10px 0;
  border-top: 1px solid #004850;
  text-align: right;
  font-size: 10px;
  color: #667;
}
.veto__footer-copy a {
  color: #90b0b0;
}

/* ------------------------------------------------------------------ */
/* RESPONSIVE                                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 768px) {
  .veto__layout {
    flex-direction: column;
  }
  .veto__aside {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .veto__aside-box {
    flex: 1;
    min-width: 200px;
  }
  .veto__footer-inner {
    flex-direction: column;
    gap: 14px;
  }
  .veto__conseils article,
  .veto__content > article {
    padding: 8px;
  }
  .veto__services {
    grid-template-columns: repeat(2, 1fr);
  }
  .veto__equipe-membre {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .veto__nav-inner {
    flex-wrap: wrap;
  }
}
