.root {
    display: flex;
    align-items: center;
    max-width: 432px;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    padding: 16px 20px;
    position: relative;
}

.root::before,
.root::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    height: 1px;
    background-color: var(--border-color-light);
    z-index: 10;
}

.root::before {
    top: 0;
}

.root::after {
    bottom: 0;
}

.borderLeft,
.borderRight {
    width: 1px;
    position: absolute;
    top: 12px;
    bottom: 12px;
    background-color: var(--border-color-light);
    z-index: 10;
}

.borderLeft {
    left: 0;
}

.borderRight {
    right: 0;
}

.image {
    display: block;
    object-fit: cover;
    flex: 0 0 auto;
    width: 96px;
    height: 72px;
    border-radius: var(--border-radius-xs);
}

.content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

@media (width <= 1024px) {
    .root {
        padding: 10px;
        gap: 8px;
        max-width: none;
    }

    .content {
        align-self: stretch;
        justify-content: space-between;
    }

    .title {
        text-align: left;
        text-wrap: wrap;
    }
}

@media (width <= 768px) {
    .root {
        padding: 10px;
        gap: 8px;
        max-width: none;
    }

    .image {
        width: 62px;
        height: 62px;
    }

    .root::before,
    .root::after {
        left: 5px;
        right: 5px;
    }

    .borderLeft,
    .borderRight {
        top: 5px;
        bottom: 5px;
    }

    .content {
        align-self: stretch;
        justify-content: space-between;
    }

    .title {
        text-align: left;
        text-wrap: wrap;
    }
}
