/* Articles Section */
.articles {
    padding: 100px 0;
    background: #1e293b;
}

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

.article-card {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 191, 36, 0.1);
    position: relative;
    height: 55vh;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.article-image {
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    display: flex;
    background-position-y: top;
    background-position-x: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: white;
}

.article-content {
    padding: 2rem;
    background-color: rgba(30,41,59,0.95);
    position: absolute;
    bottom: 0;
    height: 50%;
    width: -webkit-fill-available;
}

.article-date {
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 500;
}

.article-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
    color: #e2e8f0;
    line-height: 1.4;
}

.article-card p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
    color: #f59e0b;
}

.portfolio-links{
    align-items: baseline;
}

i .porticonlink{
    color: #f59e0b!important;
    font-size:20px;
}