
.tweets-headline {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.tweets-headline__follow {
    margin-left: var(--size-400);
}

.tweets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
    grid-gap: var(--spacing-2);
}

.tweet {
    border-bottom: 1px solid var(--color-base-gray-2);
}

.tweet__profile:hover .headline--2 {
    text-decoration: underline;
}

.tweet__profile {
    font-size: var(--font-size-button);
    text-decoration: none;
    display: flex;
}

.tweet__profile svg {
    margin-left: 4px;
    margin-right: 4px;
}

@media (max-width: 650px) {

    .tweets-headline {
        flex-direction: column;
    }
    .tweets-headline h2 {
        width: 100%;
        margin-bottom: var(--size-400);
    }
    .tweets-headline__follow {
        margin-left: 0;
        margin-bottom: 32px;
    }
}
