.news-content-section .news-content-title {
    max-width: 400px;
 }
 .news-content-section .news-article-card {
     margin-bottom: 40px;
     transition: transform 0.3s ease;
     background-color: transparent;
     border-radius: 0;
     overflow: hidden;
     box-shadow: none;
 }

 .news-content-section .news-article-card:hover {
     transform: translateY(-5px);
 }


 .news-content-section .news-article-card:hover .news-article-image {
     transform: scale(1.02);
 }


 .news-content-section .news-article-title {
     color: var(--primary-color);
     margin-bottom: 20px;
     font-size: 1.5rem;
 }

 .news-content-section .news-title-divider {
     width: 100%;
     height: 1px;
     background-color: var(--button-color);
     margin-bottom: 20px;
 }

 .news-content-section .news-article-excerpt {
    margin-bottom: 2rem !important;
 }

 .news-content-section .news-article-content {
    padding-bottom: 1rem;
 }

 .news-content-section .news-article-content .main-btn {
    padding: 5px 20px !important;
 }



 #practice-container .practise-cards {
    display: none;
}

#practice-container .practise-cards:nth-child(-n+6) {
    display: flex;
}

#practice-container.show-all .practise-cards {
    display: flex !important;
}

#practice-container.show-all::after {
    display: none;
}

/* See More Button */
 .see-more-section {
    text-align: center;
    margin-top: 40px;
}

 .see-more-section #see-more-btn {
    width: 50px;
    height: 50px;
    background-color: var(--button-color);
    color: white;
    border: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

 .see-more-section #see-more-btn:hover {
    background-color: #2a4a6b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 92, 133, 0.3);
}
