/* Prefix 'crg-' (Custom RSS Grid) memastikan tidak ada konflik */
.crg-wrapper {
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

.crg-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.crg-grid-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.crg-title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
}

.crg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crg-list li {
    margin-bottom: 10px;
    font-size: 0.9em;
    line-height: 1.4;
    border-bottom: 1px dashed #eee;
    padding-bottom: 8px;
}

.crg-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.crg-list a {
    text-decoration: none;
    color: #0056b3;
    display: block;
    margin-bottom: 3px;
}

.crg-list a:hover {
    text-decoration: underline;
    color: #003d82;
}

.crg-date {
    font-size: 0.8em;
    color: #888;
}

.crg-empty {
    font-size: 0.9em;
    color: #999;
    font-style: italic;
}

/* Responsivitas untuk layar kecil, memaksanya menjadi 1 kolom jika container sempit */
@media screen and (max-width: 768px) {
    .crg-grid-container {
        grid-template-columns: 1fr;
    }
}