.root {
    position: relative;
    height: 810px;
    width: 100%;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.textContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.title,
.description {
    pointer-events: auto;
    position: absolute;
    box-sizing: border-box;
}

.titleLink {
    text-decoration: none;
    color: inherit;
}

.title {
    top: 48px;
    left: 48px;
    color: var(--color-text-primary-brand-solar);
    max-width: calc(100% - 96px);
    text-align: left;
    word-break: break-word;
    white-space: normal;
}

.description {
    bottom: 48px;
    right: 48px;
    max-width: 522px;
    color: var(--color-text-primary-inverted);
    text-align: left;
}

.mobileLayout {
    display: none;
}

.cursorVisual {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: var(--border-width-sm) solid var(--color-border-solar, #fef38e);
    background: var(--color-bg-fill-alpha-black-10);
    backdrop-filter: blur(6px);
    color: var(--color-text-primary-brand-solar);
    text-align: center;
    overflow: hidden;
}

.cursorVisualText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (width <= 768px) {
    .root {
        height: 812px;
    }

    .desktopLayout {
        display: none;
    }

    .mobileLayout {
        display: block;
    }

    .title {
        top: 56px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 48px);
        max-width: 522px;
        text-align: center;
    }

    .description {
        bottom: 56px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 48px);
        max-width: 522px;
    }

    .mobileButton {
        position: absolute;
        top: 316px;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        height: 180px;
        z-index: 10;
    }

    .mobileLayout .image {
        object-fit: cover;
        height: 100%;
    }
}
