
/* -----------------------------------------------------------------------------
 * Shortcode Styles for Promobile Articles grid, news tab
 * -------------------------------------------------------------------------- */

.pm-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
}
.pm-article {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    margin-right: 3px;
    margin-left: 3px;
}
.pm-article-thumb {
    max-width: 308px;
    border-right: 1px #eee solid;
}
.pm-article-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;  
}
.pm-article-content {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pm-article-title {
    font-size: 20px;
    font-weight: bold;
    font-family: Abel;
    margin: 0 0 10px;
}
.pm-article-title a {
    color: #222;
    text-decoration: none;
}
.pm-article-title a:hover {
    color: #c00;
}
.pm-article-excerpt {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}
.pm-article-meta {
    font-size: 13px;
    color: #888;
    display: flex;
    gap: 15px;
    align-items: center;
}
.pm-article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.pm-article-meta i {
    font-style: normal;
}
@media (max-width: 768px) {
    .pm-article-thumb {
    width: 40%;
    border-right: 1px #eee solid;
    }
.pm-article-excerpt {
    display: none;
}
.pm-article-title {
    font-size: 15px;
}
.pm-article-meta {
    font-size: 12px;
}
.pm-article-content {
    padding: 5px 5px 0px 10px;
}
}
/*css for news articles grid ends here*/

