.vgt-news-knowledge-widget {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.vgt-header {
    text-align: center;
    margin-bottom: 50px;
}

.vgt-section-title {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.vgt-main-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.vgt-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Posts Grid Layout */
.vgt-posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.vgt-main-post {
    grid-row: span 2;
}

.vgt-small-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Post Cards */
.vgt-post-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*min-height: 300px;*/
    display: flex;
    align-items: flex-end;
}

/*.vgt-large-card {*/
/*    min-height: 620px;*/
/*}*/

.vgt-small-card {
    min-height: 300px;
}

.vgt-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vgt-category-tag {
    background: #4CAF50;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: auto;
}

.vgt-post-content {
    color: white;
}

.vgt-post-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.vgt-small-card .vgt-post-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.vgt-post-excerpt {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}

.vgt-read-more {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.vgt-read-more:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

.vgt-read-more .arrow {
    transition: transform 0.3s ease;
}

.vgt-read-more:hover .arrow {
    transform: translateX(3px);
}

/* View All Button */
.vgt-view-all {
    text-align: center;
}

.vgt-view-all-btn {
    background: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.vgt-view-all-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vgt-posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vgt-main-post {
        grid-row: span 1;
    }
    
    .vgt-small-posts {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .vgt-large-card,
    .vgt-small-card {
        min-height: 250px;
    }
    
    .vgt-main-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .vgt-small-posts {
        grid-template-columns: 1fr;
    }
    
    .vgt-post-overlay {
        padding: 15px;
    }
    
    .vgt-post-title {
        font-size: 18px;
    }
    
    .vgt-small-card .vgt-post-title {
        font-size: 16px;
    }
}