.tour-small-item{
  height: 430px;
  min-height: 430px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 2px 10px rgba(49, 57, 63, 0.2);
  overflow: hidden;
  border: 1px solid white;
  width: 100%;
  display: flex;
  direction: ltr;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit !important;
}
.tour-small-item * {
  text-decoration: none !important;
}
.tour-image-wrapper{
  flex: 1;
  background-size: cover;
  background-position: center;
  width: 100%;
  transition: 0.3s ease;
}
.tour-info-box {
  position: relative;
  background-color: white;
  padding: 10px 10px 50px;
  box-sizing: border-box;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.tour-location-info-box{
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 40px;
}
.tour-location-info-small-box{
  flex-direction: row;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.tour-info-box-small-data{
  margin: 4px 0;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--black-color);
  text-align: right;
}
.tour-title{
  font-family: var(--font-main);
  font-weight: bold;
  font-size: 16px;
  color: var(--black-color);
  text-align: right;
  margin: 5px 10px;
  text-decoration: none;
}
.tour-description {
  margin: 0px 10px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--black-color);
  text-align: right;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item_general_tag_section{
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: row;
  max-height: 50px;
  gap: 10px;
}
.item-general-tag{
  flex: 0 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  background-color: var(--red-color);
  font-family: var(--font-main);
  font-size: 10px;
  white-space: nowrap;
}
.item-tag-new-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
}
.item-tag-new-img {
  display: block;
  width: 120%;
  height: auto;
}
.item-icon-img{
  width: 15px;
  height: 15px;
}
.item-tag-cool-img{
  position: absolute;
  top: -90px;
  left: 40px;
}
.item-tag-brave-img{
  position: absolute;
  top: -130px;
  left: 20px;
}
.item-tag-new-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%) rotate(-20deg);
  color: white;
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-main);
  pointer-events: none;
}
.item-tag-price-wrapper {
  position: absolute;
  left: 20px;
  top: -30px;
  display: inline-block;
}
.item-tag-price-img {
  display: block;
  width: 100%;
  height: auto;
}
.item-tag-price-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  color: var(--red-color);
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-main);
  pointer-events: none;
}
.tour-hover-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: var(--red-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  color: white;
  font-family: var(--font-main);
  font-size: 16px;
}
.tour-small-item:hover .tour-hover-box {
  transform: translateY(0);
}