.ceg-39392-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.ceg-39392-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ceg-39392-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.ceg-39392-image {
    display: block;
}

.ceg-39392-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

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

.ceg-39392-date,
.ceg-39392-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ceg-39392-date {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
}

.ceg-39392-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.ceg-39392-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.ceg-39392-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.ceg-39392-title a {
    text-decoration: none;
    color: #1e293b;
    transition: color 0.2s ease;
}

.ceg-39392-title a:hover {
    color: #3b82f6;
}

.ceg-39392-meta {
    font-size: 14px;
    color: #475569;
    margin-bottom: 5px;
}

.ceg-39392-description {
    font-size: 15px;
    color: #334155;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.ceg-39392-btn-wrap {
    margin-top: auto;
    padding-top: 15px;
}

.ceg-39392-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: center;
}

.ceg-39392-btn:hover {
    background-color: #2563eb;
    color: #fff;
}