.tour-list {
    width: 100%;
    max-width: 1100px;   /* control overall width */
    margin: 0 auto;      /* center align */
    padding: 0 15px;     /* small side spacing */
}

.tour-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    background: #f9f9f9;
    margin-bottom: 10px;
    border-radius: 6px;
}

.tour-left {
    width: 40%;
}

.tour-left h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.tour-left p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.tour-center {
    font-family: 'Gabarito', cursive;
    width: 40%;
    font-size: 15px;
    color: #222;
}

.tour-right {
    width: 20%;
    text-align: right;
}

.view-btn {
    background: #0b6e0b;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.view-btn:hover {
    background: #095a09;
}

@media (max-width: 768px) {
    .tour-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-left, .tour-center, .tour-right {
        width: 100%;
        margin-bottom: 8px;
    }

    .tour-right {
        text-align: left;
    }
}