/* ==========================================================================
   HONDA STORE - NEWS PAGE STYLES (TRANG TIN TỨC)
   ========================================================================== */

.news-container {
    padding: 30px 0 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Section */
.news-header-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.news-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-header-icon {
    font-size: 26px;
    color: #0056b3;
}

.news-main-title {
    font-size: 26px;
    font-weight: 800;
    color: #0038b8;
    margin: 0;
    letter-spacing: -0.3px;
}

.news-title-line {
    width: 60px;
    height: 3px;
    background: #c00000;
    margin-top: 8px;
    border-radius: 2px;
}

/* News List Wrapper */
.news-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* News Card */
.news-horizontal-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 24px;
    align-items: stretch;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-horizontal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Thumbnail Box */
.news-thumb-box {
    width: 380px;
    height: 230px;
    flex-shrink: 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
}

.news-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.news-horizontal-card:hover .news-thumb-box img {
    transform: scale(1.05);
}

/* Date Badge on Image */
.news-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #d32f2f;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    min-width: 52px;
}

.news-day {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.news-month {
    font-size: 13px;
    font-weight: 600;
    margin-top: 2px;
    display: block;
}

/* Info Box */
.news-info-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    padding-top: 4px;
}

.news-item-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.news-item-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-item-title a:hover {
    color: #c00000;
}

.news-item-summary {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Badge */
.news-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0056b3;
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(0, 86, 179, 0.25);
}

/* Readmore Link */
.news-readmore-btn {
    color: #1e293b;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    width: fit-content;
    transition: all 0.25s ease;
}

.news-readmore-btn:hover {
    color: #c00000;
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 900px) {
    .news-horizontal-card {
        flex-direction: column;
    }

    .news-thumb-box {
        width: 100%;
        height: 220px;
    }
}
