    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
        color: white;
        padding: 60px 0 40px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    /* Main Content Layout */
    .main-content {
        margin-bottom: 50px;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        border-left: 4px solid #3498db;
        padding-left: 15px;
        margin: 0;
    }
    
    /* Featured Post */
    .featured-post-large {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .featured-post-image {
        position: relative;
        height: 250px;
        overflow: hidden;
        border-radius: 8px;
    }
    
    .featured-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .category-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #e74c3c;
        color: white;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    /* News Cards */
    .news-card {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }
    
    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    
    .news-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0;
        line-height: 1.4;
		    font-size: 14px;

    }
    
    .news-title a {
        color: #2c3e50;
        text-decoration: none;
    }
    
    .news-title a:hover {
        color: #3498db;
    }
    
    /* Post Meta */
    .post-meta {
        font-size: 0.85rem;
        color: #7f8c8d;
        margin-bottom: 8px;
    }
    
    .date {
        font-weight: 500;
    }
    
    .category-tag {
        background: #f8f9fa;
        color: #2c3e50;
        padding: 3px 10px;
        border-radius: 4px;
        font-size: 0.8rem;
    }
    
    /* Post Titles */
    .post-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .post-title a {
        color: #2c3e50;
        text-decoration: none;
    }
    
    .post-title a:hover {
        color: #3498db;
    }
    
    .post-excerpt {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Category Posts */
    .category-post-card {
        background: #fff;
        border-radius: 8px;
        padding: 15px;
        border: 1px solid #e0e0e0;
    }
    
    .category-post-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* Small News Cards */
    .news-small-card {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        border-left: 3px solid #3498db;
    }
    
    .news-excerpt {
        color: #7f8c8d;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    /* Sidebar Cards */
    .sport-post-card,
    .travel-post-card,
    .lifestyle-post-card {
        background: #fff;
        border-radius: 8px;
        padding: 15px;
        border: 1px solid #e0e0e0;
        margin-bottom: 25px;
    }
    
    .sport-post-card img,
    .travel-post-card img,
    .lifestyle-post-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    
    /* View Detail Button */
    .btn-view-detail {
        display: inline-block;
        color: #3498db;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        padding: 8px 20px;
        border: 2px solid #3498db;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .btn-view-detail:hover {
        background: #3498db;
        color: white;
        text-decoration: none;
    }
    
    /* Footer Section */
    .footer-section {
        background: #2c3e50;
        color: white;
        padding: 40px 0;
        margin-top: 50px;
    }
    
    .footer-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: white;
    }
    
    .footer-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    
    .copyright {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        margin-top: 20px;
    }
    
    .footer-links {
        margin-top: 10px;
    }
    
    .links-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: white;
    }
    
    .links-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .links-list li {
        margin-bottom: 12px;
    }
    
    .links-list a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .links-list a:hover {
        color: #3498db;
    }
    
    /* Buttons */
    .btn-primary {
        background: #3498db;
        border-color: #3498db;
        padding: 10px 25px;
        font-weight: 600;
    }
    
    .btn-primary:hover {
        background: #2980b9;
        border-color: #2980b9;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-subtitle {
            font-size: 0.95rem;
        }
        
        .section-title {
            font-size: 1.3rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero-section {
            padding: 40px 0 30px;
        }
        
        .hero-title {
            font-size: 1.8rem;
        }
        
        .news-card,
        .category-post-card,
        .sport-post-card,
        .travel-post-card,
        .lifestyle-post-card {
            margin-bottom: 30px;
        }
        
        .featured-post-image {
            height: 200px;
            margin-bottom: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.5rem;
        }
        
        .section-title {
            font-size: 1.2rem;
        }
        
        .post-title,
        .news-title {
            font-size: 1rem;
        }
    }