.elementor-347 .elementor-element.elementor-element-02aeaef{--display:flex;--margin-top:25px;--margin-bottom:25px;--margin-left:0px;--margin-right:0px;}.elementor-347 .elementor-element.elementor-element-25f5e24 > .elementor-widget-container{margin:0px 20px 0px 20px;}.elementor-347 .elementor-element.elementor-element-1494d7c{margin:20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}@media(max-width:1024px){.elementor-347 .elementor-element.elementor-element-02aeaef{--margin-top:15px;--margin-bottom:15px;--margin-left:0px;--margin-right:0px;}}@media(max-width:767px){.elementor-347 .elementor-element.elementor-element-25f5e24 > .elementor-widget-container{margin:0px 0px 0px 0px;}}/* Start custom CSS for shortcode, class: .elementor-element-aabd81b *//* news-grid.css */
.news-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
}

.news-grid__main {
    position: relative;
}

.news-grid__featured {
    height: 100%;
}

.news-grid__featured .news-grid__image-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 15px;
    overflow: hidden;
    background: #f0f0f0;
}

.news-grid__featured .news-grid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.news-grid__featured .news-grid__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

.news-grid__featured .news-grid__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: #fff;
}

.news-grid__category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 16px;
}

.news-grid__date {
    display: block;
    color: #8C8C8C;
    font-size: 14px;
    margin-bottom: 8px;
}

.news-grid__title {
    font-weight: 300;
    font-size: 1.2rem;
    margin: 0 0 16px;
    line-height: 1.3;
}

.news-grid__featured .news-grid__title {
    font-size: 2.3rem;
    color: #fff;
    font-family: Sora;
}

.news-grid__excerpt {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.news-grid__secondary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-grid__item {
    background: #fff;
}

.news-grid__item .news-grid__image-wrapper {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f0f0f0;
}

.news-grid__item .news-grid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.news-grid__item .news-grid__category {
    position: absolute;
    top: 16px;
    left: 16px;
}

.news-grid__item .news-grid__title {
    color: #000;
}

.news-grid__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid__featured .news-grid__image-wrapper {
        min-height: 400px;
    }
    
    .news-grid__featured .news-grid__title {
        font-size: 24px;
    }
}

/* Additional styles for new requirements */
.news-grid__date--white {
    color: #ffffff !important;
}

/* Specific styles for second and third posts */
.news-grid__item--2 {
    /* Add specific styles for second post */
}

.news-grid__item--3 {
    /* Add specific styles for third post */
}

@media (max-width: 768px) {
    .news-grid__excerpt--mobile-hidden {
        display: none;
    }
}/* End custom CSS */