
.atlantis {
    --font-size: var(--root-font-size); /* Reset: use REM */
}

.atlantis__header {
    --color: var(--root-color--primary);
    --font-family: var(--root-heading-2-family);
    --font-size: 1.167em;
    --font-style: var(--root-heading-2-style);
    --font-weight: var(--root-heading-2-weight);
    --line-height: var(--root-heading-2-line-height);
}

.atlantis__results {
    --column-gap: 1.5rem;
    --row-gap: 1.5rem;
}

.atlantis__result-header {
    --color: var(--root-heading-3-color);
    --font-family: var(--root-heading-3-family);
    --font-size: 0.944em;
    --font-style: var(--root-heading-3-style);
    --font-weight: var(--root-heading-3-weight);
    --line-height: var(--root-heading-3-line-height);
}

.atlantis__result {
    --background-color: var(--root-color--primary);
    --color: var(--root-color--white);
    --font-family: var(--root-font-family--primary);
    --font-size: 1.444em;
    --font-style: normal;
    --font-weight: var(--root-font-weight--bold);
}

.atlantis__result:hover {
    --background-color: var(--root-color--primary-dark);
}

.atlantis__result-icon {
    --height: 1.125rem;
    --fill: currentColor;
}

.atlantis__results {
    display: grid;
    width: 100%;
    margin: 2rem 0 0 0;
    padding: 0;
    list-style: none;
    grid-template-columns: 1fr;
}

.atlantis__result-header {
    margin-top: 0;
}

.atlantis__result {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    aspect-ratio: 16/9;
}

.atlantis__result-form input[type="submit"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border-width: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.atlantis__result-icon {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

@media (min-width: 30rem) {
    .atlantis__results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 62rem) {
    .atlantis__results {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.atlantis {
    font-size: var(--font-size, 1rem);
}

.atlantis__header {
    font-family: var(--font-family, inherit);
    font-size: var(--font-size, 1.777em);
    font-weight: var(--font-weight, bold);
    font-style: var(--font-style, normal);
    line-height: var(--line-height, 1.25);
    color: var(--color, black);
}

.atlantis__results {
    grid-column-gap: var(--column-gap, 2rem);
    grid-row-gap: var(--row-gap, 2rem);
}

.atlantis__result-header {
    font-family: var(--font-family, inherit);
    font-size: var(--font-size, 1.777em);
    font-weight: var(--font-weight, bold);
    font-style: var(--font-style, normal);
    line-height: var(--line-height, 1.25);
    color: var(--color, black);
}

.atlantis__result {
    font-family: var(--font-family, inherit);
    font-size: var(--font-size, 1.777em);
    font-weight: var(--font-weight, bold);
    font-style: var(--font-style, normal);
    color: var(--color, white);
    background-color: var(--background-color, blue);
}

.atlantis__result-icon {
    height: var(--height, 1em);
    fill: var(--fill, currentColor);
}
