.link-btn-wrapper {
    position: relative;
    width: 100%;
    max-width: 240px;
}
.link-corner {
    position: absolute;
    top: 6px;
    left: 8px;
    font-size: 11px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border-radius: 50%;
    transition: all 0.2s;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: auto;
    font-weight: bold;
}
body.light .link-corner {
    background: rgba(255, 255, 255, 0.3);
}
.link-btn {
    position: relative;
    overflow: hidden;
    padding-left: 28px !important;
    display: block;
    width: 100%;
}
.link-corner:hover, .link-corner:active {
    opacity: 1;
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .link-btn-wrapper {
        max-width: 220px;
    }
}
@media (max-width: 480px) {
    .link-corner {
        top: 5px;
        left: 6px;
        font-size: 10px;
        width: 14px;
        height: 14px;
    }
    .link-btn {
        padding-left: 24px !important;
    }
    .link-btn-wrapper {
        max-width: 220px;
    }
}
@media (max-width: 360px) {
    .link-corner {
        font-size: 9px;
        width: 13px;
        height: 13px;
        left: 5px;
        top: 4px;
    }
    .link-btn {
        padding-left: 22px !important;
    }
    .link-btn-wrapper {
        max-width: 100%;
    }
}
@media (max-height: 500px) and (orientation: landscape) {
    .link-btn-wrapper {
        max-width: 200px;
    }
}