@font-face {
  font-family: "RobotoSlab-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/RobotoSlab-Light.woff2") format("woff2");
}
@font-face {
  font-family: "RobotoSlab-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/RobotoSlab-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Roboto-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Roboto-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Roboto-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Poppins-Bold.woff2") format("woff2");
}
.youth-detail .container {
  gap: 20px;
}
.youth-detail__title {
  color: #5c5c5c;
  font-family: "Poppins-Bold";
  --font-size: 42px;
  --font-size-rem: 2.625rem;
  --line-height: 50px;
  --line-height-rem: 3.125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  letter-spacing: -0.03em;
}
.youth-detail__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
}
.youth-detail__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.youth-detail__text p {
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.youth-detail__text h3 {
  margin-bottom: 10px;
  color: #000000;
  font-family: "Poppins-Bold";
  letter-spacing: -0.03em;
  --font-size: 24px;
  --font-size-rem: 1.5rem;
  --line-height: 34px;
  --line-height-rem: 2.125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.youth-detail__text h4 {
  margin-bottom: 10px;
  color: #000000;
  font-family: "Poppins-SemiBold";
  letter-spacing: -0.03em;
  --font-size: 20px;
  --font-size-rem: 1.25rem;
  --line-height: 30px;
  --line-height-rem: 1.875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.youth-detail__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
}
@media screen and (min-width: 992px) {
  .youth-detail .container {
    gap: 40px;
  }
  .youth-detail__title {
    --font-size: 50px;
    --font-size-rem: 3.125rem;
    --line-height: 50px;
    --line-height-rem: 3.125rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .youth-detail__content {
    flex-direction: row;
    gap: 40px;
  }
  .youth-detail__text.-half {
    width: calc((100% - 40px) / 2);
  }
  .youth-detail__image {
    width: calc((100% - 40px) / 2);
  }
}