/* =====================================================
   MS POINT – Blog & Articles Styles
   SEO-Optimized | Business Standard | Accessible
   ===================================================== */

/* Section Wrapper */
.latest-articles {
    padding: 64px 20px;
    background-color: #f6f6f6;
}

/* Content Container */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Section Heading */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a3d62;
    border-left: 5px solid #0a3d62;
    padding-left: 12px;
    margin-bottom: 32px;
    line-height: 1.3;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

/* Article Card */
.article-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Article Title */
.article-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a3d62;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Article Description */
.article-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 14px;
}

/* Read More Link */
.read-more {
    font-size: 15px;
    font-weight: 600;
    color: #0a3d62;
    text-decoration: none;
}

.read-more:hover,
.read-more:focus {
    text-decoration: underline;
}

/* Accessibility: Focus States */
.article-card a:focus {
    outline: 2px dashed #0a3d62;
    outline-offset: 4px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .latest-articles {
        padding: 48px 16px;
    }
}
