.angel-bag__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  min-height: calc(100vh - 120px);
}

.angel-bag__photo {
  position: relative;
  overflow: hidden;
}

.angel-bag__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 853 / 1280;
  object-fit: cover;
  object-position: center;
}

.angel-bag__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}

.angel-bag__description--title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.angel-bag__description--text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.angel-bag__description--text p:last-child {
  margin-bottom: 0;
}

.angel-bag__description--link {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 32px;
  background: #000000;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  align-self: flex-start;
}

@media screen and (max-width: 1024px) {
  .angel-bag__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
  }

  .angel-bag__description {
    border-left: none;
    padding: 40px 24px;
  }

  .angel-bag__description--title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 480px) {
  .angel-bag__body {
    grid-template-rows: 80vw auto;
  }

  .angel-bag__description {
    padding: 32px 16px;
  }

  .angel-bag__description--title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .angel-bag__description--text p {
    font-size: 16px;
  }

  .angel-bag__description--link {
    width: 100%;
    text-align: center;
    align-self: stretch;
  }
}
