/* Articles Section */
.articles {
    padding: 100px 0;
    background: white;
}

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

.article-card {
    background: white;
    /* border-radius: 16px; */
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e3f2fd;
    position: relative;
    height: 100vh;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 31, 84, 0.15);
    border-color: #00c853;
}

.article-image {
    height: 100%;
    background: linear-gradient(135deg, #00c853, #5b9bd5);
    display: flex;
    background-position-y: top;
    background-position-x: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}

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

.article-date {
    color: #00c853;
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

.read-more {
    color: #001f54;
    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: #00c853;
}

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

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