/* Location List Widget Styles */
.location-list {
    background: transparent;
}

.location-item {
    margin-bottom: 40px;
}

.location-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.location-text {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex: 1;
}

.location-number {
    font-size: 48px;
    font-weight: 300;
    color: #cccccc;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 5px;
}

.location-info {
    flex: 1;
}

.location-title {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.location-description {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.location-image {
    width: 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.location-item:hover .location-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-item:hover .location-image img {
    transform: scale(1.1);
}

.location-item:hover .location-title {
    color: #007cba;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .location-content {
        gap: 20px;
    }
    
    .location-text {
        gap: 20px;
    }
    
    .location-image {
        width: 250px;
        height: 170px;
    }
    
    .location-number {
        font-size: 40px;
    }
    
    .location-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .location-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .location-text {
        gap: 15px;
    }
    
    .location-image {
        width: 100%;
        height: 200px;
        align-self: center;
        max-width: 400px;
    }
    
    .location-number {
        font-size: 36px;
    }
    
    .location-title {
        font-size: 22px;
    }
    
    .location-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .location-text {
        gap: 12px;
    }
    
    .location-number {
        font-size: 32px;
    }
    
    .location-title {
        font-size: 20px;
    }
    
    .location-description {
        font-size: 14px;
    }
    
    .location-image {
        height: 180px;
    }
}