.custom-blog-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.blog-card {
    width: 32.1%;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3sease-in-out;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 40px 25px;
}

.blg-date {
    position: relative;
    text-align: right;
    margin-top: -20px;
    top: 60px;
}
.blg-date span {
    width: 50px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    font-family: 'ROBOTO';
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-title a {
    text-decoration: none;
    color: #5b5b5b;
    font-family: Roboto;
}

.blog-category {
    font-size: 16px;
    color: #5b5b5b;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: Roboto;
    margin: 0;
}
.cat-arr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
button#load-more-posts {
    display: block;
    margin: 20px auto;
    padding: 15px 40px;
    background: transparent;
    color: #000000;
    cursor: pointer;
    text-align: center;
    border: 1px solid #0a437a;
    font-family: 'Roboto';
    margin-top: 50px;
}
