.equal-height-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.equal-height-card > .sd-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
    "meta  badge"
    "links links";
    gap: 0.75rem 1.5rem;
    align-items: start;
}

footer .footer-meta {
    grid-area: meta;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

footer .footer-meta .footer-build-info {
    opacity: 0.75;
    font-size: 0.875em;
}

footer .footer-badge {
    grid-area: badge;
    justify-self: end;
    align-self: start;
    flex-shrink: 0;
}

footer .footer-badge img {
    display: block;
}

footer .footer-links {
    grid-area: links;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid currentColor;
    opacity: 0.85;
}

footer .footer-links a {
    white-space: nowrap;
}

@media screen and (max-width: 480px) {
    footer .footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
        "meta"
        "badge"
        "links";
    }

    footer .footer-badge {
        justify-self: start;
    }
}

.seed-convert-widget > div > p > label > input {
    width: 100%;
}
