/*

  조인스포토 루트 페이지
  
  joinsphoto.amuject.com

*/

header {
  position: relative;
  height: 100%;
  z-index: 60;
  padding: 0px 0px 0px 0px;
}
header .outwrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .inwrapper {
  width: 100%;
  max-width: unset;
  margin: unset;
  padding: unset;
}
header img {
  width: 100%;
  max-height: 40vh;
  object-fit: cover;
}



#title {
  padding: 90px 0px 90px 0px;
}
#title h1 {
  font-size: 36pt;
  font-weight: 800;
  line-height: 120%;
}
#articles {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 7.5px 7.5px 7.5px 7.5px;
  margin-bottom: 90px;
  transition: all 0s;
}
#articles article {
  width: calc(50% - 22.5px);
  height: auto;
  min-height: 180px;
  padding: 7.5px 7.5px 7.5px 7.5px;
  transition: all 0s;
  position: relative;
}
@media (min-width:2100px) {
  #articles article {
    width: calc(33.333% - 20px);
  }
}
@media (min-width:4000px) {
  #articles article {
    width: calc(25% - 18.75px);
  }
}
@media (max-width:600px) {
  #articles article {
    width: calc(100% - 30px);
  }
}
#articles article .image {
  width: 100%;
  margin: 0 auto;
  display: flex;
}
#articles article .image img {
  max-width: 100%;
  object-fit: cover;
  /*box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.3);*/
}
#articles article .text {
  position: absolute;
  bottom: 15px;
  right: 20px;
}
#articles article .text .title {
  font-size: 20pt;
  font-weight: 700;
  text-align: right;
  line-height: 150%;
}
#articles article .text .info {
  font-size: 14pt;
  font-weight: 400;
  text-align: right;
  line-height: 150%;
}

#more .more {
  text-align: right;
  font-size: 20pt;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 180px;
}
#more .h3 {
  display: inline;
}
#more .h3:hover {
  color: var(--th);
}