/* Tour List Component */

/* Container */
.tour-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

/* Item */
.tour-item {
    padding: 0;
    margin-bottom: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    background-color: #f9f9f9;
    width: 100%;
    box-sizing: border-box;
}

/* Link wrapper */
.tour-link {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.tour-link:hover {
    background-color: #f0f0f0;
}

/* Thumbnail */
.tour-thumbnail {
    flex-shrink: 0;
    width: 200px;
    min-width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
}

.tour-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* Content */
.tour-content {
    font-family: "Open Sans", sans-serif;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.tour-content h2 {
    font-family: "MontSerrat", sans-serif;
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #308282;
}

.tour-description {
    font-family: "Open Sans", sans-serif;
    margin: 10px 0 0 0;
    color: #231f20;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-link {
        flex-direction: row;
        align-items: center;
        padding: 10px;
        gap: 10px;
    }

    .tour-thumbnail {
        width: 100px;
        min-width: 100px;
        height: 100px;
    }

    .tour-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .tour-content {
        text-align: left;
    }

    .tour-content h2 {
        font-size: 16px;
        margin: 0 0 5px 0;
    }

    .tour-description {
        font-family: "Open Sans", sans-serif;
        font-size: 14px;
        margin: 5px 0 0 0;
    }
}
