
    .interesting-posts-section {
        margin: 30px 0;
    }
    
    .interesting-posts-wrapper {
        padding: 0 var(--global-content-edge-padding, 15px);
		width: 100%;
		max-width: var(--global-content-width, var(--wp--style--global--wide-size));
        margin: 20px auto;
    }
    
    .interesting-posts-header {
        background-color: #2d3748;
        padding: 15px 20px;
        border-radius: 10px 10px 0 0;
        position: relative;
        display: flex;
        max-width: fit-content;
    }
    
    .interesting-posts-title {
        color: #ffffff;
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }

    
    .interesting-posts-container {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 20px;
    }
    
    .interesting-posts-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        padding-top: 15px;
    border-top: 1px solid #2d3748;
    }
    
    .interesting-post-card {
        background: #ffffff;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    
    .interesting-post-thumbnail {
        position: relative;
        height: 200px;
        overflow: hidden;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .interesting-post-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .interesting-post-card:hover .interesting-post-thumbnail img {
        transform: scale(1.05);
    }
    
    .interesting-post-content {
        padding: 15px;
    }
    
    .interesting-post-title {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 10px 0;
        line-height: 1.4;
        color: #333;
    }
    
    .interesting-post-title a {
        color: #333;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.2s ease;
    }
    
    .interesting-post-title a:hover {
        color: #2d3748;
    }
    
    .interesting-post-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 12px;
        color: #2d3748;
        margin-top: 10px;
    }
    
    .interesting-post-date {
        font-weight: 500;
    }
    
    .interesting-post-author {
        font-weight: 500;
    }
    
    /* Адаптивность */
    @media (max-width: 768px) {
        .interesting-posts-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .interesting-post-thumbnail {
            height: 150px;
        }
        
        .interesting-posts-wrapper {
            padding: 0 10px;
        }
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
        .interesting-posts-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    