#settingsSection {
    border: 0px solid black;
    border-radius: 20px;
    width: calc(100% - 40px); /* 40 to compensate for the padding */
    background-color: #1f1f1f;
    padding: 20px;
    transition: 0.1s;
    box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.233);
    animation: appear ease-in-out;
    animation-timeline: view();
    animation-range: entry 0;
}

#settingsSection:hover{
    background-color: #222222;
    box-shadow: 0px 5px 15px rgba(1, 1, 1, 0.37);
}

#settingsSection > hr {
    border-color: #000000;
}

#contentSection {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    justify-content: left;
}

article {
    width: calc(33.333% - 14px);
    min-width: 250px;
    height: fit-content;
    overflow: hidden;
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 24px;
    box-sizing: border-box;

    transition: 0.1s;
    box-shadow: 0px 5px 10px rgba(1, 1, 1, 0.233);
    animation: appear ease-in-out;
    animation-timeline: view();
    animation-range: entry 0;
}

article:hover {
    background-color: #222222;
    box-shadow: 0px 5px 15px rgba(1, 1, 1, 0.37);
    cursor: pointer;
    transform: scale(1.01);
}

article > img {
    height: 200px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

article > h2 {
    height: 30px;
    overflow: hidden;
}

article > p {
    height: 60px;
    overflow: hidden;
}

/* Add a media query for smaller screens */
@media (max-width: 900px) {
    article {
        width: calc(50% - 10px); /* Switch to 2 per row */
    }
}

@media (max-width: 600px) {
    article {
        width: 100%; /* Full width on mobile */
    }
}