.post-tile {
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 0;
    transition: all 500ms ease-out 0s;
    max-width: 450px;
    margin: 0 auto;
}

.post-tile:hover {
    border: 1px solid #f4ae15;
    box-shadow: 0 0 50px 0 rgba(14, 31, 53, .1);
}

.post-tile a {
    text-decoration: none;
}

.post-tile__featured {
    position: relative;
}

.post-tile__featured-date {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    bottom: 15px;
    left: 30px;
    text-shadow: 3px 4px 4px #1d232e;
}

.post-tile__featured-date svg {
    fill: #fff;
    width: 20px;
}

.post-tile__featured-date time {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.post-tile__content {
    padding: 30px;
    color: #1d232e;
}

.post-tile__content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1d232e;
    margin: 0 0 15px 0;
}

.post-tile__content p {
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.post-tile__content .btn {
    font-size: 12px;
    padding: 6px 12px;
    margin-top: 15px;
    line-height: 1.2;
}

.post-tile:hover .btn {
    color: #fff;
    background: #212529;
    border: 2px solid #212529;
    box-shadow: 0 8px 9px -4px rgba(0, 0, 0, .15), 0 4px 18px 0 rgba(0, 0, 0, .1);
    text-decoration: none;
}

@media (max-width: 576px) {
    .post-tile__content {
        padding: 20px;
    }
}