/* service.css */

.examples-of-services__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.examples-of-services__title span {
  font-weight: bold;
  color: var(--color-accent-yellow);
  font-size: calc(var(--font-size-body) + 1px);
  text-shadow: 2px 2px 3px var(--color-green-shadow);
  margin-bottom: 5px;
  border-radius: 5px;
}

.gradation-line {
  display: inline-block;
  bottom: 5px;
  width: 75px;
  height: 4px;
  background: linear-gradient(to right, var(--color-teal), var(--color-file-button), var(--color-teal));
}

.examples-of-services__list {
  margin: 20px auto 0;
  list-style-type: disc;
  width: fit-content;
}

.sec-cta {
  margin-top: 0;
}

@media (max-width: 480px) {
    .examples-of-services__title span {
        font-size: calc(var(--font-size-responsive-480-body) + 1px);
    }
}