.elementor-5922 .elementor-element.elementor-element-2f612b1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e99399e *//* Typography - Sans-serif */
.research-articles-container {
    font-family: Arial, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

/* RTL Support for Hebrew */
.research-articles-container[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* Header Styling */
.research-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
}

.research-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #7ab0f7; /* Genesis blue for heading */
}

.research-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Series Title Styling */
.series-title {
    font-size: 24px;
    font-weight: bold;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #5a90d7; /* Darker blue */
}

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

/* Article Card Design */
.article-card {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

/* Article Number */
.article-number {
    font-size: 24px;
    font-weight: bold;
    color: #7ab0f7; /* Genesis blue */
    margin-bottom: 15px;
}

/* Article Content */
.article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: #333;
    font-weight: bold;
}

.article-content p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.6;
    flex: 1; /* Makes paragraphs take up available space */
}

/* Article Link - More forceful styling to override theme */
.research-article-link,
.article-card a,
.article-content a {
    display: inline-block !important;
    color: #7ab0f7 !important; /* Genesis blue */
    font-weight: bold !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
    margin-top: auto !important; /* Pushes link to bottom */
    font-size: 16px !important;
    font-family: Arial, sans-serif !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.research-article-link:hover,
.article-card a:hover,
.article-content a:hover {
    color: #5a90d7 !important; /* Darker blue on hover */
    text-decoration: underline !important;
    background: none !important;
}

/* Make sure all cards have the same styling */
.article-card .research-article-link {
    color: #7ab0f7 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on tablets */
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }
    
    .research-header h1 {
        font-size: 28px;
    }
    
    .series-title {
        font-size: 22px;
    }
}/* End custom CSS */