/*
Theme Name: Hello Elementor Child
Theme URI: https://houstonheights.org
Description: Child theme for Hello Elementor
Author: HHA
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

@import url("../hello-elementor/style.css");

:root {
    --tec-color-text-primary: #424A53;
    --tec-font-family-sans-serif: "IBM Plex Sans", sans-serif;
    --tec-font-weight-bold: 600;
}
/* HHA Events Grid */
.hha-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.hha-event-card {
    text-decoration: none;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s ease;
}

.hha-event-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.hha-event-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.hha-event-info {
    padding: 16px;
}

.hha-event-date {
    display: block;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #188671;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.hha-event-title {
    font-family: 'Newsreader', serif;
    font-size: 20px;
    font-weight: 400;
    color: #424A53;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .hha-events-grid {
        grid-template-columns: 1fr;
    }
}