main {
    max-width: 75rem;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
}

main section {
    margin-bottom: 3.5rem;
}

main section h2 {
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 800;
    color: #222;
    border-bottom: 1px solid #ddd;
}

main section article {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 1.125rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 1rem;
    transition: .25s ease;
}

main section article:hover {
    border-color: #ccc;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, .06);
    transform: translateY(-0.125rem);
}

main section article img {
    flex: 0 0 17.5rem;
    width: 17.5rem;
    height: 11.25rem;
    object-fit: cover;
    border-radius: .75rem;
    background: #f4f4f4;
}

main section article h3 {
    margin: .125rem 0 .5rem;
    font-size: 1.15rem;
    line-height: 1.9;
    font-weight: 700;
    color: #222;
}

main section article p {
    margin: 0 0 .625rem;
    font-size: .9375rem;
    line-height: 2;
    color: #777;
}

main section article time {
    font-size: .75rem;
    line-height: 1.5;
    color: #999;
}

@media (max-width: 768px) {

    main {
        padding: 1.75rem 1rem;
    }

    main section {
        margin-bottom: 2.5rem;
    }

    main section h2 {
        margin-bottom: 1.125rem;
        padding-bottom: .625rem;
        font-size: 1.25rem;
    }

    main section article {
        display: block;
        margin-bottom: 1rem;
        padding: .875rem;
    }

    main section article img {
        width: 100%;
        height: 12rem;
        margin-bottom: .75rem;
    }

    main section article h3 {
        margin: 0 0 .4rem;
        font-size: 1rem;
        line-height: 1.8;
    }

    main section article p {
        margin-bottom: .5rem;
        font-size: .875rem;
        line-height: 1.9;
    }

    main section article time {
        font-size: .6875rem;
    }
}