/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 24 2026 | 14:42:58 */
.google-preferred-source {
    margin: 25px 0;
}

.google-preferred-source a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 16px 24px;
    border: 2px solid #cfcfcf;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: all .25s ease;
}

.google-logo {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    transition: transform .25s ease;
}

.google-preferred-source a:hover {
    transform: translateY(-3px);
    border-color: #4285F4;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.15);
    background: linear-gradient(
        90deg,
        rgba(66,133,244,.05),
        rgba(52,168,83,.05)
    );
}

.google-preferred-source a:hover .google-logo {
    transform: scale(1.12) rotate(5deg);
}

.google-preferred-source a:hover span {
    color: #4285F4;
}

/* Tablette */
@media (max-width: 768px) {
    .google-preferred-source a {
        padding: 14px 18px;
        gap: 12px;
        font-size: 16px;
    }

    .google-logo {
        width: 32px;
        height: 32px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .google-preferred-source {
        margin: 20px 0;
    }

    .google-preferred-source a {
        padding: 13px 16px;
        gap: 10px;
        font-size: 14px;
        line-height: 1.3;
    }

    .google-logo {
        width: 28px;
        height: 28px;
    }
}