.elementor-23851 .elementor-element.elementor-element-f28c61c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-23851 .elementor-element.elementor-element-f28c61c:not(.elementor-motion-effects-element-type-background), .elementor-23851 .elementor-element.elementor-element-f28c61c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for shortcode, class: .elementor-element-6d7668b */.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1220px;
    margin: auto;
    padding: 20px;
}

.blog-card {
    background: #fff;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1!important;
}

.blog-title a {
    font-size:18px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.elementor-23851 .elementor-element.elementor-element-6d7668b a{
    text-decoration:none;
}

.blog-desc {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0px!important;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
}

.blog-date {
    font-size: 14px;
    font-weight: 600;
    color: #0069ff;
}

.blog-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.blog-arrow:hover {
    transform: translateX(3px);
}


@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */