.list-post-content {
    margin-top: 3rem;
    width: 100%;
    max-width: 900px;
    padding: 1.5rem;
    background: #faf9ff;
    border-radius: 20px;
    box-shadow: 0 12px 18px rgba(0,0,0,0.06);
}

.service-explain-graphic-caption{
    width: 90%;
    max-width: 250px;
}


/* GRID: 1 column on mobile */
.list-post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* DESKTOP: 2 columns (Left block + Right block) */
@media (min-width: 768px) {
    .list-post-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Each column (left/right) contains multiple inputs */
.list-post-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Input styling */
.search-input {
    width: 100%;
    min-height: 3rem;
    padding: 14px;
    font-size: 0.9rem;
    border-radius: 12px;
    border: none;
    outline: none;
    resize: none;
    background: white;
    box-shadow: inset 0 8px 12px rgba(0,0,0,0.05);
}

/* Button container */
.search-controls {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}
