.post-card:before,
.post-card:after {
    display: none;
}

.post-card {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
}

.post-card h3 {
    font-size: 22px;
}

@media (min-width: 768px) {
    .post-card {
        grid-template-columns: 2fr 4fr;
        column-gap: 60px;
    }

    .post-card h3 {
        font-size: 30px;
    }
}

.card-exceprt {
    color: #333;
    margin-bottom: 30px;
    line-height: 1.8;
}

h3.card-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

h3.card-title a {
    color: var(--gray) !important;
}

h3.card-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--red);
}

a.custom-button {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 6px;
}

.custom-button .arrow-icon {
    padding-left: 5px;
}