.destination-folder {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: all 0.55s ease;
    overflow: hidden;
    height: 100%;
}

.destination-folder:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.folder-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.folder-icon {
    font-size: 1.4rem;
    margin-right: 15px;
}

.folder-info {
    flex: 1;
}

.folder-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.tour-count {
    font-size: 1.19rem;
    color: #6c757d;
}

.folder-image {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.folder-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.folder-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.category-badge .badge {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
}

.folder-description {
    font-size: 1.11rem;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.folder-actions {
    display: flex;
    gap: 10px;
}

.folder-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
}

.folder-actions .btn i {
    font-size: 1.11rem;
}

@media (max-width: 768px) {
    .folder-header {
        padding: 15px;
    }

    .folder-title {
        font-size: 1.22rem;
    }

    .folder-image img {
        height: 150px;
    }
}

.tour-item .details .name a {
    font-family: FFSuperGroteskWebProMedium;
    font-size: 1.11rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.7;
    text-decoration: none;
    color: #231f20;
    padding: 10px 0;
    display: block;
    cursor: pointer;
  }
  .tour-item .facts {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 2px solid #918f8f;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .tour-item .facts ,
  .tour-item .facts .duration,
  .tour-item .facts .destination,
  .tour-item .facts .price, .touring{
    font-size: 1rem;
    font-weight: normal;
    line-height: 22.8px;
    letter-spacing: 0.02em;
    color: #808184;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    border-bottom: 1px solid #f2f2f2;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8px 0 8px 34px;
    background-repeat: no-repeat;
    background-position: center left 5px;
    min-height: 39px;
  }

  .tour-item .facts .day_tours {
    background-image: url('../images/icons_style-day_tours.svg');
  }
  .tour-item .facts .touring {
    background-image: url('../images/icons_style-road.svg');
  }
  .tour-item .facts .trails {
    background-image: url('../images/icons_style-trails.svg');
  }
  .tour-item .facts .epic {
    background-image: url('../images/icons_style-epic.svg');
  }
  .tour-item .facts .weekender {
    background-image: url('../images/icons_style-weekender.svg');
  }
  .tour-item .facts .duration {
    background-image: url('../images/icons_days.svg');
  }
  .tour-item .facts .destination {
    background-image: url('../images/icons_destination.svg');
  }
  .tour-item .facts .price {
    background-image: url('../images/icons_price.svg');
  }