.root {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 575px;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
    max-width: 634px;
    padding: 32px;
}

.imagePart {
    display: flex;
    align-items: flex-start;
    aspect-ratio: 1 / 1;
    max-width: 570px;
    max-height: 426px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-sm);
    padding: 24px;
}

.dataPart {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.info {
    display: flex;
    gap: 8px;
}

.title {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-wrap: balance;
}

@media (width <= 768px) {
    .root {
        min-height: 390px;
    }

    .content {
        padding: 8px;
        max-width: 335px;
    }

    .imagePart {
        max-width: 319px;
        max-height: 250px;
        padding: 16px;
    }

    .title {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}
