.articles-row, .article-row {
    display: grid;
    justify-content: center;
    margin-top: 30px;
}

.articles-content, .article-content {
    width: 1028px;
}
.article-item {
    margin-top: 20px;
    height: 300px;
    display: grid;
    column-gap: 10px;
    grid-template-columns: 4fr 5fr;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.article-item .article-image {
    background-size: 180px 50px;
    background-repeat: no-repeat;
    background-position: center;
}
.article-item .article-image img {
    width: 100%;
    height: 100%;
}

.article-item .article-desc {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-item .article-desc a.read-more-btn {
    float: right;
    background: transparent;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-radius: 4px;
}

.article-item .article-title-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.articles-content .load-more {
    justify-content: center;
    display: flex;
    padding: 20px;
}

.articles-content .load-more a {
    background: transparent;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-radius: 4px;
}

.article-content {
    padding: 16px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-content .article-image img {
    width: 100%;
}

.article-content .article-title h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 28px !important;
    line-height: 32px;
}

.article-title > a {
    list-style-type: none;
    text-decoration: none;
}

.article-content .article-hashtags {
    display: flex;
    flex-wrap: wrap;
    color: #ABAEAF;
    font-size: 16px;
    gap: 16px;
}

.article-content .article-actions {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.article-content .article-actions .actions {
    display: flex;
    color: #ABAEAF;
    gap: 16px;
    justify-content: end;
}

.article-content .article-actions img {
    width: 24px;
    height: 24px;
}


#custom-breadcrumbs ul {
    list-style-type: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    padding: 0;
    font-family: "Montserrat Thin";
}

#custom-breadcrumbs ul li {
    display: inline-block;
}
#custom-breadcrumbs a {
    text-decoration: none;
}

#custom-breadcrumbs ul li:first-child::before {
    content: "";
    vertical-align: middle;
}

#cookie-modal-content {
    display: none;
}
.swal2-html-container .cookie-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 12px;
}

.cookie-new-modal {
    width: 816px;
}

.cookie-info .cookie-logo {
    display: flex;
    justify-content: center;
}

.cookie-info .cookie-logo .img-content {
    padding: 20px;
}

.cookie-info .cookie-logo img.logo {
    width: 280px;
    height: 46px;
}
.cookie-info p {
    margin-top: 20px;
}
.cookie-info .cookie-title {
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.cookie-info .cookie-desc {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

.cookie-info .cookie-buttons {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cookie-info .cookie-buttons .cookie-cancel,
.cookie-info .cookie-buttons .cookie-agree {
    width: 286px;
    padding: 14px;
    font-family: "Inter";
    font-size: 18px;
    font-weight: 500;
}


@media only screen and (max-width: 1024px) {
    #custom-breadcrumbs {
        padding: 10px;
    }
    .articles-content, .article-content {
        width: 100%;
    }

    .article-item {
        grid-template-columns: 1fr;
        height: auto;
    }
}

