.hyper-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 8px;
}

.hyper-link h2 {
    margin: 0;
    font-size: 18px;
    color: rgb(32, 34, 36);
}

.hyper-link p {
    margin: 0;
    font-size: 16px;
    color: rgb(32, 34, 36);
}

.hyper-link:hover h2 {
    text-decoration: underline;
}

.link-time {
    align-items: center;
    gap: 8px;
    color: rgb(84, 86, 88);
    height: 32px;
    border-bottom: 1px solid rgba(84, 86, 88, 0.2);
}

.hyper-link:last-of-type .link-time {
    border: none;
}

.link-time span {
    color: rgb(84, 86, 88);
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 1px;
}

@media only screen and (max-width: 1000px) {
    .link-time {
        border: none;
    }
}