<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Blog Articles Section Styles - Figma Accurate */

.blog-articles-section.uk-container {
    padding-top: 70px;
    padding-bottom: 70px;
    max-width: 1340px;
}

.blog-articles-section .section-title {
    color: var(--color-text-dark);
    margin-bottom: 8px;
    text-align: center;
}

.blog-articles-section .section-subtitle {
    line-height: normal;
    color: var(--color-text-dark);
    text-transform: lowercase;
    letter-spacing: 1px;
    text-align: center;
    max-width: 876px;
    margin: 1rem auto 40px auto;
}

.blog-articles-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    width: calc(100% + 30px);
    flex-wrap: wrap;
    margin-left: -15px;
    margin-top: 64px;
}

.uk-grid &gt; *.blog-article-card-wrapper {
    padding: 0 15px;
    align-self: stretch;
}

.blog-article-card {
    min-width: 260px;
    max-width: 100%;
    background: var(--color-text-white);
    border-radius: 8px;
    outline: 1px var(--color-border-light) solid;
    outline-offset: -1px;
    box-shadow: 10px 8px 28px var(--color-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    align-self: stretch;
}

.blog-article-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--color-text-white);
    border-top: 3px solid var(--color-primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 260px;
}

.blog-article-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: block;
}

.blog-article-body {
    padding: 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.blog-article-card .blog-article-link {
    font-weight: var(--fw-700);
    font-size: var(--fs-16);
    line-height: normal;
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 0;
    display: inline-block;
    margin-top: 0;
    transition: color 0.2s ease;
}

.blog-article-link:hover {
    color: var(--color-primary-hover);
}

.blog-articles-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.btn.btn-outline.blog-articles-view-all {
    min-width: 140px;
    max-width: unset;
    width: auto;
    box-shadow: none;
}

.blog-articles-view-all:hover {
    background: var(--color-primary-hover);
    color: var(--color-text-white);
}

@media (max-width: 1200px) {
    .blog-articles-section.uk-container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .blog-articles-grid {
        max-width: 900px;
        justify-self: center;
    }

    .blog-article-card {
        min-width: 260px;
        max-width: 100%;
    }
}

@media (max-width: 960px) {
    .blog-articles-grid{
        margin-left: 0;
        width: 100%;
    }
    .blog-article-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
    .blog-articles-section .section-subtitle{
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .blog-articles-section.uk-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .blog-articles-section .section-subtitle {
        margin-bottom: 24px;
    }

    .blog-articles-grid {
        gap: 0;
        margin-top: 40px;
    }

    .blog-article-card {
        height: auto;
        min-height: 0;
        padding: 0;
    }

    .blog-article-image-wrapper {
        height: 180px;
    }

    .blog-articles-view-all {
        width: 100%;
        font-size: var(--fs-16);
        padding: 14px 0;
        height: 48px;
    }
} </pre></body></html>