.projectsList {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-size: 1.1rem;
    line-height: 1.6;
}

.projectsList__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.projectsList h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Description under title */
.projectsList_description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Projects list layout */
.projectsList__items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual project card */
.projectsList__item {
    text-decoration: none;
    display: block;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: box-shadow 0.2s;
    color: inherit;
}

.projectsList__item:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

/* Project poster */
.projectsList__poster {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Project name */
.projectsList__item h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Availability info */
.projectsList__item p {
    font-size: 1rem;
    margin: 5px 0;
}

.projectsList__platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.projectsList__description {
    margin: 10px 0;
    font-size: 0.95rem;
}

.projectsList__summary {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.projectsList__summary h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
}
