.info-block h1 {
    font-weight: 500;
}

.info-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.info-table a {
    text-decoration: none;
    color: black;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: white;
}

.info-table .date {
    background: var(--violet-color);
    padding: 6px 20px;
    width: max-content;
    color: var(--white-text-color);
}

.info-table h2 {
    font-size: 22px;
    margin-bottom: 0;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-table .text-block {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray4-text-color);
}

@media (max-width: 780px) {
    .info-table {
        grid-template-columns: none;
        grid-template-rows: repeat(2, auto);
    }

    .info-table h2 {
        font-size: 18px;
    }
    .info-table .text-block {
        font-size: 14px;
    }
}
