/* revenue */
#revenue {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background-color: #e3ddd7;
  background-image: url(../img/multistore/bg.png);

  /* background-color: #fff; */
  /* background-size: cover !important; */
  /* background-position: center center !important; */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#revenue  .st-sub-txt {
  color: #e24534;
}

#revenue .cloud.left {
  left: 61px;
  top: 215px;
}

#revenue .cloud.right {
  right: 122px;
  top: 95px;
}

.revenue-inner {
  max-width: 1300px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.revenue-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#revenue .tit-wrap {
  gap: 16px;
}

#revenue .st-sub-tit {
  border: none;
  background: transparent;
  border-radius: 0;
  padding-right: 0;
  font-weight: 400;
}

#revenue .st-tit {
  /* font-family: Paperlogy; */
  font-weight: 700;
}

.revenue-highlight {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  background: linear-gradient(313deg, rgba(25, 25, 25) 30%, #191919 100%);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  will-change: clip-path;
}

.revenue-highlight span {
  color: #ffb800;
  text-align: center;
  font-size: 64px;
  font-family: Paperlogy, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  background: linear-gradient(
    137deg,
    #ffb800 18.01%,
    #d58000 31.78%,
    #ffdc80 47.51%,
    #d58000 83.25%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* store list */
.store-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  perspective: 1000px;
  justify-content: center;
}

.store-item {
  width: calc(33.3% - 13.3px);
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.store-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.store-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    153deg,
    rgba(0, 0, 0, 0.5) 32%,
    rgba(0, 0, 0, 0) 53%
  );
}

.store-name {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 1;
  color: #fff;
  font-size: 32px;
  font-family: Paperlogy;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.store-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.store-row .store-label {
  color: #e24534;
  font-family: 'Gmarket Sans', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.56px;
}

.store-row .store-value {
  color: #191919;
  font-family: 'Gmarket Sans', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.56px;
}

.store-row.profit .store-label,
.store-row.profit .store-value {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.9px;
}

@media (max-width: 1280px) {
  #revenue {
    padding: 100px 0;
  }
  .revenue-highlight span {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .store-info {
    padding: 15px;
  }
  .store-row {
    gap: 8px;
  }
  .store-row .store-label,
  .store-row .store-value {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .store-row.profit .store-label,
  .store-row.profit .store-value {
    font-size: 23px;
    letter-spacing: -0.7px;
  }
  .store-name {
    font-size: 24px;
    letter-spacing: -0.7px;
    left: 15px;
  }
  .store-list {
    gap: 15px;
  }
  .store-item {
    width: calc(33.3% - 10px);
  }
}

@media (max-width: 900px) {
  #revenue {
    padding: 80px 0;
  }
  .revenue-inner {
    gap: 50px;
  }
  #revenue .cloud {
    width: 190px;
  }
  #revenue .cloud.left {
    left: 15px;
  }
  #revenue .cloud.right {
    right: 30px;
  }
  .revenue-highlight {
    padding: 0 12px;
  }
  .revenue-highlight span {
    font-size: 44px;
    letter-spacing: -1.2px;
  }
  .store-info {
    gap: 6px;
  }
  .store-row .store-label,
  .store-row .store-value {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
  .store-row.profit .store-label,
  .store-row.profit .store-value {
    font-size: 19px;
    letter-spacing: -0.7px;
  }
  .store-name {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
}

@media (max-width: 768px) {
  /* revenue */
  #revenue {
    padding: 70px 0;
  }
  .revenue-inner {
    gap: 40px;
  }
  #revenue .tit-wrap {
    gap: 10px;
  }

  .store-item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 650px) {
  .revenue-highlight {
    padding: 0 8px;
  }
  .revenue-highlight span {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .store-item {
    border-radius: 8px;
  }
  .store-info {
    padding: 12px;
    gap: 4px;
  }
  #revenue .cloud {
    width: 160px;
  }
  #revenue .cloud.left {
    left: -40px;
  }
  #revenue .cloud.right {
    right: -35px;
    top: 20px;
  }
  .store-name {
    top: 15px;
  }
}

@media (max-width: 500px) {
  .store-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #revenue .cloud {
    width: 135px;
  }
  .revenue-highlight span {
    font-size: 28px;
  }
  .store-row .store-label,
  .store-row .store-value {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .store-row.profit .store-label,
  .store-row.profit .store-value,
  .store-name {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
}

@media (max-width: 380px) {
  .revenue-highlight span {
    font-size: 24px;
  }
  .store-row.profit .store-label,
  .store-row.profit .store-value,
  .store-name {
    font-size: 24px;
    letter-spacing: -0.7px;
  }
}
