/* -----------------------------------------------------------------------------
   Cards — base card overrides and reusable card patterns
----------------------------------------------------------------------------- */

/* --- BASE IMAGE & CARD (Bulma overrides) --- */
.custom-image {
    border-radius: var(--radius-small);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 0;
}
.custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card {
    border-radius: var(--radius-small-card);
    height: 100%;
}
.card-image:last-child img, .card-image:first-child img {
    border-top-left-radius: var(--radius-small);
    border-top-right-radius: var(--radius-small);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


/* --- VALUE PROPOSITION CARDS --- */
/* Used in overview/home and any section requiring icon + title + description layout */
.value-strip {
    background: white;
    padding: 4rem 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.2s ease;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--neutral-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.value-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.value-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Cascade animation delays for value-strip children */
.value-strip .fade-in-section:nth-child(1) { transition-delay: 0s; }
.value-strip .fade-in-section:nth-child(2) { transition-delay: 0.15s; }
.value-strip .fade-in-section:nth-child(3) { transition-delay: 0.3s; }
