#visions {
  padding: 2rem;
  padding-top: 8rem;
  min-height: 100vh;
  display: flex;
  gap: 2rem;
  flex-direction: column;
}

.intro-head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.intro-head h1,
.intro-head p {
  font-family: var(--MAIN-FONT);
}

.intro-head p {
  font-size: 2rem;
  padding-bottom: 0.6rem;
}

.intro-head p span {
  font-family: var(--MAIN-FONT);
  color: var(--THEME-COLOR);
}

.intro-head h1 {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  margin-top: 0.3rem;
  font-size: 3rem;
  font-weight: 500;
}

.visions {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.visions article {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--THEME-COLOR);
  border-radius: 20px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.04);
}

.visions article h2 {
  font-family: var(--MAIN-FONT);
  font-size: 1.2rem;
  text-decoration: underline;
}

.visions article p {
  font-family: var(--MAIN-FONT);
  line-height: 1.4;
}

.vision p {
  font-family: var(--MAIN-FONT);
  font-size: 1.2rem;
}

.vision span {
  font-family: var(--MAIN-FONT);
  text-decoration: underline;
}

@media screen and (max-width: 990px) {
  .vision p {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 810px) {
  .intro-head p {
    font-size: 1.6rem;
    padding-bottom: 0rem;
  }

  .intro-head h1 {
    margin-top: 0.3rem;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 650px) {
  .visions {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 490px) {
  #visions {
    padding: 1rem;
    padding-top: 7rem;
    gap: 1.2rem;
  }

  .intro-head p {
    font-size: 1.3rem;
    padding-bottom: 0rem;
  }

  .intro-head h1 {
    margin-top: 0.3rem;
    font-size: 2rem;
  }
}

@media screen and (max-width: 360px) {
  .intro-head h1 {
    font-size: 1.8rem;
  }
}

/* WORK CONTENT */

.work {
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  gap: 2rem;
  flex-direction: column;
}

.work-intro .date {
  font-family: var(--MAIN-FONT);
  font-size: 2rem;
  font-weight: 300;
  color: var(--THEME-COLOR);
}

.work-intro h1 {
  font-family: var(--MAIN-FONT);
  font-size: 3rem;
  font-weight: 600;
}

.work-intro .detail {
  font-family: var(--MAIN-FONT);
  font-size: 1.4rem;
}

.work-content {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.work-content img {
  border: 2px solid var(--THEME-COLOR);
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.content-left {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  width: 60vw;
}

.content-left img {
  width: 100%;
}

.content-left-lower {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.content-right {
  width: 40vw;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.content-right img {
  width: 100%;
}

.content-right-lower {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-direction: column;
}

.content-right-lower p {
  font-family: var(--MAIN-FONT);
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}

.content-right-lower a:any-link {
  width: 100%;
}

.content-right-lower button {
  height: 55px;
  width: 100%;
  font-family: var(--MAIN-FONT);
  font-size: 1.2rem;
  background: var(--THEME-COLOR);
  border: 1.5px solid white;
  border-radius: 10px;
}

.collaboration {
  font-family: var(--MAIN-FONT);
  font-size: 1.5rem;
  color: var(--THEME-COLOR);
}

/* WORK CONTENT RESPONSIVE DESIGN */

@media screen and (max-width: 990px) {
  .work-intro .date {
    font-size: 1.5rem;
  }

  .work-intro h1 {
    font-size: 2.5rem;
  }

  .work-intro .detail {
    font-size: 1.3rem;
  }

  .content-right-lower p {
    font-size: 1rem;
  }

  .content-right-lower button {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 780px) {
  .collaboration {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 635px) {
  .work {
    gap: 1rem;
  }

  .work-intro .date {
    font-size: 1.2rem;
  }

  .work-intro h1 {
    font-size: 2rem;
  }

  .work-intro .detail {
    font-size: 1.1rem;
  }

  .content-right-lower p {
    font-size: 1rem;
  }

  .work-content {
    gap: 0.5rem;
  }

  .content-left {
    gap: 0.5rem;
  }

  .content-left-lower {
    gap: 0.5rem;
  }

  .content-right {
    gap: 0.5rem;
  }

  .content-right-lower button {
    font-size: 0.9rem;
  }

  .collaboration {
    font-size: 1rem;
  }
}

@media screen and (max-width: 490px) {
  .work {
    padding: 1rem;
  }

  .work-intro .date {
    font-size: 1rem;
  }

  .work-intro h1 {
    font-size: 1.6rem;
  }

  .work-intro .detail {
    font-size: 1.1rem;
  }

  .content-left {
    width: 55vw;
  }

  .content-right {
    width: 45vw;
  }
}

@media screen and (max-width: 410px) {
  .work-content {
    flex-direction: column;
  }

  .content-left,
  .content-right {
    width: 100%;
  }
}
