/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #252422;
}

.travel-articles {
    padding: 50px;
}

/* Header */
.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.articles-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #252422;
}

.articles-header i {
    color: #eb5e28;
    margin-right: 8px;
}

.articles-header a {
    text-decoration: none;
    font-size: 16px;
    color: #eb5e28;
    transition: color 0.3s ease;
}

.articles-header a:hover {
    color: #eb5e28;
}

/* Grid Layout */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

/* Article Card */
.article-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.article-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.article-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    text-align: center;
    transition: bottom 0.5s ease;
}

.article-card:hover .article-overlay {
    bottom: 0;
}

.article-overlay h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.article-overlay p {
    font-size: 14px;
    color: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 768px) {
   
}

@media (max-width: 480px) {
 
    
    .articles-header  {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
  
}