.elementor-350 .elementor-element.elementor-element-be153fd{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:30px;--padding-right:030px;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-ff188c2 *//* Container setup */
.article-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Strict 3 in a row */
    gap: 30px;
    padding: 40px 0;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

/* Card Styling */
.article-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
}

/* Image behavior */
.article-image img {
    width: 100%;
    height: 220px;
    object-fit: cover; /* Ensures all images match in size */
    display: block;
}

/* Content behavior */
.article-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-title {
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.article-title a {
    text-decoration: none;
    color: inherit;
}

.article-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.article-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-read-more {
    margin-top: auto;
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
    width: fit-content;
    transition: background 0.3s;
}

.article-read-more:hover {
    background: #f8f8f8;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .article-grid-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 767px) {
    .article-grid-container { grid-template-columns: 1fr; }
}/* End custom CSS */