.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--section-padding);
    padding-top: 32px;
    gap: 64px;
}
.title {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 64px;
}

.title > h1 {
    font-size: 60px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.finch-tree {
    width: 350px;
}

.conversation {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    background-color: var(--gray-20);
    border-radius: 16px;
    width: 350px;
}

.top-conversation {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 16px;
    background-color: var(--tangerine-100);
    color: white;
}

.top-conversation > h3 {
    font-weight: 600;
    font-size: 20px;
}

.finch-online {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 7px;
    height: 7px;
    transform: translate(-16px, -12px);
    background-color: var(--status);
    border-radius: 50%;
}

.messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    height: 370px;
    overflow-y: scroll;
}

#scroll-hint {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: end;
    gap: 8px;
}

#scroll-hint > .bubble {
    transform: rotate(-5deg) translateY(-8px);
}

#scroll-hint > .bubble::after {
    position: absolute;
    content: "";
    border-style: solid;
    transform: rotate(36deg);
    bottom: -4px;
    right: -5px;
    border-width: 8px 12px 0px 0;
    border-color: var(--lilac-100) transparent transparent;
}

#scroll-hint-finch {
    width: 40px;
    transform: scale(-1, 1);
}

#section-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#section-links a {
    font-weight: bold;
}

@media only screen and (min-width: 770px) and (min-height: 500px) {
    .hero {
        padding-top: 64px;
        flex-direction: row;
        align-items: stretch;
    }

    .title {
        gap: inherit;
    }

    .title > a {
        align-self: normal;
    }
}
