/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

.single-post .entry-header {
    margin-top: 0;
    padding-top: 0;
}



.card {
    overflow: hidden; /* verhindert, dass das Bild über die Card hinausgeht */
    border-radius: 8px; /* optional, für abgerundete Ecken */
}

    .card img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease; /* sanfter Zoom */
    }

        .card img:hover {
            transform: scale(1.1); /* Zoomfaktor */
            cursor: pointer;
        }


