section {
  margin: 0;
  padding: 0;
}
.top-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
  /*align-items: center;*/
}
.top-section ul {
  list-style: none;
}
.left-div,
.right-div {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  flex: 1;
  padding: 1.25rem;
  border-radius: 5%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max(250px, min(500px, 100%));
  max-width: 500px;
  min-height: 230px;
}
.left-div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/480/chuttersnap-unsplash_480.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
  border-radius: inherit;
}
.right-div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/480/Louise-Vildmark-auf-Unsplash_480.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
  border-radius: inherit;
}
.left-div:hover,
.right-div:hover {
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s;
}
.left-div:hover a,
.left-div:hover h2 {
  color: white;
}
.servButton {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
  border: none;
}
.servButton:hover {
  transform: scale(1.1);
}
.bottom-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.article {
  padding: 1.25rem;
  max-width: 900px;
  margin: 1rem auto;
}
/* .article img {
 display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; 
  margin: auto;
} */
.article ul {
  padding-left: 2em;
}
.article h2 {
  text-align: center;
}
.article-dark {
  background-color: var(--article-color);
}

.serviceArt img {
  width: 100%;
  max-width: 200px;
  height: auto;
  gap: 0.25rem;
  display: flex;
  align-items: center;
  margin: auto;
}
.workshopImg {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
}
.workshopImg img {
  width: 100%;
  max-width: 200px;
  height: auto;
  gap: 0.25rem;
}
.workshopArt {
  gap: 2rem;
}
@media (min-width: 768px) {
  .top-section {
    flex-direction: row;
    gap: 80px;
  }
  .left-div,
  .right-div {
    min-height: 230px;
  }
  .serviceArt {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .workshopArt {
    display: grid;
    align-content: space-evenly;
    grid-template-columns: repeat(2, 1fr);
  }
  .serviceArt section {
    flex: 6;
  }
  /* .serviceArt img {
    flex: 4;
  } */
  .workshopImg {
    gap: 1rem;
  }
}
@media (min-width: 1200px) {
  .top-section {
    margin: 40px;
  }
}
