.info-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block .header {
    background: white;
    text-decoration: none;
    color: black;
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 20px;
}

.info-block .header .date {
    background: var(--violet-color);
    padding: 6px 20px;
    width: max-content;
    color: var(--white-text-color);
    margin-bottom: 10px;
}

.info-block .header h1 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 10px;
}

.info-block .header .preview-text {
    font-size: 16px;
    line-height: 17px;
}

.info-block .header img {
    object-fit: contain;
    position: absolute;
    right: 0;
    max-width: 40%;
    bottom: 0;
}

.info-detail {
    background: white;
    padding: 30px;
    color: var(--gray4-text-color);
}

@media (max-width: 780px) {
    .info-block {
        gap: 20px;
    }
    .info-block .header h1 {
        font-size: 30px;
        line-height: 30px;
        display: -webkit-box;
        line-clamp: 1;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .info-detail {
        padding: 20px;
        font-size: 14px;
        line-height: 16px;
    }
}