.opp-header {
    padding: 28px 44px;
}

.opp-header h1 {
    color: var(--primary-color);
    font-size: 40px;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.opp-header-links {
    display: flex;
    flex-direction: row;
}

.opp-header-links a {
    margin-right: 16px;
}

.opp-header-links a:last-child {
    margin-right: 0px;
}

.opp-filters {
    padding: 28px 44px;
}

.opp-filters-inputs {
    display: flex;
    flex-direction: row;
}

.opp-filters-buttons {
    display: flex;
    flex-direction: row;
}

.opp-filters-buttons a {
    margin-right: 12px;
}

.opp-filters-buttons a:last-child {
    margin-right: 0;
}

.opp-content {
    display: flex;
    flex-direction: row;
    padding: 28px 44px;
}

.opp-content-cards {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 358px;
    margin-right: 41px;
}

.opp-card {
    display: flex;
    flex-direction: column;
    background-color: var(--cream);
    padding: 12px 16px;
    margin-bottom: 40px;
}

.opp-card:last-child {
    margin-bottom: 0;
}

.opp-card h3 {
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 4px;
}

.opp-card h6 {
    margin: 0 0 11px;
    font-weight: 600;
}

.opp-card p {
    margin: 0 0 4px;
}

.opp-card span {
    margin: 0 0 12px;
    font-weight: bold;
    color: #00808C;
}

.pagination {
    padding: 0 44px;
    margin: 0 0 85px;
}

@media only screen and (max-width: 768px) {
    .opp-header {
        padding: 26px 15px;
    }
    .opp-header-links {
        flex-direction: column;
    }

    .opp-header-links a {
        margin: 0 0 16px;
    }

    .opp-filters {
        padding: 26px 15px;
    }

    .opp-filters-inputs {
        flex-wrap: wrap;
    }

    .opp-filters-buttons {
        justify-content: space-between;
    }

    .opp-filters-buttons a {
        width: 159px;
    }

    .opp-content {
        flex-direction: column-reverse;
        padding: 0;
    }

    .opp-content-cards {
        padding: 26px 15px;
        margin: 0;
        max-width: none;
    }

    .opp-card {
        margin-bottom: 20px;
    }

    .pagination {
        padding: 26px 15px;
        margin: 0 0 60px;
    }
}