.fakta-update-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    padding: 25px 25px;
    box-sizing: border-box;
}

.fakta-update-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-wrap: break-word;
}

.fakta-update-column a {
    text-decoration: none !important;
}

/* Header */
.fakta-update-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

.fakta-update-cat-name {
    font-size: 25px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.fakta-update-cat-color-1 {
    color: #dc2626 !important;
}

.fakta-update-cat-color-2 {
    color: #16a34a !important;
}

.fakta-update-cat-color-3 {
    color: #ea580c !important;
}

.fakta-update-cat-color-4 {
    color: #dc2626 !important;
}

.fakta-update-see-all {
    font-size: 13px;
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.fakta-update-see-all:hover {
    color: #b91c1c;
}

/* Featured Post */
.fakta-update-featured {
    margin-bottom: 16px;
}

.fakta-update-image-link {
    display: block;
    margin-bottom: 12px;
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    max-width: 100%;
    border: 1px solid #eee;
}

.fakta-update-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fakta-update-image-link:hover .fakta-update-image {
    transform: scale(1.05);
}

.fakta-update-no-image {
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.fakta-update-meta {
    margin-bottom: 8px;
}

.fakta-update-date {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 400;
}

.fakta-update-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin: 0 0 5px 0 !important;
}

.fakta-update-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fakta-update-title a:hover {
    color: #dc2626;
}

.fakta-update-excerpt {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #6b7280 !important;
    margin: 0 !important;
}

/* Recent Titles List */
.fakta-update-column .fakta-update-recent-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 1px solid #e5e7eb;
    padding-top: 12px !important;
}

.fakta-update-column .fakta-update-recent-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f4f6;
    list-style: none !important;
}

.fakta-update-column .fakta-update-recent-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.fakta-update-column .fakta-update-recent-list li .fakta-update-recent-date {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.4;
}

.fakta-update-column .fakta-update-recent-list li a {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    line-height: 1.3;
    display: block;
    transition: color 0.2s ease;
}

.fakta-update-column .fakta-update-recent-list li a:hover {
    color: #dc2626;
}

/* Responsive */
@media (max-width: 1024px) {
    .fakta-update-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .fakta-update-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
    
    .fakta-update-header {
        margin-bottom: 12px;
    }
    
    .fakta-update-cat-name {
        font-size: 16px !important;
    }
    
    .fakta-update-title {
        font-size: 16px !important;
    }
}
