/* HC Galeri · Yayıncı web sitesi SVG bağlantısı */

.publisher-handle-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
    margin-top: 2px;
}

.publisher-handle-row .handle {
    min-width: 0;
    margin: 0;
}

.publisher-website-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    line-height: 1;
}

.publisher-website-icon .icon {
    width: 14px;
    height: 14px;
}

.publisher-website-icon.is-active {
    color: var(--primary);
    border-color:
        color-mix(in srgb, var(--primary) 28%, var(--border));
    background:
        color-mix(in srgb, var(--primary-soft) 56%, var(--surface));
    cursor: pointer;
    text-decoration: none;
    transition:
        color .16s ease,
        border-color .16s ease,
        background .16s ease,
        transform .16s ease,
        box-shadow .16s ease;
}

.publisher-website-icon.is-active:hover,
.publisher-website-icon.is-active:focus-visible {
    color: var(--primary-hover);
    border-color:
        color-mix(in srgb, var(--primary) 52%, var(--border));
    background:
        color-mix(in srgb, var(--primary-soft) 82%, var(--surface));
    box-shadow: var(--shadow-sm);
    outline: none;
    transform: translateY(-1px);
}

.publisher-website-icon.is-disabled {
    color: var(--muted);
    background: var(--surface-2);
    cursor: not-allowed;
    opacity: .42;
    filter: grayscale(1);
    pointer-events: none;
}

@media (max-width: 560px) {
    .publisher-handle-row {
        gap: 5px;
    }

    .publisher-website-icon {
        width: 27px;
        height: 27px;
    }
}
