.photos-box-01__main{
  min-height: auto;
}
.photos-insta_list>ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
}

.photos-insta_list>ul>li {
  width: calc((100% - (32px * (4 - 1))) / 4);
  transition: opacity 0.5s ease;
  opacity: 1;
}
.photos-box-01__main--showroom .photos-insta_list>ul>li {
  width: calc((100% - (32px * (5 - 1))) / 5);
}
.photos-insta_list>ul>li.loading {
  opacity: 0;
}

.photos-insta_list>ul>li .styles {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px;
}

.photos-insta_list>ul>li .styles>div {
  border: 1px solid #ccc;
  border-radius: 100px;
  padding: 8px 12px;
}

.photos-insta_list>ul>li a {
  display: block;
  width: 100%;
  aspect-ratio: 232/309;
  overflow: hidden;
  margin-bottom: 20px;
}

.photos-insta_list>ul>li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s;
}

.photos-insta_list>ul>li a:hover img {
  transform: scale(1.1);
}

.photos-insta_list>ul>li .inst_user {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.photos-insta_list>ul>li .inst_user::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #9f441f;
  border-radius: 999px;
  margin-right: 6px;
}

.insta_list-photo-door,
.insta_list-photo-knob {
  font-size: 12px;
  color: #000;
}

.insta_list-photo-door {
  margin-top: 20px;
  margin-bottom: 20px;
}

.insta_list-photo-door .type,
.insta_list-photo-knob .type {
  margin-bottom: 12px;
  color: #727272;
}

.insta_list-photo-door .label {
  margin-bottom: 8px;
}

.insta_list-photo-door .txtset,
.insta_list-photo-knob .txtset {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.insta_list-photo-door .txtset .model,
.insta_list-photo-knob .txtset .model {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 6px;
  display: flex;
}

/**/
.photos-insta_list_more {
  position: absolute;
  right: 56px;
  bottom: 0px;
  transform-origin: bottom right;
  transform: rotate(90deg);
}

.photos-insta_list_more .more-btn {
  cursor: pointer;
  text-decoration: none;
  width: inherit;
  min-height: 20px;
  margin: 0;
  padding: 0 40px 0 0;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  font-family: "Hanken Grotesk", sans-serif;
  line-height: 20px;
  position: relative;
  -webkit-appearance: none;
  color: #222;
}

.photos-insta_list_more .more-btn::after {
  content: "";
  width: 30px;
  height: 20px;
  background: #1B4444 url("../../common/img/icon-plus.svg") no-repeat center/7px auto;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: background-color 0.3s;
}

.photos-insta_list_more .more-btn:hover {
  opacity: 1;
}

.photos-insta_list_more .more-btn:hover::after {
  background-color: #0D2322;
}

/**/
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .photos-insta_list>ul {
    gap: 48px 20px;
  }
  .photos-insta_list>ul>li,
  .photos-box-01__main--showroom .photos-insta_list>ul>li {
    width: calc((100% - (20px * (2 - 1))) / 2);
  }
  .photos-box-01__main--showroom .photos-insta_list>ul{
    gap: 32px 20px;
  }
  .photos-insta_list_more{
    position: relative;
    right: auto;
    bottom: auto;
    transform:none;
    text-align: right;
    margin-top: 28px;
  }
}