.cpg-48585-wrapper {
    width: 100%;
    margin-bottom: 40px;
}

.cpg-48585-section-title {
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.cpg-48585-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

.cpg-48585-post-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cpg-48585-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cpg-48585-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/2;
    object-fit: cover;
}

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

.cpg-48585-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.cpg-48585-title a {
    text-decoration: none;
    color: #333;
}

.cpg-48585-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.cpg-48585-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
    flex-grow: 1;
}

.cpg-48585-load-more-container {
    text-align: center;
    margin-top: 30px;
}

.cpg-48585-load-more-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cpg-48585-load-more-btn:hover {
    background-color: #555;
}

.cpg-48585-load-more-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cpg-48585-grid {
        grid-template-columns: 1fr !important;
    }
}