<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * Blog Css
 * Version - 1.1.1
 * Copyright (c) 2023 Astrolab &lt;info@astrolab.com&gt; and another company
*/

.articles {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 20px;
}

@media (min-width: 30em) {
    .articles {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 60em) {
    .articles {
        grid-template-columns: repeat(4, 1fr);
    }
}

.articles .card {
    background: white;
    text-decoration: none;
    color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    top: 0;
    transition: all 0.1s ease-in;
}

.articles .card:hover {
    top: -2px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

.articles .card article {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.articles .card a h3:hover {
    color: var(--secondary-gradient);
}

.articles .card h3 {
    font-size: 20px;
    margin: 0;
    color: #000000;
    font-weight: 500 !important;
}

.articles .card p {
    flex: 1;
    line-height: 1.4;
    font-size: 17px !important;
    margin-top: 5px;
}

.articles .card span {
    font-size: 12px;
    font-weight: bold;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 2em 0 0 0;
}

.articles .card .thumb {
    padding-bottom: 60%;
    background-size: cover;
    background-position: center center;
}

@media (min-width: 60em) {
    .articles .item-1 {
        grid-column: 1/span 2;
    }

    .articles .item-1 h3 {
        font-size: 24px;
    }
}</pre></body></html>