.articleText h2{
    clear: both;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 500 !important;
    font-size: clamp(20px, 3vw, 30px);
    position: relative;
    z-index: 2;
    line-height: 1.25em;
    margin-bottom: 18px;
    color: var(--mainColor);

}

.articleText h3{
    clear: both;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 500 !important;
    font-size: clamp(16px, 3vw, 26px);
    position: relative;
    z-index: 2;
    line-height: 1.25em;
    margin-bottom: 18px;
    color: var(--secondColor);

}

 h4.heading{
    clear: both;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size:  clamp(36px, 3vw, 56px) !important;
    position: relative;
    z-index: 2;
    line-height: 1.25em;
    margin-bottom: 18px;
    color: var(--secondColor);
    text-align: center;
    margin-bottom: 60px;

}

b, strong {
    font-weight: bold !important;
    
}


.blog-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
}

.article_date {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #e7e7e757;
    padding: 2px 12px;
    border-radius: 50px;
}

.blog-image-link {
    display: block;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.blog-title {
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
    flex-grow: 0;
}

.blog-title a {
    text-decoration: none;
    color: #222;
}

.blog-description {
    font-size: 1rem;
    color: #555;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.flex__center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wg-pagination {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: 30px;
    gap: 16px;
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}






.read {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}