.containerf{
    margin:0 auto;
    max-width:1366px;
}

@media only screen and (max-width: 1100px){
    .containerf{
        max-width:95%;
    }
}


/* Resources Page Styles Starts */
.filter-bar {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.filter-column {
    flex: 1;
    min-width: 200px;
}
#load-more {
    display: block;
    margin: 30px auto;
    padding: 10px 20px;
    font-size: 16px;
}
#filter-toggle {
    text-align: right;
    cursor: pointer;
    font-weight: bold;
    margin: 10px 0;
}
#filter-box {
    margin-bottom: 20px;
}
.heading-recent{
    color: var(--m-text-color);
    font-size: 40px !important;
    text-transform: uppercase;
    margin-top:30px;
}
.blog-item {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 50px;
}
.post-container .blog-item:nth-child(1){
    padding-top:0;
}
.blog-item h2 a{
    color: var(--m-text-color);
    font-size: 30px;
    text-decoration: none;
}
.blog-image{
    width:40%;
}
.blog-details{
    width:60%;    
}
.blog-image img{
    width:100%;
    height:350px;
    object-fit: cover;
} 
#post-container .blog-image img{
    object-fit: contain;	
}
.fc-services label,
.fc-topic label{
    display:block;
	margin-bottom: 10px;
}
.filter-column h3{
	margin-bottom:15px;
}
.fc-services-cont{
	display: flex;
  	flex-wrap: wrap;
}
.fc-services label{
	width:45%;
}
.search-holder{
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 20px;
	margin-bottom: 10px;
}
#keyword{
	border: 1px solid gray;
	margin:0;
}
#submit{
	padding: 11px 20px;
}

.load-more-container {
    margin-top: 60px;
    margin-bottom: 50px;
    text-align: center;
}
#load-more {
    background-color: transparent;
    border: none;
    color: #2261ae;
    padding: 10px 10px;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 2px;
    transition: color 0.3s, border-color 0.3s;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
}
#load-more::before, 
#load-more::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #000;
    display: block;
    width: 50px;
}

#load-more:hover {
    color: #000;
    border-color: #000;
}

#load-more.loading {
    cursor: not-allowed;
    opacity: 0.5;
}
.featured-article .blog-item{
    border:0;
}
.featured-container {
    padding: 10px 50px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.27);
	margin-bottom: 60px;
}

.ri-title-cont > h2{
    line-height: 1;
    padding: 0;
    margin-top: 0;
}
.ri-readmore{
    margin-top: 10px; 
}
/* Make nav buttons 3x bigger */
.owl-nav button {
    font-size: 3em !important;   /* 3 times bigger */
    color: #333 !important;      /* arrow color */
    background: none !important; /* remove bg */
    border: none !important;
}
/* Move arrows OUTSIDE */
.owl-nav .owl-prev {
    position: absolute;
    left: -40px; /* adjust as needed */
}
.owl-nav .owl-next {
    position: absolute;
    right: -40px; /* adjust as needed */
}

/* Position arrows vertically centered */
.owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* let clicks pass except on buttons */
}

.owl-nav button {
    pointer-events: auto; /* re-enable clicks */
}
.fc-services-topic{
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}
.fc-services-topic label{
    width: 45%;
}

@media only screen and (min-width: 768px){
    .blog-item:nth-child(even) .blog-image{
        order:1;
    }
    .blog-item:nth-child(even) .blog-details{
        order:0;
    }
}
@media only screen and (max-width: 580px){
    .featured-article .blog-image img {
        object-position: 0;
    }
    .blog-item {
        gap: 0;
        flex-direction: column;
    }
    .blog-details,
    .blog-image {
        width: 100%;
    }
}
/* Resources Page Styles Ends */