

/* Blog Section Styles */
.blog-header {
    text-align: center;
    padding-top: 200px;
    font-size: 64px;
    font-family: Lora, Times New Roman, serif;
    color: #42372D;
    margin: 40px 0;
}

.blog-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjusted gap for better spacing */
    justify-content: center;
}

.blog-content {
    display: flex;
    flex-direction: column;
    flex-basis: calc(40% - 40px); /* Adjusted to ensure two blogs fit per row */
    padding: 20px;
    margin-bottom: 20px;
}

.blog-content a {
    text-decoration: none;
    color: inherit; 
    display: block;
}

.blog-content a:hover .blog-title,
.blog-content a:hover .blog-desc {
    color: #CA5310; 
}

.blog-photo img {
    width: 80%;
    height: auto;
    object-fit: cover;
}

.blog-title {
    font-family: Roboto, Helvetica, Arial;
    font-size: 24px;
    font-weight: bold;
    color: #42372D;
    margin: 15px 0 10px;
    text-align: left; /* Align text to the left */
}

.blog-desc {
    padding-right: 10px; /* Adjusted padding to fit within the flex container */
    font-family: Roboto, Helvetica, Arial;
    font-size: 20px;
    line-height: 1.6;
    color: #42372D;
    text-align: left; /* Ensure description is also left-aligned */
}

.blog-desc p {
    margin: 0; /* Remove default margins */
}
/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.pagination a, .pagination span {
    margin: 0 5px;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
    background-color: #2C4B2B;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.pagination a:hover {
    background-color: #45a049;
}

.pagination span {
    background-color: #CA5310; /* Highlight current page number */
    pointer-events: none;
}

.pagination a[aria-disabled="true"] {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.pagination .active {
    background-color: #45a049;
}

.pagination a.disabled {
    pointer-events: none;
    background-color: #e0e0e0;
    color: #999;
}

@media (max-width: 768px) {
    .pagination a, .pagination span {
        padding: 8px 10px;
        font-size: 14px;
    }
}






