/* Add your CSS here. This is a basic structure. */
.articles-filter-form { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.filter-fields { display: flex; gap: 15px; }
.filter-fields select { padding: 10px; border: 1px solid #ddd; border-radius: 8px; }
.apply-filters-btn { 
	padding: 18px 66px;
    background-color: rgba(141, 200, 232, 0.2);
    border: 0px;
    border-radius: 35px;
	
	font-family: var(--e-global-typography-ff5eaba-font-family), Sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
	color:rgba(141, 200, 232, 1);
	letter-spacing: 0.2em;
}

.apply-filters-btn:hover,
.apply-filters-btn:focus{
	background-color: rgba(141, 200, 232, 0.2);
	color:rgba(141, 200, 232, 1);
}

.articles-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.main-title { font-size: 56px; font-weight: 600; color: #003665; margin: 0; }
.articles-slider-area { position: relative; }
.loading-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.8); z-index: 10; display: none; align-items: center; justify-content: center; }
.loading-overlay.is-active { display: flex; }
.spinner { /* Add your CSS spinner animation here */ }
.articles-swiper .swiper-slide { 
/* 	width: 400px; /* Example width */  */
	height: auto;
}
.no-results { padding: 50px; text-align: center; font-size: 18px; color: #888; }
/* ... Add styles for .article-card from your previous "Blogs" widget ... */

/*
================================================
 Custom Select Dropdown Styles
================================================
*/
.custom-select-wrapper {
    position: relative;
    width: 250px; /* Adjust width as needed */
    user-select: none;
}

.custom-select-trigger {
    position: relative;
    padding: 18px 40px 18px 25px;
    border-radius: 11px;
    background: #F3F5F6;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	color: #67787F;
}

.custom-select-trigger::after {
	content: url(https://aihm1.wpenginepowered.com/wp-content/uploads/2025/09/Vector-down.svg);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.custom-select-wrapper.is-open .custom-select-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #f9fafa;
/*     border: 1px solid #ddd; */
    border-radius: 8px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    display: none;
	color: #67787F;
}

.custom-select-wrapper.is-open .custom-options {
    display: block; /* Shown when wrapper has .is-open class */
}

.custom-option {
    display: block;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.custom-option:hover {
/*     background-color: #f0f4f7; */
	color:rgba(0, 56, 101, 1);
}

.custom-option.selected {
/*     background-color: #e3f2fd; */
	color:rgba(0, 56, 101, 1);
/*     font-weight: 600; */
}

.card-title a{
	font-family: var(--e-global-typography-ff5eaba-font-family), Sans-serif;
    font-size: var(--e-global-typography-ff5eaba-font-size);
    font-weight: var(--e-global-typography-ff5eaba-font-weight);
    line-height: var(--e-global-typography-ff5eaba-line-height);
	color:rgba(0, 56, 101, 1);
	
	overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.card-content{
	display: flex;
    flex-direction: column;
	gap: 10px;
}
.card-excerpt p{
	margin-block-end: 0;
	
	font-size: 18px;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-weight: var(--e-global-typography-text-font-weight);
    color: var(--e-global-color-text);
	
	overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.6;
    min-height: calc(1.6em * 3);
}
.card-author,
.card-topic,
.filter-label{
	font-size: 12px;
    line-height: 15.8px;
    color: rgba(0, 56, 101, 1);
    font-weight: 800;
    text-transform: uppercase;
	letter-spacing: 0.2em;
}
.article-card{
	border-radius: 40px;
	background-color: rgba(245, 245, 245, 0.5);
	padding: 25px 23px 36px 26px;
}
.card-image{
	padding-bottom: 14px;
}
.card-image img{
	border-radius:20px;
	max-height: 266px;
    object-fit: cover;
}
.card-header{
	display: flex;
    justify-content: space-between;
	padding-bottom: 24px;
}
.card-date{
	display: flex;
    flex-direction: column;
}
.card-topic{
	align-content: center;
}
.card-date .day{
	font-size: 24px;
    line-height: 24px;
    font-weight: 300;
    color: #8DC8E8;
}
.card-date .month{
	font-size: 12px;
    line-height: 31px;
    font-weight: 400;
    color: #7F7F7F;
	letter-spacing: 0.26em;
}
.card-button{
	padding-top: 30px;
}


/*  */
.apply-filters-btn {
	transition: all 0.3s ease;
	position: relative;
	cursor: pointer;
}
.apply-filters-btn:hover {
	background-color: #8DC8E8;
	color: #ffffff;
	padding-left: 70px;
}

.apply-filters-btn:hover::after {
	content: "";
    background: url(https://aihm1.wpenginepowered.com/wp-content/uploads/2025/09/icon-in-button-hover.svg) no-repeat center;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}