.text-card {
    position: relative;
    z-index: 1;
    color: #fff;
}

.text-card .image img {
    width: 100%;
    display: block;
}

.text-card .content {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px 37px 43px;
}

.text-card h4 {
    margin: 0 0 12px;
    font-size: 31px;
    line-height: 1.1;
}

.text-card .text {
    min-height: 71px;
    margin-bottom: 4px;
}

.text-card .more {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-card .more a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid #fdc743;
}

.text-card .more a:hover {
    color: #fdc743;
}

@media screen and (max-width: 767px) {
    .text-card .content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .text-card .text {
        min-height: auto;
    }
}
