/* HC Galeri · Profil web sitesi bağlantısı */

.profile-website-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    max-width: min(100%, 430px);
    min-height: 31px;
    margin-top: 8px;
    padding: 5px 8px;
    border: 1px solid
        color-mix(in srgb, var(--primary) 24%, var(--border));
    border-radius: 9px;
    background:
        color-mix(in srgb, var(--primary-soft) 54%, var(--surface));
    color: var(--primary);
    font-size: 10px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition:
        border-color .16s ease,
        background .16s ease,
        transform .16s ease;
}

.profile-website-link:hover,
.profile-website-link:focus-visible {
    border-color:
        color-mix(in srgb, var(--primary) 48%, var(--border));
    background:
        color-mix(in srgb, var(--primary-soft) 78%, var(--surface));
    outline: none;
    transform: translateY(-1px);
}

.profile-website-link .icon {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
}

.profile-website-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-website-optional {
    color: var(--muted);
    font-size: 9px;
    font-weight: 500;
}

@media (max-width: 560px) {
    .profile-website-link {
        max-width: 100%;
    }
}
