/* ==========================================================
   PETSCOMPARE - CONSEILS VETO (articles editoriaux)
   ========================================================== */

/* === INDEX === */
.conseils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.conseil-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f3e8d0;
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
}
.conseil-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    text-decoration: none;
}

.conseil-card-emoji {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fefaf2 0%, #fff7ed 100%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conseil-card-body {
    flex: 1;
}

.conseil-card-title {
    font-family: 'Fraunces', 'Georgia', serif;
    font-size: 1.15rem;
    color: #1f2937;
    margin: 0 0 .5rem;
    line-height: 1.3;
    letter-spacing: -.01em;
}

.conseil-card-desc {
    color: #4b5563;
    font-size: .9rem;
    line-height: 1.5;
    margin: 0 0 .75rem;
}

.conseil-card-cta {
    color: #047857;
    font-weight: 600;
    font-size: .9rem;
}

.conseils-disclaimer {
    background: linear-gradient(135deg, #fefaf2 0%, #fff7ed 100%);
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0 3rem;
}
.conseils-disclaimer p {
    margin: 0;
    color: #92400e;
    font-size: .92rem;
    line-height: 1.6;
}

/* === ARTICLE === */
.conseil-article {
    max-width: 760px;
    margin: 1rem auto 3rem;
}

.conseil-article-hero {
    text-align: center;
    padding: 2rem 1rem 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f3e8d0;
}

.conseil-article-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.conseil-article-overline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #047857;
    font-weight: 600;
}

.conseil-article-h1 {
    font-family: 'Fraunces', 'Georgia', serif;
    font-size: 2.1rem;
    line-height: 1.2;
    color: #1f2937;
    margin: .75rem auto 1rem;
    max-width: 640px;
    letter-spacing: -.015em;
    font-weight: 600;
}

.conseil-article-intro {
    font-size: 1.08rem;
    line-height: 1.65;
    color: #374151;
    max-width: 620px;
    margin: 0 auto 1.25rem;
}

.conseil-article-meta {
    display: inline-flex;
    gap: .65rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6b7280;
}

/* Article body */
.conseil-article-body {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #1f2937;
}

.conseil-section {
    margin-bottom: 2.25rem;
}

.conseil-section h2 {
    font-family: 'Fraunces', 'Georgia', serif;
    font-size: 1.5rem;
    color: #047857;
    margin: 0 0 .85rem;
    letter-spacing: -.01em;
    font-weight: 600;
    line-height: 1.3;
}

.conseil-section p {
    margin: 0 0 1rem;
}

.conseil-section ul,
.conseil-section ol {
    margin: 0 0 1.25rem;
    padding-left: 1.4rem;
}

.conseil-section ul li,
.conseil-section ol li {
    margin-bottom: .55rem;
    line-height: 1.65;
}

.conseil-section strong { color: #047857; }
.conseil-section em { color: #6b7280; font-size: .94rem; }

/* Produits associés */
.conseil-related-products {
    margin: 3rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #f3e8d0;
}

.conseil-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.conseil-related-card {
    background: #fff;
    border: 1px solid #f3e8d0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.conseil-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    text-decoration: none;
}

.conseil-related-img {
    aspect-ratio: 4 / 3;
    background: #f9fafb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.conseil-related-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.conseil-related-info {
    padding: 12px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.conseil-related-name {
    font-family: 'Fraunces', serif;
    font-size: 14.5px;
    line-height: 1.35;
    margin: 0 0 .5rem;
    color: #1f2937;
}

.conseil-related-price {
    color: #4b5563;
    font-size: 13px;
}
.conseil-related-price strong {
    color: #047857;
    font-size: 16px;
}
.conseil-related-price span {
    display: block;
    color: #6b7280;
    font-size: 11.5px;
    margin-top: 2px;
}

.conseil-related-savings {
    display: inline-block;
    margin-top: .5rem;
    background: #d1fae5;
    color: #065f46;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

/* Autres articles */
.conseil-other-articles {
    margin: 3rem 0 2rem;
}
.conseil-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}
.conseil-other-card {
    display: flex;
    gap: .85rem;
    padding: 1rem 1.15rem;
    background: #fefaf2;
    border-radius: 10px;
    border: 1px solid #f3e8d0;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}
.conseil-other-card:hover {
    background: #fff7ed;
    text-decoration: none;
}
.conseil-other-emoji {
    font-size: 1.85rem;
    flex-shrink: 0;
}
.conseil-other-title {
    font-family: 'Fraunces', serif;
    font-size: 14.5px;
    margin: 0 0 .35rem;
    color: #1f2937;
    line-height: 1.3;
}
.conseil-other-desc {
    color: #6b7280;
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0 0 .35rem;
}
.conseil-other-cta {
    color: #047857;
    font-weight: 600;
    font-size: .8rem;
}

/* Footer article */
.conseil-article-footer {
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #fefaf2 0%, #fff7ed 100%);
    border-radius: 12px;
    border: 1px solid #fde68a;
}
.conseil-article-footer p {
    color: #92400e;
    font-size: .92rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}
.conseil-back-link {
    color: #047857;
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
}
.conseil-back-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .conseil-article-h1 { font-size: 1.6rem; }
    .conseil-article-intro { font-size: 1rem; }
    .conseil-section h2 { font-size: 1.25rem; }
    .conseil-article-body { font-size: .98rem; }
    .conseil-card { padding: 1.15rem; }
    .conseil-card-emoji { width: 50px; height: 50px; font-size: 2rem; }
    .conseil-card-title { font-size: 1.05rem; }
    .conseil-article-emoji { font-size: 3rem; }
}
