/* Filter Form */
 .blog-filter-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-filter-form select {
    font-family: 'VisbyCF-Medium';
/*     padding: 15px;
	height:55px; */
    border: 1px solid #97A4A3 !important;
    font-size: 20px;
    background-color: #0F3253 !important;
    color: #fff;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 1.3px;
}



.blog-filter-form select {
  width: 400px;
  padding: 15px 40px 15px 20px; 
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="9" viewBox="0 0 18 9" fill="none"><path d="M2.115 0.0214844L9 5.36482L15.885 0.0214844L18 1.66648L9 8.66648L0 1.66648L2.115 0.0214844Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.blog-filter-form select:focus {
  outline: none;
  background-color: #103b5d; 
}

.blog-filter-form {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}


#blog-loader{
	color: #0f3253 !important;
    font-family: 'VisbyCF-Medium';
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.search-wrapper {
  display: flex;
  position: relative;
}

.search-wrapper input[type="text"]{
	border: 1px solid #ddd !important;
}

.search-wrapper input {
    padding: 15px 12px;
    border-radius: 4px;
    width: 600px;
    color: #0f3253 !important;
    font-family: 'VisbyCF-Medium';
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
/*     text-transform: uppercase; */
    letter-spacing: 1.3px;
}

.search-wrapper input::placeholder {
  color: #97A4A3;
  text-transform: uppercase;	
}



.search-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
 
    color: #b6c6d5;


}

.search-btn::before {
    content: "|";
    color: #B6C6D5;
    height: 30px;
    font-size: 32px;
	padding-right: 15px;
}
.search-btn svg {
  width: 20px;
  height: 20px;
  stroke: #97A4A3;
  transition: stroke 0.3s ease;
}

.search-btn:hover svg {
  stroke: #333;
}


/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 50px 30px;
}



.blog-card {
  /*border: 1px solid #eee;*/
  /*border-radius: 8px;*/
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card .blog-content {

  transition: padding 0.3s ease;
}

.blog-card:hover {
  
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
   
}

.blog-card:hover .blog-content {
  padding: 0px 20px 20px; /* applies only when parent card is hovered */
}

.blog-card .thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.blog-content {
  
  flex-grow: 1; /* makes all cards equal height */
  display: flex;
  flex-direction: column;
}


.blog-cats {
  margin-top: 40px;
	display:flex;
}

.blog-cats p {
    background: #D6A700;
    color: #fff;
    font-size: 18px;
    padding: 5px 15px;
    margin-right: 10px;
    line-height: 24px;
    text-transform: uppercase;
   font-family: 'VisbyCF-Medium';
   
}

.blog-title {
   
    margin-top: 20px;
    color: #000;
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
}

.blog-title a {
  color: #000;
  text-decoration:none;
}

.blog-title a:hover {
  color: #000;
  text-decoration:underline;
}

@media screen and (min-width:1399px) and (max-width:1800px){
.blog-card .thumb img {
  
  height: 200px !important;
  
}
}

@media screen and (max-width:767px){
    
    .blog-filter-form {
  
    flex-direction: column-reverse;
   
}
    .search-wrapper input,.blog-filter-form select {
  
     width: 300px;
     font-size: 16px;
   
   
}

    .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.blog-card .thumb img {
  
    height: 100% !important;
   
}
.blog-cats span {
   
    font-size: 14px;
   
}

}




@media screen and (min-width:768px) and (max-width:1024px){
    .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 20px;
}
	 .blog-filter-form {
  
    flex-direction: column-reverse;
   
}
	 .search-wrapper input,.blog-filter-form select {
  
     width: 600px;
    
   
}
	.blog-cats span {
   
    font-size: 14px;
   
}

	.blog-card .thumb img {
  
    height: 180px !important;
   
}
	
}
