
.ehn-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.ehn-image {
    width: 60%;
    max-height: 400px;
    overflow: hidden;
}

.ehn-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.ehn-list {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ehn-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.ehn-border {
    width: 5px;
    height: 100%;
    background: var(--ehn-border-color, #ccc);
    margin-right: 10px;
    transition: background 0.3s ease;
}

.ehn-item:hover .ehn-border {
    background: var(--ehn-border-hover-color, #ff0000);
}

.ehn-title {
    font-size: 16px;
    font-weight: bold;
}
