/* Start custom CSS *//*Estilos cards related articles*/
  
    .dynamic-cards-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;

    }
    
    .dynamic-card {
        background: #F3F3F3 ;
        border-radius: 30px;
        overflow: hidden;
        width: 285px;
        min-height: 339px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .dynamic-card:hover {
       cursor: pointer;
    }
    
    .card-image {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        overflow: hidden;
    }
    
    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        border-radius: 20px;
    }
    
    .dynamic-card:hover .card-image img {
        transform: scale(1.05);
    }
    .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 180px;
       padding: 20px;
        padding-top: 0px;
        text-align: center;
}

    
    .card-category {
        display: inline-block;
        background: #fff;
        padding: 6px 14px;
        border-radius: 20px;
       font-size: 18px;
            font-weight: 500;
            color: #272727;
          
        
    }
    
    .card-title {
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 16px;
        color: #272727;
        line-height: 1;
        text-align: center;
        
        
    }
    
    .card-link {
        display: inline-block;
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }
    
    .card-link:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    
    .no-posts-found {
        text-align: center;
        padding: 40px;
        background: #f8f9fa;
        border-radius: 10px;
        width: 100%;
        border: 2px dashed #dee2e6;
        color: #6c757d;
    }
       .category-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: relative;
        top: -1px;
        background-color: #42CFA3;
        display: inline-block;
    }/* End custom CSS */