/*
Theme Name: Aveentour
Theme URI:
Description: Aveentour
Author: Sudip
Author URI:
Template: oceanwp
Version: 1.0
*/

/* Add your custom CSS below */
.itinerary-archive {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.itinerary-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

.itinerary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.card-title a {
    text-decoration: none;
    color: #333;
}

.card-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    text-decoration: none;
    color: #0073aa;
    font-weight: 500;
}

.read-more:hover {
    color: #005177;
}