#primary .hero-section {
    
    height: 50vh;
    background-size: cover;
    background-position: center;
}

#primary .hero-section .hero-content{
    background-color: #00000062;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

#primary .hero-section .hero-content h3{
    color: #fff;
    max-width: 50vw;
    text-align: center;
    font-size: 2.8rem;
    margin: 0px;
}

#primary .hero-section .hero-content p{
    color: #ffffffe1;
    max-width: 50vw;
    text-align: center;
    font-size: 1.1rem;
    margin: 5px;
}

#primary .post-content{
    padding: 5vh 10vw;
}

#primary h2{
    color: #333;
    margin-bottom: 20px;
    width: 80%;
}

#primary .next-read{
    padding: 0 10vw;
}

/* Next Read Section */
.next-read-section {
    margin: 40px 0;
    padding: 40px 10vw;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.next-read-section h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.next-read-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    
}

.next-read-post {
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.next-read-post:hover {
    transform: translateY(-5px);
}

.next-read-post a {
    font-weight: medium;
    color: var(--ast-global-color-8);
    margin-bottom: 10px;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.next-read-post h4 {
    margin: 0px;
    font-size: 18px;
    color: var(--ast-global-color-8);
}

.disclaimer{
    margin-top: 50px;
}
.disclaimer h6, .disclaimer p{
 color: gray;
 font-size: 1rem;
}

.trail-end span{
    font-weight: bold;
    color: var(--ast-global-color-8);
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Tablet Styles */
    .next-read-posts {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .next-read-section h3 {
        font-size: 22px;
    }

    .next-read-post h4 {
        font-size: 16px;
    }

    #primary .hero-section .hero-content h3{
        font-size: 2rem;
        max-width: 75vw;
    }

    #primary .hero-section{
        height: 40vh;
    }

    #primary .post-content{
        padding: 5vh 5vw;
    }
}

@media (max-width: 480px) {

    .next-read-section{
        padding: 20px 5vw;
        margin: 20px 0;
    }

    /* Mobile Styles */
    .next-read-posts {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 10px;
    }

    .next-read-section h3 {
        font-size: 20px;
    }

    .next-read-post h4 {
        font-size: 14px;
    }

    #primary .hero-section .hero-content h3{
        font-size: 1.8rem;
        max-width: 90vw;
    }

    #primary .hero-section .hero-content p{
        
		display:none;
    }

    #primary .hero-section{
        height: 35vh;
    }

    #primary .post-content{
        padding: 5vh 4vw;
    }
	
}