/* =======================================
   Footer
======================================= */

footer {
    width: 100%; max-width: 1200px;
    border: 1px solid #333;
    background-color: #595959;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.Footer-block .subrow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.Footer-block .subcol {
    background: #595959;
    border: none;
    color: #fff;
    padding: 12px;
    font-size: 14px;
    text-align: left;
}

.footer-img {
    max-width: 345px;
    height: auto;
    margin-top: 4px;
    display: block;
}

.footer-img:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 1200px) {
    footer {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .Footer-block .subrow {
        grid-template-columns: 1fr;
    }

    .footer-img {
        max-width: 120px;
        margin: 0 auto;
    }
}

/* Mailadresse im Footer gelb wie Navigation */
	footer p a:link,
	footer p a:visited {
    color: #ffcc00 !important;
    text-decoration: none;
}

footer p a:hover,
footer p a:active {
    color: #ffffff !important;
}

