/* =========================
HUMAN RIGHTS OBJECTIVES
========================= */

.hrsj-objectives-section {
    padding: 80px 5%;
    background: #f9f9f9;
}

.hrsj-container {
    max-width: 1200px;
    margin: auto;
}

.hrsj-header {
    text-align: center;
    margin-bottom: 50px;
}

.hrsj-header h2 {
    font-size: 2.5rem;
    color: #b11226;
    margin-bottom: 10px;
}

.hrsj-header p {
    max-width: 750px;
    margin: auto;
    line-height: 1.7;
    color: #555;
}


/* Cards */

.hrsj-objectives-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.hrsj-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.hrsj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hrsj-card i {
    font-size: 40px;
    color: #b11226;
    margin-bottom: 15px;
}

.hrsj-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.hrsj-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}


/* =========================
EMAIL CONTACT SECTION
========================= */

.hrsj-enroll {
    max-width: 900px;
    margin: 80px auto;
    padding: 50px 30px;
    text-align: center;
    background: #fff5f5;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hrsj-enroll h3 {
    font-size: 1.8rem;
    color: #b11226;
    margin-bottom: 15px;
}

.hrsj-enroll p {
    max-width: 650px;
    margin: auto;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}


/* Email Buttons */

.hrsj-email-buttons a {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    background: #b11226;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.hrsj-email-buttons a:hover {
    background: #7a0c18;
}

.hrsj-email-buttons a.outline {
    background: transparent;
    border: 2px solid #b11226;
    color: #b11226;
}

.hrsj-email-buttons a.outline:hover {
    background: #b11226;
    color: white;
}


/* =========================
REPORT HUMAN RIGHTS VIOLATION
========================= */

.hrsj-report {
    padding: 70px 5%;
    background: #ffffff;
    color: rgb(0, 0, 0);
    text-align: center;
}

.hrsj-report-container {
    max-width: 750px;
    margin: auto;
}

.hrsj-report h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hrsj-report p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
}


/* Button */

.report-btn {
    background: #b11226;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.report-btn:hover {
    background: #ffe5e5;
    transform: translateY(-2px);
}


/* =========================
MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {
    /* Section spacing */
    .hrsj-objectives-section {
        padding: 60px 6%;
    }
    /* Header */
    .hrsj-header h2 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    .hrsj-header p {
        font-size: 0.95rem;
    }
    /* Cards layout */
    .hrsj-objectives-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    /* Card */
    .hrsj-card {
        padding: 30px 20px;
    }
    .hrsj-card i {
        font-size: 34px;
    }
    .hrsj-card h3 {
        font-size: 1.2rem;
    }
    .hrsj-card p {
        font-size: 0.9rem;
    }
    /* Email section */
    .hrsj-enroll {
        margin: 60px 15px;
        padding: 35px 20px;
    }
    .hrsj-enroll h3 {
        font-size: 1.5rem;
    }
    .hrsj-enroll p {
        font-size: 0.95rem;
    }
    /* Email buttons */
    .hrsj-email-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .hrsj-email-buttons a {
        width: 100%;
        max-width: 260px;
        padding: 14px 20px;
        font-size: 0.95rem;
        margin: 0;
    }
    /* Report Section */
    .hrsj-report {
        padding: 60px 6%;
    }
    .hrsj-report h3 {
        font-size: 1.6rem;
    }
    .hrsj-report p {
        font-size: 0.95rem;
    }
    /* Report button */
    .report-btn {
        width: 100%;
        max-width: 260px;
        padding: 15px;
        font-size: 0.95rem;
    }
}