.wine_search_page{
    /* padding-top: 190px; */
}
.ranking-card {
  margin-top: -180px ;
  position: relative;
  width: 660px;
  height: 418px;
  border-radius: 16px;
  overflow: hidden;
  color: #ffffff;
}
.ranking-card__bg {
  width: 660px;
  height: 418px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

.ranking-card__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 35px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
}

.ranking-card__header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 32px;
  font-weight: 600;
}

/* .ranking-card__icon {
  width: 70px;
  height: 85px;
} */

.ranking-card__title {
  margin-top: 16px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
}

.ranking-card__desc {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -1px;
}

.ranking-card__period {
  margin-top: auto;
  font-size: 20px;
  font-weight: 400;
  opacity: 0.9;
}

.product_popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: -40px;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
}

.popup_content {
  background: white;
  width: 90%;
  max-width: 500px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.popup_header {
  position: relative;
  display: flex;
  justify-content: flex-end; 
  align-items: center;
}

.popup_header h2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  font-family: 'NanumSquareNeo';
  font-weight: bold;
  white-space: nowrap; 
}

.popup_close {
    margin-top: -10px;
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
}

.popup_body {
    padding-top: 30px;
  border-top: 1px solid #eeeeee;
  margin-top: 15px;
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  font-family: 'NanumSquareNeo';
}


