/* Initiatives V2 - High Contrast & Modern Grid */

.premium-initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.initiative-card {
    background: #ffffff;
    border-radius: 8px;
    /* Sharper corners for modern look */
    padding: 25px;
    position: relative;
    /* Soft shadow but distinct */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
    min-height: 160px;
    overflow: hidden;
}

/* Hover State: Lift and Gold Border */
.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--brand-accent);
    /* Gold Border */
}

/* Large Faded Number */
.init-num {
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 6rem;
    /* Very large */
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    /* Barely visible gray */
    line-height: 1;
    z-index: 0;
    transition: all 0.3s;
}

.initiative-card:hover .init-num {
    color: rgba(212, 175, 55, 0.1);
    /* Gold tint on hover */
    transform: scale(1.1);
}

/* Title */
.initiative-card h4 {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    /* Dark Grey for readability */
    margin: 0;
    text-align: right;
    transition: color 0.3s;
    border-right: 3px solid transparent;
    padding-right: 10px;
}

.initiative-card:hover h4 {
    color: var(--brand-primary);
    /* Red on hover */
    border-right-color: var(--brand-accent);
    /* Gold accent line */
}

/* Section Background Adjustment */
.bg-pattern-dots {
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}