.blog-search-wrapper {
display: flex;
align-items: stretch;
max-width: 410px;
margin-left: auto;
}
#blog-search {
flex: 1;
padding: 12px 18px;
border: 1px solid #e2ded6;
border-right: none;
border-radius: 10px 0 0 10px;
font-size: 14px;
color: #1e293b;
background: rgba(217, 217, 217, 0.2);
outline: none;
}
#blog-search::placeholder {
color: #a8a196;
}
.blog-search-btn {
width: 46px;
border: none;
border-radius: 0 10px 10px 0;
background: rgba(165, 84, 69, 1);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
}
.blog-search-btn:hover,
.blog-search-btn:focus{
background-color: rgba(140, 68, 55, 1) !important;
}
.search-icon {
position: relative;
width: 13px;
height: 13px;
border: 2px solid #fff;
border-radius: 50%;
display: inline-block;
}
.search-icon::after {
content: '';
position: absolute;
width: 2px;
height: 7px;
background: #fff;
bottom: -6px;
right: -2px;
transform: rotate(-45deg);
}
.blog-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 28px;
padding: 10px 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
.blog-grid {
grid-template-columns: repeat(2, minmax(0, 1fr)); 
}
}
@media (max-width: 767px) {
.blog-grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.blog-search-wrapper {
max-width: 100%;
}
.blog-title {
font-size: 25px;
line-height: 35px;
}
}
.blog-card {
background: rgba(215, 203, 191, 0.4);
border-radius: 16px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
height: auto;
}
.blog-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}
.blog-card-link {
text-decoration: none !important;
color: inherit;
display: flex;
flex-direction: column;
height: 100%;
flex-grow: 1;
}
.blog-image-container {
padding: 0;
margin: 0;
overflow: hidden;
}
.blog-image-container img {
width: 100%;
height: 240px;
object-fit: cover;
display: block;
}
.blog-content {
padding: 30px 24px 30px;
display: flex;
flex-direction: column;
flex-grow: 1;
}
.blog-title {
font-family: Jost;
font-weight: 500;
font-size: 30px;
color: #434345;
line-height: 38px;
margin: 0 0 40px;
text-decoration: none !important;
}
.blog-readmore {
font-family: Poppins;
font-weight: 400;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
text-transform: capitalize;
color: #A55445;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none !important;
margin-top: auto;
}
.readmore-arrow {
display: flex;
align-items: center;
}
.pagination {
margin-top: 50px;
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
.page-link {
font-family: Jost;
font-weight: 500;
font-size: 20px;
line-height: 30px;
text-decoration: none !important;
color: #000000;
display: flex;
align-items: center;
justify-content: center;
border: none;
background: transparent;
}
.page-link.active {
width: 37px;
height: 37px;
background-color: #b9c7be;
border-radius: 50%;
}
.pagination-dots {
color: #000000;
font-size: 22px;
font-weight: 600;
letter-spacing: 4px;
}
.page-link.arrow {
width: 25px;
height: 25px;
border-radius: 50%;
background: #A55445;
display: flex;
align-items: center;
justify-content: center;
}
.page-link.arrow::before {
display: none; 
}
.page-link.arrow.disabled {
display: none !important;
}
.latest-blog-slider-wrapper {
position: relative;
width: 100%;
}
.latest-blog-swiper {
width: 100%;
overflow: hidden;
}
.latest-blog-swiper .swiper-wrapper {
display: flex !important;
}
.latest-blog-swiper .swiper-slide {
height: auto !important;
}
.slider-pagination-nav {
margin-top: 50px;
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
position: relative;
}
.slider-arrow {
position: static !important;
width: 37px !important;
height: 37px !important;
margin-top: 0 !important;
border-radius: 50%;
display: flex !important;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
transition: all 0.3s ease;
}
.slider-arrow::after {
display: none !important; 
}
.slider-arrow svg {
width: 6px !important;
height: 11px !important;
display: block;
}
.slider-arrow.prev {
background: #A55445 !important;
color: #fff !important;
border: 1px solid #A55445 !important;
}
.slider-arrow.next {
background: #A55445 !important;
color: #fff !important;
border: 1px solid #A55445 !important;
}
.slider-arrow.swiper-button-disabled {
background: transparent !important;
border: 1px solid #A55445 !important;
color: #A55445 !important;
cursor: not-allowed !important;
pointer-events: none !important;
opacity: 1 !important;
}