.portal-return {
    box-sizing: border-box;
    position: relative;
    z-index: 98;
    display: flex;
    width: calc(100% - 40px);
    max-width: 1320px;
    margin: 130px auto -80px;
    padding: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.services-page .portal-return {
    margin-bottom: -170px;
}

.portal-return__link {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    max-width: 100%;
    padding: 10px 16px;
    border: 2px solid #8b5a2b;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    color: #58311f;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    white-space: normal;
    pointer-events: auto;
}

.portal-return__link:hover {
    background: #8b5a2b;
    color: #fff;
}

.portal-return__link:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px #58311f;
}

@media (max-width: 768px) {
    .portal-return {
        width: calc(100% - 32px);
        margin: 88px 16px -58px;
    }

    .services-page .portal-return {
        margin-bottom: 16px;
    }

    .portal-return__link {
        min-height: 44px;
        padding: 9px 13px;
        font-size: 0.95rem;
    }
}
