#courses {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 30px;
    gap: 30px;
    /* color: white; */
    font-family: 'Assistant', sans-serif;
    background-image: linear-gradient(to right, rgb(223, 223, 223), rgb(254, 254, 254));
}

#courses h2 {
    font-weight: 200;
    font-size: clamp(30px, 3vw, 36px);
}

#courses h3 {
    font-weight: 200;
}

#courses p {
    font-weight: 100;
}

#coursesWrapper {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(2, 1fr); /* 3 עמודות שוות */
  grid-template-rows: repeat(2, auto);   /* 2 שורות; גובה לפי התוכן */
  gap: 30px;
}

@media (max-width: 768px) {
    #coursesWrapper {
        grid-template-columns: repeat(1, 1fr);
     }
   }

.courseWrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 80%;
    border-radius: 10px;
    background-color: white;
}

@media (max-width: 1300px) {
    .courseWrapper {
        flex-direction: column;
     }
   }

.coursesImg {
    width: 100px;
}