.ashg-grid-da37076f {
    display: grid;
    gap: 1.25rem;
    width: 100%;
}

.ashg-card-da37076f {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background-size: cover !important;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.35s ease-out;
}

/* Background image scale effect */
.ashg-card-da37076f:hover {
    background-size: 106%;
}

/* Gradient Overlay */
.ashg-card-da37076f::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.92) 100%);
    transition: background 0.35s ease-out;
    z-index: 1;
}

.ashg-card-da37076f:hover::before {
    background: linear-gradient(to bottom, transparent 15%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.97) 100%);
}

.ashg-content-da37076f {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.75rem 1.75rem 2rem 1.75rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.ashg-number-da37076f {
    font-family: serif;
    color: #d4af37; /* gold */
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.ashg-title-da37076f {
    font-family: serif;
    color: #f8f9fa; /* off-white */
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}

/* Description - Now visible by default! */
.ashg-desc-da37076f {
    font-family: sans-serif;
    color: #d3d3d3; /* muted light gray */
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    opacity: 1;
    transform: translateY(0);
}

/* Link - Still hidden by default */
.ashg-link-da37076f {
    font-family: sans-serif;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease-out;
    transition-delay: 0.05s;
    pointer-events: auto; /* Allow independent click */
}

.ashg-card-da37076f:hover .ashg-link-da37076f {
    opacity: 0.5;
    transform: translateY(0);
}

/* Full card link fallback layer */
.ashg-card-link-da37076f {
    position: absolute;
    inset: 0;
    z-index: 1;
}