/**
 * Public CSS for City Content Factory
 */

.ccf-cta {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2271b1;
    margin: 30px 0;
}

.ccf-cta p {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.ccf-cta p:last-child {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: normal;
    color: #666;
}

.ccf-internal-links {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ccf-internal-links h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.ccf-internal-links ul {
    list-style: disc;
    margin-left: 20px;
}

.ccf-internal-links li {
    margin-bottom: 8px;
}

/* ─── Tableaux générés par les modèles ──────────────────────────────────────── */
.ccf-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    border-radius: 6px;
    overflow: hidden;
}
.ccf-table th,
.ccf-table td {
    border: 1px solid #e0e0e0;
    padding: 10px 14px;
    text-align: left;
}
.ccf-table .ccf-table-header th {
    background: #2271b1;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.ccf-table tr:nth-child(even) td {
    background: #f8f9fa;
}
.ccf-table tr:hover td {
    background: #eef4fb;
}

/* ─── Images des articles ────────────────────────────────────────────────────── */
.ccf-article-image,
.ccf-model-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}
.ccf-image-caption {
    display: block;
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 6px;
    font-style: italic;
}

/* ─── CTA bouton ─────────────────────────────────────────────────────────────── */
.ccf-cta .button,
p.ccf-cta a.button {
    display: inline-block;
    background: #2271b1;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background .2s;
}
.ccf-cta .button:hover,
p.ccf-cta a.button:hover {
    background: #135e96;
    color: #fff;
}
