.latest-guides-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.latest-guides-header .section-heading {
    margin-bottom: 0;
}

.latest-guides-all {
    flex: 0 0 auto;
    min-height: 44px;
    gap: .55rem;
    white-space: nowrap;
}

.latest-guides .post-grid {
    align-items: stretch;
}

.latest-guides .post-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    height: 100%;
    gap: 0;
}

.latest-guides .post-card h3 {
    margin-bottom: .8rem;
}

.latest-guides .post-card p {
    margin: 0 0 1.5rem;
}

.latest-guides .read-guide {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 44px;
    gap: .45rem;
}

.latest-guides a:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 4px;
    border-radius: .2rem;
}

.latest-guides-all:focus-visible {
    outline-color: var(--lime);
}

@media (max-width: 600px) {
    .latest-guides-header {
        align-items: stretch;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .latest-guides-all {
        width: 100%;
    }
}
