/*
Theme Name:     twentytwentyfive_child
Theme URI:      https://artsandprintables.com
Description:    Twentytwentyfive child theme.
Author:         artsandprintables
Author URI:     https://artsandprintables.com
Template:       twentytwentyfive
Version:        0.1.0
*/

/* Linked Cover Block Styles */
.is-style-linked-cover {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.is-style-linked-cover:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.is-style-linked-cover:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Ensure text remains selectable in editor */
.editor-styles-wrapper .is-style-linked-cover {
    cursor: default;
}

/* Prevent nested links from being styled */
.is-style-linked-cover a {
    pointer-events: auto;
}

/* Add a more visible overlay effect on hover */
.is-style-linked-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.4s ease;
    pointer-events: none;
}

.is-style-linked-cover:hover::after {
    background: rgba(255, 255, 255, 0.1);
}

