/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    --sh-black:       #111111;
    --sh-white:       #ffffff;
    --sh-warm:        #f7f5f2;
    --sh-border:      #e5e5e5;
    --sh-border-warm: #dddddd;
    --sh-muted:       #999999;
    --sh-text:        #666666;
    --sh-text-light:  #888888;

    --sh-font-base:    "Inter", Helvetica, Arial, sans-serif;
    --sh-font-serif:   "Playfair Display", Georgia, serif;
    --sh-weight-light:  300;
    --sh-weight-normal: 400;
    --sh-weight-medium: 500;

    --sh-section-v: clamp(4rem, 8vw, 9rem);
    --sh-section-h: clamp(2rem, 5.5vw, 3.5rem);

    --sh-ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --sh-duration: 0.5s;
}

/* ── Base ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
    font-family: var(--sh-font-base);
    font-weight: var(--sh-weight-light);
    background: var(--sh-white);
    color: var(--sh-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.elementor[data-elementor-type="wp-page"],
.elementor[data-elementor-type="page"] {
    flex: 1;
}
.elementor[data-elementor-type="footer"] {
    margin-top: auto;
}
.wp-site-blocks,
#page, #content, #primary,
.site-content, .entry-content {
    margin: 0 !important;
    padding: 0 !important;
}

/* ── Elementor overrides ─────────────────────────────────── */
.elementor-section,
.elementor-container {
    max-width: 100% !important;
}

/* ── Utilities ───────────────────────────────────────────── */
.before-line {
    padding-left: 50px;
}
.before-line:before {
    content: '';
    width: 24px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 0.6em;
    left: 0;
    
}
.before-line-w {
    padding-left: 30px;
}
.before-line-w:before {
    width: 16px;
    top: 0.45em;
    background: rgb(255 255 255 / 0.3);
    
}
.sh-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--sh-black);
    flex-shrink: 0;
}

.sh-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sh-muted);
    font-weight: var(--sh-weight-light);
}

.sh-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sh-black);
    text-decoration: none;
    font-weight: 300;
    font-family: var(--sh-font-base);
    transition: color var(--sh-duration);
}

.sh-arrow-link__line {
    display: block;
    width: 32px;
    height: 1px;
    background: currentColor;
    transition: .2s;
}
.sh-arrow-link:hover .sh-arrow-link__line { width: 56px; }

.sh-nav-link { position: relative; text-decoration: none; }
.sh-nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}
.sh-nav-link:hover::after { width: 100%; }

.sh-img-zoom { overflow: hidden; }
.sh-img-zoom img {
    transition: transform 0.9s var(--sh-ease);
}
.sh-img-zoom:hover img { transform: scale(1.04); }

@keyframes sh-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.sh-fade-up { animation: sh-fade-up 1s ease forwards; }

/* ── Navbar ──────────────────────────────────────────────── */
.sh-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    height: 80px;
    transition: background var(--sh-duration), border-color var(--sh-duration);
}
.sh-navbar--static {
    position: relative;
    height: 80px;
}

.sh-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 clamp(2rem, 5.5vw, 3.5rem);
}
.sh-navbar__logo { display: flex; align-items: center; }
.sh-navbar__logo img { object-fit: contain; }

.sh-navbar__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.sh-navbar__nav-item {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 300;
    text-decoration: none;
    transition: opacity .3s;
}
.sh-navbar__nav-item:hover { opacity: 0.6; }

.sh-navbar__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.sh-navbar__ig {
    display: flex;
    align-items: center;
    transition: opacity .3s;
}
.sh-navbar__ig:hover { opacity: 0.6; }

.sh-navbar__cta {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 300;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    border: 1px solid currentColor;
    transition: background .3s, color .3s;
}

.sh-navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px !important;
    color: var(--nav-color) !important;
    border-color: var(--nav-color) !important;
}
.sh-navbar__hamburger span {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform .3s, opacity .3s;
}
.sh-navbar__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.sh-navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.sh-navbar__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── Color schemes ───────────────────────────────────────── */

.sh-navbar--sticky:not(.scrolled):not(.menu-open) {
    --nav-color: #ffffff;
}

.sh-navbar--sticky.scrolled,
.sh-navbar--sticky.menu-open,
.sh-navbar--static {
    --nav-color: var(--sh-black);
}

.sh-navbar__nav-item,
.sh-navbar__ig,
.sh-navbar__cta,
.sh-navbar__hamburger { color: var(--nav-color, #ffffff); }

.sh-navbar__cta { border-color: var(--nav-color, #ffffff); }
.sh-navbar__cta:hover {
    background: var(--nav-color, #ffffff);
    color: var(--sh-white);
}
.sh-navbar--sticky.scrolled .sh-navbar__cta:hover,
.sh-navbar--sticky.menu-open .sh-navbar__cta:hover,
.sh-navbar--static .sh-navbar__cta:hover { color: var(--sh-white); }
.sh-navbar--sticky:not(.scrolled):not(.menu-open) .sh-navbar__cta:hover { color: var(--sh-black); }

.sh-navbar--sticky.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid var(--sh-border);
}

.sh-navbar--static {
    background: #ffffff;
    border-bottom: 1px solid var(--sh-border);
}

.sh-navbar.menu-open {
    background: #ffffff !important;
    backdrop-filter: none !important;
    border-bottom: 1px solid var(--sh-border) !important;
}

/* ── Logo toggle ─────────────────────────────────────────── */
.sh-nav-logo-light { display: block; }
.sh-nav-logo-dark  { display: none; }

.sh-navbar--sticky.scrolled .sh-nav-logo-light,
.sh-navbar--sticky.menu-open .sh-nav-logo-light,
.sh-navbar--static .sh-nav-logo-light { display: none; }

.sh-navbar--sticky.scrolled .sh-nav-logo-dark,
.sh-navbar--sticky.menu-open .sh-nav-logo-dark,
.sh-navbar--static .sh-nav-logo-dark  { display: block; }

/* ── Mobile menu ─────────────────────────────────────────── */
.sh-mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--sh-duration);
}
.sh-mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}
.sh-mobile-menu__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: auto 0;
}
.sh-mobile-menu__link {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--sh-black);
    text-decoration: none;
    border-bottom: 1px solid var(--sh-border);
    padding-bottom: 1rem;
}
.sh-mobile-menu__cta {
    align-self: flex-start;
    margin-top: 1rem;
    border: 1px solid #111 !important;
    line-height: 1.7;
}

/* ── WP Admin bar offset ─────────────────────────────────── */
.admin-bar .sh-navbar--sticky { top: 32px; }
.admin-bar .sh-mobile-menu    { top: calc(80px + 32px); }

@media (max-width: 782px) {
    .admin-bar .sh-navbar--sticky { top: 46px; }
    .admin-bar .sh-mobile-menu    { top: calc(80px + 46px); }
}

@media (max-width: 1300px) {
    .sh-navbar__nav { gap: 20px; }
}
@media (max-width: 1200px) {
    .sh-navbar__cta { line-height: 1.3; }
    .sh-navbar__cta span { display: none; }
    .sh-navbar__inner {
        padding-left: 56px;
        padding-right: 56px;
    }
}
@media (max-width: 1100px) {
    .sh-navbar__hamburger:hover { background: none !important; }
    .sh-navbar__nav    { display: none; }
    .sh-navbar__cta    { display: none; }
    .sh-navbar__hamburger { display: flex; }
    .sh-navbar__inner {
        padding-left: 32px;
        padding-right: 32px;
    }
}
@media (max-width: 1024px) {
    .sh-mobile-menu { padding: 32px; }
    .sh-mobile-menu__link { font-size: 1.1rem; }
    .sh-mobile-menu__inner { gap: 1.3rem; margin: 0; }
}
@media (max-width: 767px) {
    .sh-mobile-menu { padding: 32px 24px; }
    .sh-navbar__inner {
        padding-left: 24px;
        padding-right: 24px;
    }
    .sh-hero__tagline { font-size: 10px !important; }
}
@media (max-width: 500px) {
    .sh-navbar__cta { display: none !important; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.sh-btn {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: var(--sh-weight-light);
    border: 1px solid var(--nav-color);
    color: var(--nav-color);
    padding: 0.625rem 1.25rem;
    text-decoration: none;
    transition: background var(--sh-duration), color var(--sh-duration);
}
.sh-btn:hover {
    background: var(--sh-black);
    color: var(--sh-white);
}
.sh-btn-white {
    border-color: var(--sh-white);
    color: var(--sh-white);
}
.sh-btn-white:hover {
    background: var(--sh-white);
    color: var(--sh-black);
}

/* ── Elementor Form fields ───────────────────────────────── */
.elementor-field-textual {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #cccccc;
    border-radius: 0;
    padding: 0.75rem 0;
    font-family: var(--sh-font-base);
    font-size: 15px;
    font-weight: 300;
    color: var(--sh-black);
    outline: none;
    box-shadow: none;
    transition: .2s;
    resize: none;
}
.elementor-field-textual::placeholder {
    color: #bbbbbb;
    font-weight: 300;
}
.elementor-field-textual:focus {
    border-bottom-color: var(--sh-black) !important;
    box-shadow: none !important;
    outline: none;
}

.elementor-field-type-select select {
    appearance: none;
    cursor: pointer;
}

.elementor-field-type-submit .elementor-button {
    all: unset;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--sh-font-base) !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--sh-black) !important;
    cursor: pointer;
    background: transparent !important;
}
.elementor-select-wrapper .select-caret-down-wrapper {
    font-size: 8px !important;
}
.elementor-field-type-submit .elementor-button::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: currentColor;
    transition: .2s;
}
.elementor-field-type-submit .elementor-button:hover::after {
    width: 56px;
}

/* ── Realisaties grid ────────────────────────────────────── */
.sh-realisaties-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}
.sh-realisaties-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.sh-realisaties-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 767px) {
    .sh-realisaties-grid--cols-2,
    .sh-realisaties-grid--cols-3 { grid-template-columns: 1fr; }

    .sh-realisatie-card { min-height: 60vw; }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .sh-realisaties-grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
}

.sh-realisatie-card {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    padding-top: 75%;
    text-decoration: none;
}
.sh-realisatie-card img,
.sh-realisatie-card__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--sh-ease);
    background: var(--sh-border);
}
.sh-realisatie-card:hover img { transform: scale(1.04); }

.sh-realisatie-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 45%, transparent 100%);
    transition: background .5s;
}
.sh-realisatie-card:hover .sh-realisatie-card__overlay {
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.1) 100%);
}

.sh-realisatie-card__info {
    padding: 1.5rem;
    transform: translateY(0.75rem);
    opacity: 0;
    transition: transform .5s, opacity .5s;
}
.sh-realisatie-card:hover .sh-realisatie-card__info {
    transform: translateY(0);
    opacity: 1;
}
@media screen and (max-width: 1024px) {
    .sh-realisatie-card__info {
        opacity: 1;
        transform: translateY(0) !important;
    }
}
.sh-realisatie-card__meta {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin: 0 0 0.25rem;
    font-weight: 300;
}
.sh-realisatie-card__title {
    font-size: 0.85rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0;
}

/* ── Diensten widget ─────────────────────────────────────── */

.sh-diensten__tabbar {
    display: flex;
    overflow-x: auto;
    border-top: 1px solid var(--sh-border);
    scrollbar-width: none;
}
.sh-diensten__tabbar::-webkit-scrollbar { display: none; }

.sh-diensten .sh-diensten__tab {
    flex-shrink: 0;
    background: none !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    margin-bottom: 0;
    padding: 1.25rem 2rem !important;
    font-family: var(--sh-font-base) !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--sh-muted) !important;
    cursor: pointer;
    transition: color .3s, border-color .3s;
    box-shadow: none !important;
    text-decoration: none !important;
}
.sh-diensten .sh-diensten__tab.is-active {
    color: var(--sh-black) !important;
    border-bottom-color: var(--sh-black) !important;
}
.sh-diensten .sh-diensten__tab:hover {
    color: var(--sh-black) !important;
    background: none !important;
}

.sh-diensten__panel { display: none; }
.sh-diensten__panel.is-active { display: block; }

.sh-diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) { .sh-diensten-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .sh-diensten-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sh-diensten-grid { grid-template-columns: 1fr; } }

.sh-dienst-card {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    padding-top: 133%;
    text-decoration: none;
}
@media (max-width: 767px) { .sh-dienst-card { min-height: 60vw; } }

.sh-dienst-card img,
.sh-dienst-card__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--sh-ease);
    background: var(--sh-border);
}
.sh-dienst-card:hover img { transform: scale(1.05); }

.sh-dienst-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
    transition: background .5s;
}
.sh-dienst-card:hover .sh-dienst-card__gradient {
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.1) 100%);
}
.sh-dienst-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .5s;
}
.sh-dienst-card:hover::after { background: rgba(0,0,0,.2); }

.sh-dienst-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 1;
}
.sh-dienst-card__title {
    font-size: 0.8rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.005em;
    margin: 0 0 0.5rem;
    line-height: 1.4;
}
.sh-dienst-card__desc {
    font-size: 0.72rem;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
    font-weight: 300;
    margin: 0 0 0.75rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s, transform .4s;
}
.sh-dienst-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    font-weight: 300;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .5s, transform .5s;
}
.sh-dienst-card__link .sh-arrow-link__line { background: rgba(255,255,255,.8); width: 20px; }
.sh-dienst-card:hover .sh-dienst-card__desc,
.sh-dienst-card:hover .sh-dienst-card__link { opacity: 1; transform: translateY(0); }
.sh-dienst-card:hover .sh-dienst-card__link .sh-arrow-link__line { width: 32px; }

@media (max-width: 1024px) {
    .sh-dienst-card__desc,
    .sh-dienst-card__link { opacity: 1; transform: translateY(0); }
}

.sh-diensten-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}
.sh-diensten-split--reverse .sh-diensten-split__img  { order: 2; }
.sh-diensten-split--reverse .sh-diensten-split__text { order: 1; }

.sh-diensten-split__img {
    position: relative;
    overflow: hidden;
    min-height: 55vw;
}
@media (min-width: 1025px) { .sh-diensten-split__img { min-height: 0; } }

.sh-diensten-split__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--sh-ease);
}
.sh-diensten-split:hover .sh-diensten-split__img img { transform: scale(1.04); }

.sh-diensten-split__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6rem;
}
@media (max-width: 767px) {
    .sh-diensten-split { grid-template-columns: 1fr; }
    .sh-diensten-split__text { padding: 3rem 2rem; }
    .sh-diensten-split--reverse .sh-diensten-split__img  { order: 1; }
    .sh-diensten-split--reverse .sh-diensten-split__text { order: 2; }
}

.sh-diensten-split__sub {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sh-muted);
    font-weight: 300;
    margin: 0 0 1.5rem;
}
.sh-diensten-split__title {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--sh-black);
    letter-spacing: -0.01em;
    line-height: 1.5;
    margin: 0 0 2rem;
}
.sh-diensten-split__desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--sh-text);
    font-weight: 300;
    max-width: 340px;
    margin: 0 0 3rem;
}

/* ── bg-overlay ──────────────────────────────────────────── */
.bg-overlay:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: .2;
    pointer-events: none;
}
.bg-overlay .elementor-widget-image {
    height: 100%;
}

/* ── Hero widget ─────────────────────────────────────────── */
.sh-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: flex-end;
}

.sh-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.sh-hero__vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sh-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(2rem, 5.5vw, 3.5rem) clamp(3rem, 6vw, 5rem);
    max-width: 560px;
}

.sh-hero__tagline {
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin: 0 0 1.25rem;
}

.sh-hero__heading {
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
    font-weight: 300;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0 0 2rem;
}

.sh-arrow-link--light { color: #ffffff; }

.sh-hero__scroll {
    position: absolute;
    right: clamp(2rem, 5.5vw, 3.5rem);
    bottom: clamp(3rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}
.sh-hero__scroll-label {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
    font-weight: 300;
    font-family: var(--sh-font-base);
}
.sh-hero__scroll-line {
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    .sh-hero__scroll { display: none; }
}

/* ── Instagram link ──────────────────────────────────────── */
.sh-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sh-instagram-link:hover { color: #ffffff; }
.sh-instagram-link svg { flex-shrink: 0; }
.sh-instagram-link span {
    font-family: var(--sh-font-base);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    overflow: hidden;
    text-overflow: ellipsis;
}
