.postListIntro.--activities .postListIntro__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.postListIntro.--activities:not(.--activitiesCompact) .postListIntro__list {
    margin-bottom: 3rem;
}

.postListIntro.--activities .postListIntro__post {
    display: grid;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: #ebf4ff;
}

.postListIntro.--activities .postListIntro__post:hover {
    box-shadow: 0 0 1rem rgba(78, 78, 78, 0.20);
}

.postListIntro.--activities .postListIntro__text {
    padding: 0;
}

.postListIntro.--activities .postListIntro__title {
    margin-top: 0;
}

.postListIntro.--activities .postListIntro__subtitle {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.postListIntro.--activities .postListIntro__subtitle::before {
    margin-right: .5rem;
    font-family: 'fjell', sans-serif;
    content: '\1f4cd';
}

.postListIntro.--activities .postListIntro__dateWrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.postListIntro.--activities .postListIntro__dateDay {
    display: block;
    font-weight: 700;
    font-size: 3em;
    line-height: 1em;
}

.postListIntro.--activities .postListIntro__dateMonthYear {
    text-transform: lowercase;
    white-space: nowrap;
}

.postListIntro.--activities .postListIntro__introduction p {
    margin-bottom: 1rem;
}

.postListIntro.--activities .postListIntro__readMoreLink {
    position: relative;
    bottom: 0;
}

.postListIntro__postLink,
.postListIntro__postLink:hover {
    color: inherit;
    text-decoration: none;
}

.postListIntro__postLink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (min-width: 568px ) {
    .postListIntro.--activities .postListIntro__post {
        grid-template-columns: 0.5fr 4fr;
        gap: 2rem;
    }

    .postListIntro.--activities .postListIntro__dateWrapper {
        align-items: center;
    }
}

/*
 * Compact
 */

.postListIntro--activitiesCompact:not(.postListIntro.--activities) .postListIntro__post {
    grid-template-columns: none;
    gap: 1rem;
}

.postListIntro--activitiesCompact:not(.postListIntro.--activities) .postListIntro__text {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
}

.postListIntro--activitiesCompact:not(.postListIntro.--activities) .postListIntro__dateWrapper {
    align-items: flex-start;
}

/* Show only the first 3 items that are next in line */

.postListIntro.--activitiesCompact .postListIntro__post {
    display: none;
}

.postListIntro.--activitiesCompact .postListIntro__post:nth-child(1),
.postListIntro.--activitiesCompact .postListIntro__post:nth-child(2),
.postListIntro.--activitiesCompact .postListIntro__post:nth-child(3) {
    display: block;
}
