/* Premium Editorial NGO Card — 01c89a3e */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Playfair+Display:wght@500;600&display=swap');

.penc-card-01c89a3e {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 50px -6px rgba(0, 0, 0, 0.2);
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.penc-card-01c89a3e:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px -10px rgba(0, 0, 0, 0.28);
}

/* ── Full-Bleed Background Image ── */
.penc-image-bg-01c89a3e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.penc-card-01c89a3e:hover .penc-image-bg-01c89a3e {
    transform: scale(1.05);
}

/* ── Gradient Overlay ── */
.penc-overlay-01c89a3e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.penc-card-01c89a3e:hover .penc-overlay-01c89a3e {
    opacity: 0.9;
}

/* ── Content ── */
.penc-content-01c89a3e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    box-sizing: border-box;
}

/* ── Heading — top left ── */
.penc-heading-01c89a3e {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.25;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    max-width: 80%;
}

/* ── Button Row — bottom ── */
.penc-btn-row-01c89a3e {
    display: flex;
    align-items: center;
    justify-content: stretch;
    margin-top: auto;
}

.penc-btn-01c89a3e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    padding: 14px 16px 14px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.4s ease;
}

.penc-btn-01c89a3e:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.penc-btn-text-01c89a3e {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.penc-btn-arrow-01c89a3e {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    flex-shrink: 0;
    transition: background-color 0.4s ease,
                transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.penc-btn-arrow-01c89a3e svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.penc-card-01c89a3e:hover .penc-btn-arrow-01c89a3e {
    background-color: rgba(255, 255, 255, 0.3);
}

.penc-card-01c89a3e:hover .penc-btn-arrow-01c89a3e svg {
    transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .penc-card-01c89a3e {
        height: 380px;
    }

    .penc-content-01c89a3e {
        padding: 24px;
    }

    .penc-heading-01c89a3e {
        font-size: 22px;
        max-width: 90%;
    }

    .penc-btn-01c89a3e {
        padding: 12px 14px 12px 18px;
    }
}
