.elementor-553 .elementor-element.elementor-element-dffc1ad{--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;--padding-top:0px;--padding-bottom:200px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */.article-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.article-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 30%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item img {
    width: 100%;
    height: auto;
}

.article-item h2 {
    font-size: 1.2em;
    margin: 10px;
}

.article-item a {
    display: block;
    margin: 10px;
    padding: 10px;
    text-align: center;
    background: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.article-item a:hover {
    background: #005bb5;
}

@media (max-width: 768px) {
    .article-item {
        width: 100%;
    }
}

#load-more {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#load-more:hover {
    background-color: #005a8d;
}

.article-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.article-item {
    width: calc(33.333% - 16px);
    box-sizing: border-box;
}

.article-item img {
    max-width: 100%;
    height: auto;
}

#load-more {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    text-align: center;
}

#load-more:hover {
    background-color: #005177;
}/* End custom CSS */