.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    width: calc(86% - 40px);
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    justify-content: center;
}

.card {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-top: 0;
    overflow: hidden; /* Hide any overflow */
    text-overflow: ellipsis; /* Display an ellipsis (...) if the title is too long */
    white-space: nowrap; /* Ensure the title stays in a single line */
}

.card p {
    margin-bottom: 0;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
}