/* =====================================================
   Aurora-Garten – Button 3 (Slim Footer)
===================================================== */

.button_3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px 14px;        /* deutlich kleiner */
    border-radius: 5px;

    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;

    font-weight: 500;
    font-size: 13px;

    transition: all 0.2s ease;
}

.button_3:hover {
    background-color: #6FAE45;
    transform: translateY(-1px);
}