.ne-grid-container-68e86233 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.ne-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    height: 100%;
}

.ne-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ne-image-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f7f7f7;
    padding: 16px;
    box-sizing: border-box;
}

.ne-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ne-card:hover .ne-img {
    transform: scale(1.03);
}

.ne-placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    height: 100%;
    width: 100%;
}

.ne-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.ne-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ne-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
}

.ne-title a {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.ne-title a:hover {
    opacity: 0.8;
}

.ne-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.ne-btn {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.ne-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.ne-no-posts {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 8px;
}
