.el-hover-container {
display: flex;
flex-direction: column;
width: 100%;
}
.el-hover-item {
display: flex;
align-items: center;
border-radius: 6px;
border: 1px solid rgba(0,0,0,0.06);
background-color: #ffffff;
text-decoration: none;
color: inherit;
transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
background-color 0.2s ease, 
border-color 0.2s ease;
} .el-hover-effect-shadow-yes .el-hover-item:hover {
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
} .el-hover-effect-lift-yes .el-hover-item:hover {
transform: translateY(-2px);
}
.el-hover-date-col {
padding-right: 20px;
border-right: 1px solid #eae6df;
flex-shrink: 0;
min-width: 120px;
display: flex;
align-items: center;
}
.el-hover-date {
font-size: 1.05rem;
font-weight: 700;
}
.el-hover-details-col {
flex-grow: 1;
padding-left: 20px;
display: flex;
flex-direction: column;
justify-content: center;
}
.el-hover-title {
margin: 0;
font-size: 1.15rem;
font-weight: 700;
}
.el-hover-description {
margin: 4px 0 0 0;
font-size: 0.95rem;
color: #666666;
line-height: 1.4;
}
@media (max-width: 767px) {
.el-hover-item {
flex-direction: row;
align-items: center;
}
.el-hover-date-col {
border-right: 1px solid #eae6df;
padding-right: 12px;
min-width: 95px;
}
.el-hover-details-col {
padding-left: 12px;
}
}