a[href$=".pdf"]:after {
    content: '';
}

a[href$=".pdf"] span:last-child:after {
    font-weight: 400;
    content: "";
    font-family: "Font Awesome 5 Pro";
    padding: 0 0 0 6px;
}

.home .button-group {
    margin-bottom: 40px;
}

/*Donor Story Card Feature Styles*/
.story-card-grid ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    margin: 0;
}

.story-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    gap: 20px;
    width: 47%;
    padding: 20px 1.5%;
    margin: 2% 1%;
    background-color: #EEE;
    border: 2px solid #DDD;
    list-style: none;
}

.story-card__type-of-gift:before {
    height: 0;
}

.story-card .story-card__type-of-gift {
    order: 2;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 1rem;
}

.story-card__type-of-gift-label {
    display: block;
    font-size: small;
    font-style: italic;
    color: #74000e;
    margin: 10px 0 5px 0;
}

.story-card__summary {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.story-card__summary-col-1 {
    min-width: 120px;
}

.story-card__intro {
    font-size: 15px;
    line-height: normal;
    font-style: italic;
    margin-bottom: 20px;
}

.story-card__button {
    width: 100%;
}

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

@media (max-width: 568px) {

    .story-card-grid ul {
        gap: 20px;
    }

    .story-card {
        width: 100%;
        margin: 0;
        padding: 20px;
    }

    .story-card__summary-col-1 {
        display: flex;
        gap: 15px;
    }
}

/*end of story card styles*/