/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  GeneratePress child theme — widget Artikel Terbaru
 Author:       You
 Template:     generatepress
 Version:      1.0
*/

/* ===== Widget Artikel Terbaru ===== */
.news-widget-container {
    margin: auto;
}

.news-widget-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.news-widget-title {
    font-size: 20px;
    font-weight: 600;
    margin: auto;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-widget-title::after {
    content: '';
    flex: 1 1 auto;
    border-top: 2px solid var(--accent, #1e73be);
}

.news-widget-posts {
    display: flex;
    flex-direction: column;
}

.news-widget-post {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.news-widget-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-widget-thumbnail {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.news-widget-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.news-widget-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f3f4;
    color: #888;
    font-size: 11px;
    border-radius: 4px;
}

.news-widget-post-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.news-widget-post-title a {
    text-decoration: none;
}

.news-widget-post-title a:hover {
    color: #0073aa;
}
