.articles {
    width: 100%;
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: white;
    margin-bottom: 100px;
    margin-top: 30px;
}

.article-content {
    width: 100%;
    padding: 0 100px;
    background-color: white;
    margin-bottom: 100px;
    margin-top: 30px;
}

.article-content p, .article-content li {
    margin: 0;
    line-height: 1.7;
}

.article-content > .tag {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    align-items: center;
}

.article-content > .tag > p {
    background-color: var(--color-main);
    border-radius: 50px;
    color: white;
    padding: 4px 12px;
    font-size: 14px;
}

.article-content > .cta {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--color-gray);
    background-color: var(--color-blue-light);
    box-shadow:
0 2px 4px rgba(0,0,0,0.04),
0 8px 20px rgba(0,0,0,0.06);
    padding: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 100px;
}

.article-content > .cta > h3 {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.article-content > .cta > a {
    padding: 16px 20px;
    border-radius: 50px;
    background-color: var(--color-main);
    display: block;
    width: 300px;
    text-align: center;
    margin-top: 20px;
    transition: 0.6s ease all;
}

.article-content > .cta > a > p {
    margin: 0;
    padding: 0;
    font-weight: 600;
    color: white;
    font-size: 16px;
}

.articles > .container { 
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
 }

 .articles > .container > .article {
    width: 400px;
    min-height: 400px;
    background-color: white;
    padding: 10px;
    border: 1px solid #ededed;
    box-shadow:
0 2px 4px rgba(0,0,0,0.04),
0 8px 20px rgba(0,0,0,0.06);
    z-index: 99999;
    cursor: pointer!important;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    overflow: hidden;

 }

 .articles > .container > .article > span {
    position: relative;
    width: 100%;
    height: auto;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-four);
    border-radius: 5px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-top: 30px;
 }

 .articles > .container > .article * {
    cursor: pointer!important;
 }

 .articles > .container > .article > img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center center;
 }

 .articles > .container > .article > h2 {
    color: var(--color-main);
    font-size: 20px;
}

.articles > .container > .article > p {
    color: var(--color-gray);
    font-size: 14px;
    overflow: hidden;
}

.articles > .container > .article > label {
    font-size: 14px;
    font-weight: bold;
    color: black;
    cursor: pointer;
    margin-top: 40px;
    display: block;
}

.articles > .container > .article > font {
    color: var(--color-gray);
    font-size: 12px;
}

.article-content > .tag > a  {
    color: white;
    background-color: var(--color-second);
    text-decoration: none;
    padding: 16px 20px;
    display: block;
    width: auto;
    justify-content: center;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    transition: 0.6s ease all;
    margin-left: auto;
}

.article-content > .tag > a > p {
    margin-right: 10px;
    font-size: 16px;
    font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
    .articles > .container > .article:hover > label {
        text-decoration: underline;
    }

    .articles > .container > .article:hover {
        box-shadow:
        0 2px 4px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.12);
    }

    .article-content > .cta > a:hover, .article-content > .tag > a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    }
}

@media screen and (max-width: 1500px) {
    .articles { padding: 0 70px; }
}

@media screen and (max-width: 900px) {
    .articles, .article-content { padding: 0 20px; }
    .articles > .container { flex-direction: column; flex-wrap: nowrap; }
    .articles > .container > .article { width: 100%; }
    .article-content > .cta > a, .article-content > .tag > a { width: 100%; }
    .article-content > .tag > a { margin-top: 30px; }
    .article-content > .tag > p:last-of-type { margin-left: auto; }
}