.blog-section {
    margin-top: 80px;  
}
.blog-section .title {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 900;
    color: var(--green);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blog-section .title a {
    font-size: 16px;
    color: var(--green);
    transition: 0.3s ease-in-out;
}
.blog-section .title a:hover {
    color: var(--gold);
}
.blog-card {
    display: flex;
    flex-direction: column;
}
.blog-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;      
}
.blog-text {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--green);
     clip-path: polygon(
    0 0, 
    100% 0, 
    100% calc(100% - 70px),
    calc(100% - 100px) 100%,
    0 100% 
  );
}
.blog-text > p {
    padding: 24px 40px;
    color: var(--white);
    font-weight: 900;
    font-size: clamp(16px, 2vw, 20px);
}
.blog-text .read-more {
    padding: 24px 30px;
    font-size: 20px;
    font-weight: 900;
    display: flex;  
    align-items: center;
    gap: 60px;
    color: var(--white);
    border-top: 1px solid var(--white);
}
.blog-text .read-more .arrow {
    padding-right: 40px;
    transition: 0.3s ease-in-out;
}
.blog-card:hover .arrow {
    transform: translateX(10px);
}
.blogSwiper .pagination {
    display: none;
}

/* Swiper Pagination */
.swiper-pagination-bullets,
.swiper-pagination-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.swiper-pagination-bullet {
    width: 100%;
    border-radius: 10px;
    height: 2px;
    background-color: rgba(218, 218, 218, 1);
    opacity: 1;
    transition: 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: var(--gold);
}
