.selected-works-section {
  
}

.selected-works-section-title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.5rem;
  padding-top: calc( var(--default-padding) * 3);
  padding-bottom: calc( var(--default-padding) * 3);
  text-transform: uppercase;
  text-align: center;
}

.projects-section {
  margin:0 auto;
}

.works-cnt {
  display: flex;
  gap: var(--default-padding);
  flex-wrap: wrap;
  column-count: 2;
}
.works-cnt > .work {
  flex: 0 0 calc((100% - var(--default-padding)) / 2);
}


.work-title {
  font-size: 1rem;
  padding-top: 1rem;
  text-transform: uppercase;
  font-weight:700;
}
.work-subtitle {
  font-size: 2rem;
  padding: 10px 0;
  text-transform: none;  
  font-weight:700;
}

.works-cnt img {
  width: 100%;
  height: auto;
  display: block;
}

.greatest-hits-btn {
}

.selected-work-btn {

}

/* Small devices */
@media (min-width: 576px) {
  
}

/* Medium devices */
@media (min-width: 768px) {

  .selected-works-section-title {
    font-size: 3rem;    
    line-height: 3rem;
  }
  
  .works-cnt {

    column-count: 3;
  }
  
  .works-cnt > .work {
    flex: 0 0 calc((100% - var(--default-padding) * 2) / 3);
  }
}

/* Large devices */
@media (min-width: 992px) {
  .selected-works-section-title {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}

/* X-Large devices */
@media (min-width: 1200px) {
  
  .selected-works-section-title {
    font-size: 4.5rem;
    line-height: 4rem;
  }
}

/* XX-Large devices */
@media (min-width: 1400px) {

}