/*
Theme Name: Weld GOP Civic Broadside
Theme URI: https://weldcountygop.com/
Description: Civic Broadside child theme for the Weld County Republicans, built on Ollie.
Author: Weld County Republican Central Committee
Author URI: https://weldcountygop.com/
Template:     ollie
Version: 1.0.1
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         blog, portfolio, entertainment, grid-layout, one-column, two-columns, three-columns, four-columns, block-patterns, block-styles, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, full-width-template, rtl-language-support, style-variations, template-editing, theme-options, translation-ready, wide-blocks
Text Domain: ollie-child
*/

/* Selected involvement page cards: crop the hero toward the illustrated right side. */
.wcg-involvement-page-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}
.wcg-involvement-page-card {
    min-width: 0;
    background: #fff;
    border-bottom: 3px solid #17264b;
}
.wcg-involvement-card-link {
    display: block;
    height: 100%;
    color: #17264b;
    text-decoration: none;
}
.wcg-involvement-card-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f8e8d0;
}
.wcg-involvement-card-media .wcg-involvement-card-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: 100% 50%;
}
.wcg-involvement-card-title {
    margin: 0;
    padding: 20px 22px 24px;
    color: #17264b;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.3;
}
.wcg-involvement-card-link:hover .wcg-involvement-card-title {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.wcg-involvement-card-link:focus-visible {
    outline: 3px solid #e20b17;
    outline-offset: 4px;
}
@media (max-width: 900px) {
    .wcg-involvement-page-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .wcg-involvement-page-cards {
        grid-template-columns: minmax(0, 1fr);
    }
}

