/* Articles Section */
.articles-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.article-content {
    padding: 20px;
}

.article-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.article-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    word-break: break-word;
    margin-bottom: 1rem;
}

.article-title a {
    flex-grow: 1;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
}

.article-title .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 18px;
    color: #555;
    cursor: pointer;
    margin-left: auto;
    transition: color 0.3s ease;
}

.article-title .material-symbols-outlined:hover {
    color: #1b1b1b;
}

.article-description {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-tag {
    font-size: 13px;
    color: #fff;
    border-radius: 12px;
    padding: 5px 10px;
    text-transform: capitalize;
}

.tag-games {
    background-color: #ffe6e6;
    color: #d92929;
    font-weight: 700;
}

.tag-game-engine {
    background-color: #e6f7f5;
    color: #00796b;
    font-weight: 700;
}

.tag-tech {
    background-color: #f6e8d6;
    color: #a05a2c;
    font-weight: 700;
}

.tag-eventos {
    background-color: #e6e9ff;
    color: #304ffe;
    font-weight: 700;
}

.tag-news {
    background-color: #ffe6cc;
    color: #e65100;
    font-weight: 700;
}
.tag-default {
    background-color: #d9e6f2; 
    color: #2c3e50; 
    font-weight: 700;
}


/* "View All Blogs" Button */
.view-all-button {
    display: block;
    text-align: center;
    margin: 40px auto 0;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #0073e6;
    border: 2px solid #0073e6;
    border-radius: 30px;
    background: none;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.view-all-button:hover {
    background: #0073e6;
    color: #fff;
}
