.article-card {
    width: 360px;
    border: 0.5px solid var(--broom);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article-card__category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 20px 0;
}

.article-card__icon {
    width: 28px;
    height: 20px;
}

.article-card__category-name {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: var(--broom);
}

.article-card__content {
    padding: 15px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card__image {
    overflow: hidden;
    margin-bottom: 15px;
    height: 150px;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__title {
    line-height: 130%;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.article-card__excerpt {
    font-weight: 350;
    font-size: 11px;
    line-height: 120%;
    letter-spacing: 0.02em;
    margin: 0 0 15px 0;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.article-card__date,
.article-card__views,
.article-card__reading-time {
    font-weight: 350;
    font-size: 12px;
    line-height: 120%;
    opacity: 0.6;
}

.article-card__views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-card__icon-eye {
    display: inline-block;
}

.article-card__icon-eye img {
    width: 16px;
    height: 10px;
}

.article-card__button {
    display: flex;
    font-weight: 700;
    font-size: 14px;
    background-color: var(--blue);
    border-bottom-right-radius: 20px;
    color: var(--white);
    line-height: 120%;
    letter-spacing: 0.02em;
    margin-top: auto;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    height: 34px;
}

.article-card__button:hover {
    color: var(--white);
}

.article-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 0 0 20px 20px;
}

.article-card__author-photo {
    width: 35px;
    height: 35px;
    border: 0.5px solid var(--orange);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.article-card__author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__author-info {
    flex: 1;
}

.article-card__author-name {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 10px;
}

.link-author {
    color: var(--orange);
}

.article-card__author-position {
    font-weight: 350;
    font-size: 12px;
    line-height: 120%;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.article-sharing._mobile {
    display: none;
}


@media (max-width: 1023.95px) {
    .articles-grid {
        grid-template-columns: repeat(2, 360px);
    }
}

@media (max-width: 767.95px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-card {
        max-width: 360px;
        margin: 0 auto;
    }

}

@media (max-width: 430px) {   
    .article-card {
        width: 100%;
        max-width: 100%;
    }
}


.article-first-screen {
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 40px;
    align-items: start;
    padding: 40px 0;
}

.article-first-screen__left {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
}

.article-meta__stats {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-icon {
    width: 34px;
    height: 20px;
    opacity: 0.6;
    text-align: center;
}

.meta-text {
    font-weight: 350;
    font-size: 14px;
    line-height: 120%;
    color: var(--blue);
    opacity: 0.6;
}

.article-meta__dates {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 13px;
}

.meta-date {
    font-weight: 350;
    font-size: 14px;
    line-height: 120%;
    color: var(--blue);
    opacity: 0.6;
}

.article-sharing {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sharing-block {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.sharing-title {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

.copy-link-btn {
    font-weight: 400;
    font-size: 14px;
    text-decoration: underline;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
}

.copy-link-btn:hover {
    color: var(--broom);
}

.article-first-screen__right {
    width: 560px;
    height: 244px;
}

.article-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.article-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1023.95px) {
    .article-first-screen {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 30px;
    }
    
    .article-first-screen__right {
        width: 100%;
        height: auto;
        max-width: 560px;
    }
    
    .article-meta {
        gap: 40px;
    }

    .article-sharing:not(.article-sharing._mobile) {
        display: none !important;
    }

    .article-sharing._mobile {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .article-meta__stats {
        flex-direction: row;
        order: 2;
    }

    .copy-link-btn {
        margin-top: 30px;
        width: 100px;
    }
}

@media (max-width: 767.95px) {
    .article-meta {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-first-screen__left {
        gap: 40px;
    }
    
    .sharing-icons {
        flex-wrap: wrap;
    }
}