.story-began-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding: 40px 20px;
}

.story-began-head {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 1em;
}

.story-began-figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

.story-began-block .sb__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-began-labels {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.story-began-label-top,
.story-began-label-bottom {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #010101;
}

.story-began-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.story-began-title {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    inset: -55px 210px 0px 0px;
    font-family: var(--first-family);
    font-weight: 600;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #010101;
    margin: 0;
}

.story-began-text p {
    font-family: var(--first-family);
    font-weight: 600;
    font-size: 58px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: justify;
    color: #010101;
    margin: 0;
}

@media (max-width: 1200px) {
    .story-began-container {
        gap: 1em;
    }

    .story-began-title {
        position: relative;
        inset: 0;
    }
}

@media (max-width: 992px) {
  .story-began-container { 
    padding: 32px 18px; 
  }

  .story-began-head { 
    gap: .8em; 
  }

  .story-began-figure { 
    max-width: 180px; 
  }

  .story-began-labels { 
    gap: .25em; 
  }

  .story-began-content {
    align-items: flex-start;
  }

  .story-began-title {
    position: relative;
    inset: 0;
    font-size: 42px;
  }

  .story-began-text p { 
    font-size: 38px; 
    text-align: left;
  }
}

@media (max-width: 768px) {
  .story-began-container { 
    padding: 28px 16px; 
    flex-wrap: wrap; 
    gap: 1em; 
  }

  .story-began-head {
    gap: .75em;
  }

  .story-began-figure { 
    max-width: 140px; 
  }

  .story-began-content {
    align-items: flex-start;
  }

  .story-began-title {
    position: relative;
    inset: 0;
    font-size: 34px;
  }

  .story-began-text p { 
    font-size: 30px; 
    text-align: left;
  }
}

@media (max-width: 480px) {
  .story-began-head {
    flex-direction: column;
    align-items: flex-start;
    gap: .5em;
  }

  .story-began-figure { 
    max-width: 72%; 
  }

  .story-began-labels { 
    order: 2; 
  }

  .story-began-title {
    position: static;
    margin: 8px 0 10px;
    font-size: 28px;
  }

  .story-began-text p { 
    font-size: 24px; 
    text-align: left;
  }
}