.articles-section {
    padding: 90px 20px;
    background: #f8f6f2;
}


/* Heading */

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.section-kicker {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #8b6f47;
    margin-bottom: 8px;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c211a;
}

.section-heading p {
    margin: 0;
    color: #777;
    font-size: 1rem;
    line-height: 1.7;
}


/* Article container */

.articles-list {
    max-width: 1000px;
    margin: 0 auto;

    background: #ffffff;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}


/* Article */

.article-item {
    display: grid;
    grid-template-columns: 65px 1fr 45px;
    align-items: center;

    gap: 20px;

    padding: 24px 28px;

    text-decoration: none;

    border-bottom: 1px solid #e9e5df;

    transition:
        background-color 0.25s ease,
        padding-left 0.25s ease;
}


/* Remove border from last item */

.article-item:last-child {
    border-bottom: none;
}


/* Hover */

.article-item:hover {
    background: #faf8f4;
    padding-left: 34px;
}


/* Number */

.article-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a28a68;
}


/* Title */

.article-title {
    font-size: 1.08rem;
    line-height: 1.65;
    color: #332a24;
}


/* Arrow */

.article-arrow {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ddd6cd;
    border-radius: 50%;

    color: #76614a;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.article-item:hover .article-arrow {
    background: #76614a;
    color: #ffffff;
    transform: translate(2px, -2px);
}


/* Mobile */

@media (max-width: 576px) {

    .articles-section {
        padding: 65px 15px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .articles-list {
        border-radius: 16px;
    }

    .article-item {
        grid-template-columns: 40px 1fr 34px;
        gap: 10px;
        padding: 20px 16px;
    }

    .article-item:hover {
        padding-left: 16px;
    }

    .article-title {
        font-size: 1rem;
        line-height: 1.6;
    }

    .article-number {
        font-size: 0.78rem;
    }

    .article-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

}
