@charset "utf-8";

.business-news-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.business-news-wrap .news-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
}
.business-news-wrap .news-item a {
    display: block;
    height: 100%;
}
.business-news-wrap .news-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.business-news-wrap .news-thumb {
    width: 30%;
    min-width: 250px;
    height: 200px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.business-news-wrap .news-date-box {
    width: 30%;
    min-width: 250px;
    height: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    border-right: 1px solid #f1f1f1;
}
.business-news-wrap .news-date-box .ym {
    font-size: 16px;
    color: #666;
}
.business-news-wrap .news-date-box .d {
    font-size: 40px;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1;
    margin-top: 5px;
}
.business-news-wrap .news-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.business-news-wrap .news-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.business-news-wrap .news-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    /* Optional tablet adjustments */
}
@media (max-width: 768px) {
    .business-news-wrap .news-item {
        flex-direction: column;
    }
    .business-news-wrap .news-thumb,
    .business-news-wrap .news-date-box {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f1f1f1;
    }
}
