/* Base Container */

.projects-container {
  width: 284px;
  margin-left: 16px;
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 166px;
}

.project {
  width: 284px;
}

.project-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

.project-link:hover {
  color: rgb(56, 142, 59);
}

.project-title {
  height: 96px;
  font-size: 32px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  line-height: 36px;
}

.project-image {
  width: 268px;
  height: 364px;
  object-fit: cover;
  border: 1px solid rgb(33, 33, 33);
  padding: 7px;
}

.project-description {
  padding-top: 8px;
  height: 64px;
  font-size: 16px;
  text-align: justify;
}

/* Desktop Layout (Screens wider than 600px) */
@media (min-width: 766px) {
  .projects-container {
    width: 750px;
  }
}
