.elementor-3856 .elementor-element.elementor-element-d4c8ba1{--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;}@media(min-width:768px){.elementor-3856 .elementor-element.elementor-element-d4c8ba1{--content-width:100%;}}/* Start custom CSS *//* Main container */
.research-articles-container {
    font-family: "Garamond", serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Page header */
.research-header {
    text-align: center;
    margin-bottom: 40px;
}

.research-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.research-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Articles grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Article card */
.article-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.article-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #7ab0f7;
    line-height: 1.3;
}

.article-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.article-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #7ab0f7;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.article-link:hover {
    background-color: #5a90d7;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .research-header h1 {
        font-size: 28px;
    }
}/* End custom CSS */