/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 28 2026 | 07:51:48 */
.blog-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
}

.blog-wrapper .card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.blog-wrapper .image-box {
    position: relative;
    overflow: hidden;
}

.blog-wrapper .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
/* 	    object-position: top; */
}

.blog-wrapper .card:hover .image-box img {
    transform: scale(1.08);
}

/* Hover Overlay */
.blog-wrapper .image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: 0.4s;
}

.blog-wrapper .card:hover .image-box::after {
    opacity: 1;
}

.blog-wrapper .date-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    line-height: 1;
    z-index: 2;
}
.blog-wrapper .date-badge span {
    font-size: 25px;
    font-weight: 700;
    display: block;
}

.blog-wrapper .date-badge small {
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    display: block;
    letter-spacing: 1px;
}

.blog-wrapper .content {
    padding: 20px;
}

.blog-wrapper .right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-wrapper .card-large .image-box {
    height: 350px;
}

.blog-wrapper .card-small {
    display: flex;
}

.blog-wrapper .meta span.tag a {
    background-color: transparent;
    border: 1px solid var(--e-global-color-163a5695);
    padding: 5px 10px;
    border-radius: 8px;
}

.blog-wrapper .meta span.tag a:hover {
    background-color: var(--e-global-color-163a5695);
    border: 1px solid var(--e-global-color-163a5695);
    color: #fff;
}

.blog-wrapper .card-small .image-box {
    width: 40%;
    height: 300px;
}

.blog-wrapper .card-small .content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-wrapper .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
	    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-wrapper span.author {
    padding-left: 10px;
}

.blog-wrapper span.author-name {
    color: var(--e-global-color-163a5695);
}

.blog-wrapper .read-more .icon {
    width: 22px;
    height: 22px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Hover effect (same feel as screenshot) */
.blog-wrapper .read-more:hover .icon {
    transform: translateX(3px);
}

.blog-wrapper .content  h2 {
	font-size: 28px !important;
	    margin: 10px 0;
}
.blog-wrapper span.icon {
    padding: 17px;
}
.blog-wrapper i.fas.fa-arrow-right {
    font-size: 15px;
}


@media(max-width: 900px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-wrapper .card-small {
        flex-direction: column;
    }

    .blog-wrapper.card-small .image-box,
    .blog-wrapper .card-small .content {
        width: 100%;
    }
	.blog-wrapper .card-small .image-box{
		width: 100%;
		height: 350px;
	}
}


.elementor-element-46b5eb2 .right-column .blog_title{
	    margin-bottom: 0px;
}

