.zauberzahn-sun-button {
    position: relative;
    border-radius: 50%;
    background-color: var(--wp--preset--color--primary);
    aspect-ratio: 1/1;
}

.zauberzahn-sun-button a {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--wp--preset--color--tertiary);
    font-size: 2.188rem;
    transform: scale(1.0);
    transition: transform 0.3s ease-in-out;
}

.zauberzahn-sun-button a:hover {
    transform: scale(1.1);
}

.zauberzahn-sun-button a span {
    max-width: 220px;
    transform: rotate(-6deg);
    transition: text-shadow 0.3s ease-in-out;
}

.zauberzahn-sun-button a:hover span {
    text-shadow:
            0.5px 0 currentColor,
            -0.5px 0 currentColor,
            0 0.5px currentColor,
            0 -0.5px currentColor;
}

@media (max-width: 900px) {
    .zauberzahn-sun-button {
        max-width: 300px;
        width: 300px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

.zauberzahn-sun-button .desc:empty {
    display: none;
}

/* our team button */
.our-team .zauberzahn-sun-button {
    max-width: 300px;
}

.our-team .zauberzahn-sun-button .title,
.our-team .zauberzahn-sun-button .desc {
    text-align: center;
}

.our-team .zauberzahn-sun-button .title {
    font-size: 1.563rem;
}

.our-team .zauberzahn-sun-button .desc {
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .our-team .zauberzahn-sun-button {
        margin-left: auto;
        transform: none !important;
    }
}