/* Style cho trang chủ */

.home-main {
    padding: 20px 0;
}

.hero-section {
    text-align: center;
    background: #f8f9fa;
    padding: 50px 0;
}

.hero-section h1 {
    font-size: 2.5em;
    color: #333;
}

.hero-section p {
    margin-top: 20px;
    font-size: 1.2em;
    font-style: italic;
    color: #666;
}

.featured-post {
    padding: 40px 0;
}

.featured-post-grid {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.featured-image {
    flex: 1;
    max-width: 50%;
}

.featured-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.featured-content {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    text-align: left;
    width: 100%;
}

.featured-content p {
    margin: 15px 0 30px 0;
}

.btn-read-more {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-white-color);
    padding: 5px 20px;
    border-radius: var(--border-radius-5);
    text-decoration: none;
}

.btn-read-more:hover {
    background: var(--accent-color-hover);
}

a.btn-read-more:hover {
    color: var(--text-white-color);
}

/* Hàng Category */

.category-section{
    margin-top: 70px;
}

.category-posts {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-top: 10px;
}

.category-item {
    flex: 1;
}

.category-thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
/*     margin-bottom: 10px; */
}

.home-category-item {
	font-size: 1.125rem;
	line-height: 1.4;
	margin: 1.2rem 0 1rem;
}

/* Responsive styles */

@media (max-width: 768px) {
	
	.hero-section {
        padding: 30px 10px; /* Giảm padding để tiết kiệm không gian */
    }

    .hero-section h1 {
        font-size: 1.8em; /* Giảm font-size để phù hợp với màn hình nhỏ */
    }

    .hero-section p {
        margin-top: 15px; /* Giảm khoảng cách giữa các phần tử */
        font-size: 1em; /* Nhỏ hơn để phù hợp với mobile */
        line-height: 1.5; /* Giúp đoạn văn dễ đọc hơn */
    }

    .featured-post-grid, .category-posts {
        flex-direction: column;
/*         text-align: center; */
    }

    .featured-image, .featured-content, .category-item {
        max-width: 100%;
    }
	
	.featured-post {
		display: none
	}
}

@media (max-width: 1280px) {
    .hero-section .container {
        max-width: calc(100% - 60px);
        margin: 0 auto;
    }
}


/* Mặc định trên desktop & tablet: Ẩn phần mô tả */
.category-item .home-excerpt {
    display: none;
}

/* Trên màn hình nhỏ hơn 768px (mobile): Hiển thị phần mô tả */
@media (max-width: 768px) {
    .category-item .home-excerpt {
        display: block;
        font-size: 1rem;
        color: var(--text-color);
        margin-top: 8px;
    }
	h3.home-category-item {
		font-size: 1.75rem;
		line-height: 1.4;
/* 		margin: 2.6rem 0 1.2rem; */
	}
	.home-excerpt {
		padding-bottom: 20px;
	}
}

