/*
 Theme Name:   Abisko Child	
 Description:  Mein Child Themes
 Author:       Thomas Schaller / Anders Norén
 Author URI:   httpw://www.photokram.ch
 Template:     abisko
 Version:      1.0
 Text Domain:  abisko
*/



/* --------------- ----------------------------------------- */
/* Rahmen und Zoom bei den Beitragsbilder auf der Startseite */
/* --------------- ----------------------------------------- */
.wp-block-post-featured-image a {
    display: block;
    overflow: hidden;
    border-style: solid;
    border-width: 0.3em;
    border-color: #6C0202;
    position: relative;
}

.wp-block-post-featured-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(109, 107, 107, 0.3); /* Leichter grauer Overlay */
    transition: background 0.5s ease;
    z-index: 1;
}

.wp-block-post-featured-image a:hover::before {
    background: rgba(0, 0, 0, 0); /* Overlay entfernen beim Hovern */
}

.wp-block-post-featured-image a:hover img {
    transform: scale(1.2);
    transition: transform 0.5s ease;
    z-index: 0;
}
/* --------------- ----------------------------------------- */
/* ---------------      E N D E       ---------------------- */
/* --------------- ----------------------------------------- */