	.page-header {
      padding: 0px 0 !important;
}
.latest-news {
background: none !important;
}
 .options-wrapper {
            display: flex;
            justify-content: center;
            width: 100%;
            padding-bottom: 15px;
        }

        .options-container {
            margin-top: 20px;
            background-color: #E3E7FC;
            padding: 10px;
            border-radius: 10px;
            display: inline-flex;
            justify-content: center;
        }

        .option {
            margin: 0 10px;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            font-size: 18px;
            cursor: pointer;
        }
        .option.selected {
    background-color: #1E3F5B;
    color: white;
}

.option:hover {
    background-color: #1E3F5B;
    color: white;
}
 .post-item-body {
     text-align: left !important;
}
h2{
	font-family: 'Montserrat-Arabic';
	font-size: 20p;
	font-weight: bold;
}
h3{
    font-size: 18px;
    padding-bottom: 15px;
}
h4{
    font-size: 17px;
    padding-bottom: 5px;

}

.options-wrapper {
    width: 100%;
    overflow-x: auto; /* Ensure horizontal scroll if needed */
    margin-bottom: 20px;
}

.options-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping to the next line on small screens */
    justify-content: space-between;
    gap: 10px; /* Space between options */
    padding: 10px;
}

.option {
    padding: 10px 15px;
    border-radius: 20px;
    text-align: center;
    flex: 1; /* Make options grow to fill the available space */
    cursor: pointer; /* Make options clickable */
}

/* Responsive design */
@media (max-width: 768px) {
    .option {
        flex: 0 1 auto; /* Allow options to shrink on smaller screens */
        margin-bottom: 10px;
    }
    
    .options-container {
        justify-content: center; /* Center options on small screens */
    }
}

.title {
    text-align: center;
}

.blog-container {
    display: flex;
    flex-wrap: wrap; /* Allow blog items to wrap to the next line */
    gap: 20px; /* Space between blog items */
}

.blog-item {
    flex: 1 1 calc(33.333% - 20px); /* Three items per row, with space in between */
    display: none; /* Initially hide all blog items */
}

.post-item-body h3 {
    line-height: inherit;
    font-size: 16px;
}

.blog-item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ddd; /* Optional: Add a subtle border around each blog item */
    border-radius: 8px; /* Rounded corners for the blog item */
    padding: 15px; /* Padding inside the blog item */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow */
    transition: box-shadow 0.3s ease;
    overflow: hidden; /* Ensure content does not overflow */
}

.post-item-body {
    flex-grow: 1;
}

.category-label {
    position: absolute;
    bottom: 15px; /* Adjust this value to control distance from the bottom */
    left: 15px; /* Adjust this value to control distance from the left */
    color: #638C57; /* Light green background */
   background-color: #C2F750; /* Darker green text color */
    border-radius: 15px; /* Rounded borders */
    padding: 5px 10px;
    font-size: 0.9rem;
    text-align: center;
}

.blog-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Hover effect */
}
