﻿
.helping-ways::before {
    background-color: orange;
}

.card {
    background: white;
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card-header {
    background: #ff9800;
    padding: 40px 30px;
    position: relative;
    height: 120px;
}

    .card-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 200px;
        height: 100%;
        background: #f57c00;
        clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    }

    .card-header h2 {
        position: relative;
        z-index: 1;
        color: white;
        font-size: 23px;
        font-weight: 600;
        line-height: 1.3;
    }

.card-body {
    padding: 30px;
}

    .card-body p {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
    }

    .card-body p {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: 0.3s ease;
    }

    .card-body.expanded p {
        -webkit-line-clamp: unset;
    }

.read-more-btn {
    margin-top: 10px;
    color: #ff8b00;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    user-select: none;
}

.get-involved-section {
    margin: 0px !important;
    padding: 0px !important;
    margin-top: 50px !important;
}

@media (max-width: 992px) {
    .get-involved-title {
        margin: 0px !important;
        font-size: 23px !important;
    }

    .get-involved-sub-title {
        font-size: 14px !important;
    }
}
