/* The front door: three ways in, laid out so none of them is the small one. */

.home-choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.home-choice {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--grey);
    border-radius: 8px;
    text-decoration: none;
    color: var(--black);
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.home-choice:hover,
.home-choice:focus-visible {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
    text-decoration: none;
    color: var(--black);
}

.home-choice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 4px;
    border-radius: 50%;
    background: rgba(255, 94, 20, .1);
    color: var(--orange);
    font-size: 22px;
}

.home-choice-title {
    font-family: "Teko", "Open Sans", sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: .01em;
}

.home-choice-text {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-grey);
    flex-grow: 1;
}

.home-choice-go {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
}

.home-choice:hover .home-choice-go i { transform: translateX(3px); }
.home-choice-go i { transition: transform .15s ease; }

/* The business card carries a tint rather than a badge: it is not more important than the other
   two, it is simply for a different person, and a badge saying so would read as an upsell. */
.home-choice-business {
    background: linear-gradient(180deg, rgba(255, 94, 20, .04), #fff 60%);
}

.home-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--grey);
}

.home-secondary a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--grey);
    border-radius: 20px;
    background: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: var(--dark-grey);
    text-decoration: none;
}

.home-secondary a:hover {
    border-color: var(--orange);
    color: var(--orange);
    text-decoration: none;
}

@media (max-width: 640px) {
    .home-choice { padding: 22px 18px; }
    .home-choice-title { font-size: 23px; }
}
