/* Volunteer Page Blocks */

.volunteer-block {
    padding: 0;
    margin: 0;
}

.volunteer-card {
    display: flex;
    align-items: stretch;
    min-height: 450px;
}

.volunteer-card-body {
    width: 50%;
    flex-shrink: 0;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volunteer-card-inner {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
}

.volunteer-card-inner h2 {
    font: 700 36px/1.2em 'Montserrat', sans-serif;
    color: #000;
    margin: 0 0 25px 0;
}

.volunteer-card-inner h2 a {
    color: #000;
    text-decoration: underline;
}

.volunteer-card-inner h2 a:hover {
    color: #f24c4c;
}

.volunteer-card-inner h3 {
    font: 700 24px/1.3em 'Montserrat', sans-serif;
    color: #000;
    margin: 25px 0 10px 0;
}

.volunteer-card-text p {
    font: 400 16px/1.7em 'Montserrat', sans-serif;
    color: #333;
    margin: 0 0 14px 0;
    text-align: left;
}

.volunteer-card-text ul {
    margin: 0 0 15px 20px;
    padding: 0;
}

.volunteer-card-text ul li {
    font: 400 16px/1.7em 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 4px;
}

.volunteer-card-text strong {
    font-weight: 700;
}

.volunteer-card-img {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.volunteer-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.volunteer-block + .clr {
    display: none !important;
}

@media (max-width: 768px) {
    .volunteer-card {
        flex-direction: column;
    }

    .volunteer-card-body {
        width: 100%;
        padding: 30px 20px;
    }

    .volunteer-card-inner {
        width: 100%;
    }

    .volunteer-card-img {
        width: 100%;
        min-height: 250px;
    }

    .volunteer-card-inner h2 {
        font-size: 26px;
    }
}
