.award {
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px 25px 15px;
    max-width: 260px;
    min-height: 170px;
}

.award::after {
    content: "";
    position: absolute;
    width: calc(100% - 21px);
    height: calc(100% - 18px);
    top: 8px;
    left: 10px;
    border: 1px solid #b0b0b0;
    pointer-events: none;
}

.award h4,
.award h5,
.award h6 {
    width: 100%;
}

.award h4 {
    font-family:"poynter-oldstyle-text", serif;
    font-size: 27.5px;
    line-height: 1em;
    letter-spacing: 0.1em;
    color: #ceae6a;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.award h5 {
    font-family:"poynter-oldstyle-text", serif;
    font-size: 17.36px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 6px;
    line-height: 1.35em;
}

.award h6 {
    font-size: 14.46px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    color: #303030;
}

@media screen and (min-width: 64em) {
    .award {
        max-width: 357px;
        min-height: 234px;
        padding: 22px 34px;
    }
    .award::after {
        width: calc(100% - 27px);
        height: calc(100% - 24px);
        top: 12px;
        left: 14px;
    }
    .award h4 {
        font-size: 40.67px;
        line-height: 1em;
        margin-bottom: 11px;
    }

    .award h5 {
        font-size: 24px;
        line-height: 1.25em;
        margin-bottom: 8px;
    }

    .award h6 {
        font-size: 20px;
        text-transform: uppercase;
    }
}