section {
    display: flex;
    flex-direction: column;
    padding: 20px;
    min-height: 80vh;
}

.page_header {
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .8px;
}

.scholarship_wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.scholarship {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* background: linear-gradient(to top right, #e6ffe6, #f9fff9); */
    padding: 20px;
    border-radius: 8px;
    border: .5px solid #d7d7d7;
    transition: .2s ease;
    background: #fdfdfd;
}

.scholarship:hover {
    border-color: #acacac;
}

.scholarship h1 {
    font-weight: 500;
    font-size: 24px;
    color: var(--primary-text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.amount_dealine {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.amount_dealine div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.amount_dealine div span {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
    color: var(--primary-text-color);
}

.amount_dealine h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;    
    text-transform: capitalize;
    letter-spacing: .5px;
    font-weight: 400;
    color: #6d6d6d;
}

.amount_dealine h2 img {
    width: 15px;
    height: 15px;
}

.short_descripition {
    font-size: 14px;
    letter-spacing: .5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #6d6d6d;
}

.action_btn {
    display: flex;
    gap: 10px;
}

.action_btn a {
    flex-grow: 1;
    border-radius: 4px;
    padding: 8px;
    text-align: center;
    text-transform: capitalize;
    font-size: 14px;
    letter-spacing: .5px;
    transition: .2s ease;
}

.action_btn>:nth-child(1) {
    background: #efefef;
    color: #6d6d6d;
}

.action_btn>:nth-child(1):hover {
    background: #dddddd;
}

.action_btn>:nth-child(2) {
    background: var(--active1);
    color: #fff;
}

.action_btn>:nth-child(2):hover {
    background: var(--hover);
}

.more-scholarship {
    border: none;
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    background: #eeeeee;
    color: var(--active1);
    font-weight: 500;
    letter-spacing: .5px;
    transition: .2s ease;
}

.more-scholarship:hover {
    background: #e7e7e7;
}

.more-scholarship::first-letter {
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* @media (min-width: 680px) {
} */

@media (min-width: 800px) {
    .scholarship_wrapper {
        display: grid;
        grid-template-columns: 2fr 2fr;
    }
}
/* 
@media (min-width: 1200px) {
} */
