.annonceur-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fafafa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.annonceur-photo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #ddd;
}

.annonceur-content {
    flex: 1;
}

.annonceur-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.annonceur-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.annonceur-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0070ba;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
    float: right;
}

.annonceur-btn:hover {
    background: #005c95;
}