.volume {
  margin: var(--g-pink) auto;
  max-width: var(--max-width);
}

.volume__wrapper {
  display: flex;
  gap: 1rem;
  margin-left: auto;
  max-width: 93.75rem;
  padding: 3.75rem 6.25rem;
  box-sizing: border-box;
  font-weight: 500;
  color: #000;
  background-color: #e5695b;

  @media (max-width: 1024px) {
    padding: 3.75rem 1.875rem;
    gap: 2rem;
    flex-direction: column;
  }
}

@media (min-width: 1025px) {
  .volume__item {
    width: 50%;
  }
}

.volume__headline {
  font-size: 25px !important;
  margin-bottom: 2rem;
  
  @media (max-width: 1024px) {
    font-size: 20px !important;
    margin-bottom: 1rem;
  }
}

.volume__body {
  font-size: 80px;
  line-height: 1;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 3px black;

  @media (max-width: 1024px) {
    font-size: 60px;
    -webkit-text-stroke: 2px black;
  }
}

.volume__subline {
  font-size: 16px;
}