.component-footer-mobile {
    padding: 1em;
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
    color: var(--foreground-color);
}

.component-footer-mobile > div {
    padding-block: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.component-footer-mobile > div > h2 {
    color: var(--foreground-color-2);
    width: 100%;
}

.component-footer-mobile > div:first-child > h2 {
    width: auto;
}

.component-footer-mobile > div > ul a {
    text-decoration: none;
    background-color: transparent;
    color: var(--foreground-color);
}

.component-footer-mobile > div > ul {
    margin-top: 1em;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding-left: 8em;
    gap: 1em;
    width: 100%;
}

.component-footer-mobile > div:nth-child(3) > ul > li::after,
.component-footer-mobile > div:nth-child(5) > ul > li::after {
    content: '◦';
    color: var(--foreground-color-2);
    padding-left: 1em;
}

.component-footer-mobile > div:nth-child(1) {
    padding-top: 0;
}

.component-footer-mobile > div:nth-child(1) > div {
    display: flex;
    align-items: center;
    gap: 2em;
}

.component-footer-mobile > div:nth-child(1) > ul {
    display: flex;
    flex-direction: row;
    gap: 1em;
    list-style-type: none;
}

.component-footer-mobile > div:nth-child(1) > ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.component-footer-mobile > div:nth-child(1) > ul li img {
    width: 100%;
    height: 100%;
}

.component-footer-mobile > div:nth-child(4) > ul li {
    display: flex;
    gap: .5em;
    align-items: center;
}

.component-footer-mobile > div:nth-child(4) .terms {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
}

.component-footer-mobile > div:nth-child(7) > ul > li {
    width: calc(100% - 8em);
    display: flex;
    align-items: center;
    gap: 1em;
}

.component-footer-mobile > div:nth-child(9) {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding-top: 0;
}