.article {
  align-items: center;
  display: grid;
  gap: 2rem;
  @media (min-width: 1024px) {
    grid-template-columns: 51.8rem 1fr;
    gap: 4rem;
  }
}
.article__thumb {
  position: relative;
  img {
  }
}
.article__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.article__title-set {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article__title {
  color: var(--g-color--text);
  font-size: var(--g-fz--h3);
  font-weight: 700;
  text-align: center;
}
.article__text {
  color: var(--g-color--text);
}
.bg-gray-light {
  background-color: var(--g-color--gray--light);
}
.g-section__text {
  font-weight: 500;
  color: var(--g-color--text);
}
.g-section__text-center {
  @media (min-width: 1024px) {
    text-align: center;
  }
}
.g-section__text span {
  @media (min-width: 1024px) {
    display: block;
  }
}
.goals-bg {
  align-items: center;
  display: flex;
  justify-content: center;
  background: url(./goals-bg.jpg) no-repeat center / cover;
  @media (min-width: 1024px) {
    min-height: 60rem;
  }
}
.goals {
  --border-length: 30rem;
  @media (min-width: 1024px) {
    --border-length: 76.5rem;
  }
}
.goals__title {
  color: var(--g-color--white);
  gap: 1rem;
  @media (min-width: 1024px) {
    gap: 3rem;
  }
  &:after {
    background-color: var(--g-color--white);
  }
}
.goals__label {
  color: var(--g-color--white);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: var(--g-fz--h1);
  width: min(100%, var(--border-length));
  margin-bottom: -1rem;
  @media (min-width: 1024px) {
    font-size: 6rem;
    margin-bottom: -3.5rem;
  }
  &:before {
    background-color: var(--g-color--white);
    content: "";
    height: 1px;
    width: min(100%, var(--border-length));
  }
  &:after {
    background-color: var(--g-color--white);
    content: "";
    height: 1px;
    width: min(100%, var(--border-length));
  }
}
.g-section-5__title-text {
  color: var(--g-color--white);
  font-size: var(--g-fz--p1);
  @media (min-width: 1024px) {
    font-size: var(--g-fz--h1);
  }
}
.pro__title {
  border: 1px solid var(--g-color--blue);
  border-width: 0 1px;
  color: var(--g-color--blue);
  display: inline;
  font-size: var(--g-fz--h3);
  margin: 0 auto;
  padding: 0 0.5rem;
  width: auto;
  @media (min-width: 1024px) {
    display: grid;
    padding: 0 2rem;
    text-align: center;
    width: max-content;
  }
  &:after {
    display: none;
  }
}
.splide__arrow {
  background: var(--g-color--blue) !important;
}
.splide__arrow svg {
  fill: var(--g-color--white) !important;
}
.splide__arrow--prev {
  left: -0.5rem !important;
  @media (min-width: 1024px) {
    left: -5rem !important;
  }
}
.splide__arrow--next {
  right: -0.5rem !important;
  @media (min-width: 1024px) {
    right: -5rem !important;
  }
}
.splide__slide a {
  text-decoration: none;
}
.internship-articles {
  display: grid;
  @media (min-width: 1024px) {
    grid-template-columns: repeat(4, 1fr);
  }
}
.program__articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  @media (min-width: 1024px) {
    grid-template-columns: repeat(4, 1fr);
  }
}
.program__article {
  padding: 1rem;
  @media (min-width: 1024px) {
    padding: 2rem;
  }
}
.program__article-1 {
  order: 1;
}
.program__article-2 {
  order: 2;
}
.program__article-3 {
  order: 4;
  @media (min-width: 1024px) {
    order: 3;
  }
}
.program__article-4 {
  order: 3;
  @media (min-width: 1024px) {
    order: 4;
  }
}
.program__article-blue {
  background-color: var(--g-color--blue);
}
.program__article-dark-blue {
  background-color: #091b30;
}
.company-set__contents {
  display: grid;
  gap: 1rem;
}
.company-set__content {
  display: grid;
  @media (min-width: 1024px) {
    grid-template-columns: 17rem 1fr;
  }
}
.company-set__content-2 {
  display: grid;
  gap: 1rem;
  @media (min-width: 1024px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 3rem;
  }
}
.company-set__title {
  background-color: var(--g-color--blue);
  color: var(--g-color--white);
  font-weight: 500;
  text-align: center;
  padding: 1rem;
}
.company-set__label {
  color: var(--g-color--text);
  font-size: var(--g-fz--p2);
  background-color: #e9e9e9;
  padding: 1rem;
  @media (min-width: 1024px) {
    padding: 1rem 3rem;
  }
}
.no-border{
  border:none!important;
}
.alumni-text{
  font-size: var(--g-fz--p1)!important;
}
.alumni-video{
  margin: auto;
  padding: 0 2rem;
  text-align: center;
  width: 100%;
  @media (min-width: 1024px) {
    width: 780px;
  }
}
.alumni-video iframe{
  margin: auto;
  aspect-ratio: 560 / 315;
  width: 100%!important;
  height: auto!important;
}