/*
Theme Name: Ducikong
Theme URI: https://ducikong.de
Author: Ducikong
Description: Persönliches Social-Profil
Version: 2.0
*/


/* =========================================================
   DESIGN VARIABLES
   ========================================================= */

:root {

    --black: #050505;
    --black-soft: #0d0d0d;

    --white: #ffffff;
    --white-soft: #d9d9d9;

    --gray: #8b8b8b;
    --gray-dark: #292929;

    --red: #e60012;
    --red-bright: #ff1630;

    --border: rgba(255, 255, 255, 0.22);

    --font-main:
        Arial,
        Helvetica,
        sans-serif;

    --font-display:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        sans-serif;

}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;

    background: var(--black);
}


body {
    margin: 0;
    min-height: 100vh;

    background: var(--black);
    color: var(--white);

    font-family: var(--font-main);

    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;

    overflow-x: hidden;
}


body,
button,
a {
    -webkit-tap-highlight-color: transparent;
}


a {
    color: inherit;
}


button {
    font: inherit;
}


h1,
h2,
p {
    margin: 0;
}


/* =========================================================
   MAIN PAGE
   ========================================================= */

.profile-page {

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px;

    overflow: hidden;

    background: var(--black);
}


/* =========================================================
   BACKGROUND VIDEO
   ========================================================= */

.profile-background {

    position: fixed;

    inset: 0;

    z-index: 0;

    overflow: hidden;

    pointer-events: none;
}


.profile-background video {

    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(0.42)
        contrast(1.15)
        saturate(0.8);

    transform: scale(1.05);

}


/* =========================================================
   BACKGROUND OVERLAYS
   ========================================================= */

.background-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            115deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.45) 48%,
            rgba(230, 0, 18, 0.22) 100%
        );
}


.background-vignette {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            ellipse at center,
            transparent 20%,
            rgba(0, 0, 0, 0.45) 75%,
            rgba(0, 0, 0, 0.9) 100%
        );
}


/* =========================================================
   BACKGROUND DIAGONAL LINES
   ========================================================= */

.background-lines {

    position: absolute;

    inset: -100%;

    opacity: 0.16;

    background:
        repeating-linear-gradient(
            125deg,
            transparent 0,
            transparent 70px,
            rgba(255,255,255,0.12) 71px,
            transparent 72px
        );

    transform: rotate(-3deg);
}


/* =========================================================
   MAIN UI CANVAS
   ========================================================= */

.profile-ui {

    position: relative;

    z-index: 2;

    width: min(1180px, 100%);

    min-height: 650px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 440px);

    align-items: stretch;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.82),
            rgba(12, 12, 12, 0.72)
        );

    border: 1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 30px 100px rgba(0,0,0,0.65),
        0 0 80px rgba(230,0,18,0.08);

}


/* =========================================================
   LARGE DIAGONAL RED ELEMENT
   ========================================================= */

.profile-ui::before {

    content: "";

    position: absolute;

    z-index: -1;

    width: 55%;
    height: 140%;

    left: -15%;
    top: -20%;

    background:
        linear-gradient(
            145deg,
            rgba(230,0,18,0.95),
            rgba(125,0,10,0.75)
        );

    clip-path:
        polygon(
            0 0,
            78% 0,
            100% 100%,
            22% 100%
        );

    transform: rotate(-5deg);

    opacity: 0.72;
}


/* =========================================================
   SECOND DIAGONAL
   ========================================================= */

.profile-ui::after {

    content: "";

    position: absolute;

    z-index: -1;

    width: 48%;
    height: 180%;

    right: -30%;
    top: -40%;

    background: rgba(255,255,255,0.045);

    clip-path:
        polygon(
            30% 0,
            100% 0,
            70% 100%,
            0 100%
        );

    transform: rotate(4deg);
}


/* =========================================================
   CORNER DECORATION
   ========================================================= */

.ui-corner {

    position: absolute;

    width: 70px;
    height: 70px;

    pointer-events: none;
}


.ui-corner-top {

    top: 0;
    left: 0;

    border-top: 4px solid var(--white);
    border-left: 4px solid var(--white);
}


.ui-corner-bottom {

    right: 0;
    bottom: 0;

    border-right: 4px solid var(--red);
    border-bottom: 4px solid var(--red);
}


/* =========================================================
   SCREEN LABELS
   ========================================================= */

.ui-label {

    position: absolute;

    z-index: 10;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.25em;

    text-transform: uppercase;

    opacity: 0.7;
}


.ui-label-top {

    top: 18px;
    left: 24px;
}


.ui-label-bottom {

    right: 24px;
    bottom: 18px;

    transform: rotate(-90deg);

    transform-origin: right bottom;
}


/* =========================================================
   LEFT PROFILE
   ========================================================= */

.profile-info {

    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-width: 0;

    padding: 90px 55px 60px;

    text-align: center;
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.profile-section-label {

    position: absolute;

    top: 42px;
    left: 55px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}


.profile-section-label span {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    background: var(--white);

    color: var(--black);

    font-size: 11px;

    transform: skewX(-12deg);
}


/* =========================================================
   AVATAR
   ========================================================= */

.profile-avatar-wrapper {

    position: relative;

    width: 170px;
    height: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;
}


.profile-avatar {

    position: relative;

    z-index: 3;

    width: 138px;
    height: 138px;

    overflow: hidden;

    border: 5px solid var(--white);

    border-radius: 0;

    transform: rotate(-6deg);

    box-shadow:
        12px 12px 0 var(--black),
        18px 18px 0 var(--red);

    background: var(--black);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}


.profile-avatar img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: rotate(6deg) scale(1.08);

    filter:
        contrast(1.05)
        saturate(0.85);
}


.profile-avatar-wrapper:hover .profile-avatar {

    transform:
        rotate(-3deg)
        translate(-3px, -3px);

    box-shadow:
        16px 16px 0 var(--black),
        24px 24px 0 var(--red);
}


/* =========================================================
   AVATAR DECORATIONS
   ========================================================= */

.avatar-decoration {

    position: absolute;

    pointer-events: none;
}


.avatar-decoration-one {

    width: 155px;
    height: 155px;

    border: 2px solid var(--white);

    transform:
        rotate(45deg)
        scale(0.72);

    opacity: 0.45;
}


.avatar-decoration-two {

    width: 190px;
    height: 42px;

    right: -20px;
    bottom: 15px;

    background: var(--red);

    transform: rotate(-45deg);

    opacity: 0.9;
}


/* =========================================================
   AVATAR STATUS
   ========================================================= */

.avatar-status {

    position: absolute;

    z-index: 5;

    right: -15px;
    bottom: 2px;

    padding: 7px 12px;

    background: var(--white);

    color: var(--black);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.18em;

    transform: skewX(-12deg);
}


/* =========================================================
   PROFILE NAME
   ========================================================= */

.profile-name-wrapper {

    width: 100%;

    margin-bottom: 22px;
}


.profile-name-small {

    margin-bottom: 7px;

    color: var(--white);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.3em;

    opacity: 0.65;
}


.profile-info h1 {

    position: relative;

    margin: 0;

    color: var(--white);

    font-family: var(--font-display);

    font-size: clamp(48px, 6vw, 78px);

    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -0.025em;

    text-transform: uppercase;

    transform: skewX(-6deg);

    text-shadow:
        5px 5px 0 rgba(0,0,0,0.75);
}


.profile-name-line {

    width: 70%;

    height: 7px;

    margin:
        15px auto
        0;

    background: var(--white);

    transform: skewX(-30deg);

    box-shadow:
        20px 0 0 var(--red);
}


/* =========================================================
   PROFILE DESCRIPTION
   ========================================================= */

.profile-description {

    width: 100%;
    max-width: 500px;

    display: flex;
    flex-direction: column;

    gap: 7px;

    margin-top: 4px;
}


.profile-description-row {

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 7px;

    color: rgba(255,255,255,0.88);

    font-size: 12px;

    line-height: 1.45;
}


.description-icon {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 20px;

    padding: 0 7px;

    background: var(--white);

    color: var(--black);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.08em;

    transform: skewX(-10deg);
}

.profile-description-highlight {
    display: inline-block;

    margin: 0 auto 14px auto;

    padding: 7px 16px;

    background: var(--white);
    color: var(--black);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.04em;

    transform: skewX(-10deg);

    box-shadow:
        5px 5px 0 var(--red);
}


/* =========================================================
   PROFILE FOOTER
   ========================================================= */

.profile-footer {

    width: 100%;

    max-width: 400px;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 35px;

    color: rgba(255,255,255,0.55);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.25em;
}


.profile-footer-line {

    flex: 1;

    height: 1px;

    background: rgba(255,255,255,0.3);
}


/* =========================================================
   SOCIAL MENU
   ========================================================= */

.socials {

    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    padding:
        82px
        45px
        55px
        30px;

    background:
        rgba(0,0,0,0.62);

    border-left:
        2px solid rgba(255,255,255,0.18);

}


/* =========================================================
   SOCIAL HEADER
   ========================================================= */

.social-menu-header {

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 20px;

    transform: skewX(-5deg);
}


.social-menu-number {

    margin-right: 8px;

    color: var(--red);

    font-size: 13px;

    font-weight: 900;
}


.social-menu-label {

    color: var(--white);

    font-family: var(--font-display);

    font-size: 38px;

    line-height: 0.8;

    text-transform: uppercase;
}


.social-menu-status {

    color: rgba(255,255,255,0.5);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.2em;
}


/* =========================================================
   SOCIAL MENU LIST
   ========================================================= */

.social-menu-list {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


/* =========================================================
   SOCIAL LINK
   ========================================================= */

.social-link {

    position: relative;

    width: 100%;

    min-height: 45px;

    display: grid;

    grid-template-columns:
        28px
        30px
        1fr
        28px;

    align-items: center;

    gap: 8px;

    padding:
        8px
        10px;

    overflow: hidden;

    color: var(--white);

    background:
        rgba(255,255,255,0.075);

    border:
        1px solid rgba(255,255,255,0.12);

    text-decoration: none;

    cursor: pointer;

    transform:
        skewX(-8deg);

    transition:
        transform 150ms ease,
        border-color 150ms ease,
        color 150ms ease;
}


.social-link::before {

    content: "";

    position: absolute;

    z-index: -1;

    left: -110%;

    top: 0;

    width: 110%;

    height: 100%;

    background: var(--red);

    transform: skewX(-18deg);

    transition:
        left 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}


.social-link::after {

    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 4px;
    height: 100%;

    background: var(--white);

    transform:
        scaleY(0);

    transform-origin: bottom;

    transition:
        transform 150ms ease;
}


.social-link:hover,
.social-link:focus-visible {

    transform:
        skewX(-8deg)
        translateX(-10px);

    border-color: var(--white);

    color: var(--white);

    outline: none;
}


.social-link:hover::before,
.social-link:focus-visible::before {

    left: -5%;
}


.social-link:hover::after,
.social-link:focus-visible::after {

    transform: scaleY(1);
}


/* =========================================================
   SOCIAL NUMBER
   ========================================================= */

.social-number {

    position: relative;

    color: rgba(255,255,255,0.45);

    font-size: 8px;

    font-weight: 900;

    transform: skewX(8deg);
}


.social-link:hover .social-number,
.social-link:focus-visible .social-number {

    color: rgba(255,255,255,0.8);
}


/* =========================================================
   SOCIAL ICON
   ========================================================= */

.social-link i {

    position: relative;

    width: 22px;

    text-align: center;

    font-size: 16px;

    transform: skewX(8deg);

    transition:
        transform 150ms ease;
}


.social-link:hover i,
.social-link:focus-visible i {

    transform:
        skewX(8deg)
        rotate(-8deg)
        scale(1.15);
}


/* =========================================================
   SOCIAL TEXT
   ========================================================= */

.social-link-text {

    position: relative;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.04em;

    text-transform: uppercase;

    transform: skewX(8deg);
}


/* =========================================================
   SOCIAL ARROW
   ========================================================= */

.social-arrow {

    position: relative;

    font-size: 17px;

    font-weight: 900;

    text-align: right;

    transform:
        skewX(8deg)
        translateX(-3px);

    transition:
        transform 150ms ease;
}


.social-link:hover .social-arrow,
.social-link:focus-visible .social-arrow {

    transform:
        skewX(8deg)
        translateX(3px)
        scale(1.2);
}


/* =========================================================
   KEYBOARD FOCUS
   ========================================================= */

.social-link.keyboard-focus {

    outline: 3px solid var(--white);

    outline-offset: 3px;
}


/* =========================================================
   SOUND BUTTON
   ========================================================= */

.sound-toggle {

    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 20;

    min-width: 55px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding:
        0
        12px;

    border: 2px solid var(--white);

    border-radius: 0;

    background: var(--black);

    color: var(--white);

    font-size: 11px;

    cursor: pointer;

    transform: skewX(-10deg);

    box-shadow:
        5px 5px 0 var(--red);

    transition:
        transform 150ms ease,
        background 150ms ease;
}


.sound-toggle i,
.sound-toggle span {

    transform: skewX(10deg);
}


.sound-toggle span {

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.15em;
}


.sound-toggle:hover {

    transform:
        skewX(-10deg)
        translate(-3px, -3px);

    background: var(--red);
}


/* =========================================================
   SCREEN CORNERS
   ========================================================= */

.screen-corner {

    position: fixed;

    z-index: 5;

    width: 35px;
    height: 35px;

    pointer-events: none;

    opacity: 0.65;
}


.screen-corner-tl {

    top: 18px;
    left: 18px;

    border-top: 2px solid var(--white);
    border-left: 2px solid var(--white);
}


.screen-corner-tr {

    top: 18px;
    right: 18px;

    border-top: 2px solid var(--red);
    border-right: 2px solid var(--red);
}


.screen-corner-bl {

    bottom: 18px;
    left: 18px;

    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
}


.screen-corner-br {

    bottom: 18px;
    right: 18px;

    border-bottom: 2px solid var(--red);
    border-right: 2px solid var(--red);
}


/* =========================================================
   ENTRY ANIMATION
   ========================================================= */

.profile-ui {

    animation:
        interface-enter 700ms
        cubic-bezier(0.16, 1, 0.3, 1)
        both;
}


.profile-info {

    animation:
        profile-enter 650ms
        120ms
        cubic-bezier(0.16, 1, 0.3, 1)
        both;
}


.socials {

    animation:
        menu-enter 650ms
        220ms
        cubic-bezier(0.16, 1, 0.3, 1)
        both;
}


@keyframes interface-enter {

    from {

        opacity: 0;

        transform:
            scale(0.96)
            translateY(25px)
            rotate(-1deg);

    }

    to {

        opacity: 1;

        transform:
            scale(1)
            translateY(0)
            rotate(0);

    }

}


@keyframes profile-enter {

    from {

        opacity: 0;

        transform:
            translateX(-35px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


@keyframes menu-enter {

    from {

        opacity: 0;

        transform:
            translateX(45px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .profile-page {

        padding:
            40px
            20px;
    }


    .profile-ui {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(310px, 380px);

        min-height: 600px;
    }


    .profile-info {

        padding:
            80px
            30px
            45px;
    }


    .socials {

        padding:
            75px
            25px
            45px
            20px;
    }


    .profile-info h1 {

        font-size:
            clamp(42px, 6vw, 62px);
    }

}


/* =========================================================
   SMALL TABLETS / MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .profile-page {

        min-height: auto;

        align-items: flex-start;

        padding:
            30px
            15px;
    }


    .profile-ui {

        display: flex;

        flex-direction: column;

        width: 100%;

        min-height: auto;
    }


    .profile-ui::before {

        width: 130%;

        height: 55%;

        left: -25%;
        top: -10%;

        transform:
            rotate(-5deg);
    }


    .profile-ui::after {

        width: 100%;

        height: 80%;

        right: -35%;
        top: 50%;
    }


    .profile-section-label {

        left: 25px;
        top: 30px;
    }


    .profile-info {

        padding:
            85px
            20px
            40px;
    }


    .profile-avatar-wrapper {

        width: 150px;
        height: 150px;

        margin-bottom: 25px;
    }


    .profile-avatar {

        width: 120px;
        height: 120px;
    }


    .avatar-decoration-one {

        width: 140px;
        height: 140px;
    }


    .profile-info h1 {

        font-size:
            clamp(42px, 13vw, 68px);

        white-space: normal;

        overflow-wrap: anywhere;
    }


.profile-description-row {
    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;
    line-height: 1.55;

    text-align: center;
}


    .profile-footer {

        margin-top: 25px;
    }


    .socials {

        padding:
            30px
            20px
            45px;

        border-top:
            2px solid rgba(255,255,255,0.18);

        border-left: none;
    }


    .social-menu-header {

        margin-bottom: 18px;
    }


    .social-menu-label {

        font-size: 34px;
    }


    .social-link {

        min-height: 48px;

        grid-template-columns:
            25px
            28px
            1fr
            25px;
    }


    .social-link:hover,
    .social-link:focus-visible {

        transform:
            skewX(-8deg)
            translateX(-5px);
    }


    .sound-toggle {

        right: 15px;
        bottom: 15px;

        height: 42px;
    }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/*
 * DESKTOP
 * Profil links / Socials rechts
 */

.profile-ui {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .profile-page {
        padding: 40px 20px;
    }

    .profile-ui {
        grid-template-columns: minmax(0, 1fr) 360px;
    }

    .profile-info {
        padding-left: 35px;
        padding-right: 35px;
    }

    .socials {
        padding-left: 20px;
        padding-right: 30px;
    }

    .profile-info h1 {
        font-size: clamp(42px, 6vw, 62px);
    }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/*
 * DESKTOP
 * Profil links / Socials rechts
 */

.profile-ui {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .profile-page {
        padding: 40px 20px;
    }

    .profile-ui {
        grid-template-columns: minmax(0, 1fr) 360px;
    }

    .profile-info {
        padding-left: 35px;
        padding-right: 35px;
    }

    .socials {
        padding-left: 20px;
        padding-right: 30px;
    }

    .profile-info h1 {
        font-size: clamp(42px, 6vw, 62px);
    }

}


/* =========================================================
   MOBILE
   Erst hier wird untereinander angeordnet.
   ========================================================= */

@media (max-width: 700px) {

    .profile-page {
        min-height: auto;

        align-items: flex-start;

        padding: 30px 15px;
    }


    /*
     * Jetzt bewusst EINSPALTIG
     */

    .profile-ui {
        display: flex;
        flex-direction: column;

        width: 100%;
        min-height: auto;
    }


    /* -----------------------------------------
       ROTE DIAGONALE
       ----------------------------------------- */

    .profile-ui::before {

        width: 130%;
        height: 55%;

        left: -25%;
        top: -10%;

        transform: rotate(-5deg);
    }


    .profile-ui::after {

        width: 100%;
        height: 80%;

        right: -35%;
        top: 50%;
    }


    /* -----------------------------------------
       PROFILE
       ----------------------------------------- */

    .profile-section-label {

        left: 25px;
        top: 30px;
    }


    .profile-info {

        width: 100%;

        padding:
            85px
            20px
            40px;
    }


    .profile-avatar-wrapper {

        width: 150px;
        height: 150px;

        margin-bottom: 25px;
    }


    .profile-avatar {

        width: 120px;
        height: 120px;
    }


    .avatar-decoration-one {

        width: 140px;
        height: 140px;
    }


    .profile-info h1 {

        font-size:
            clamp(42px, 13vw, 68px);

        white-space: normal;

        overflow-wrap: anywhere;
    }


    .profile-description-row {

        font-size: 11px;
    }


    .profile-footer {

        margin-top: 25px;
    }


    /* -----------------------------------------
       SOCIALS
       ----------------------------------------- */

    .socials {

        width: 100%;

        padding:
            30px
            20px
            45px;

        border-top:
            2px solid rgba(255,255,255,0.18);

        border-left: none;
    }


    .social-menu-header {

        margin-bottom: 18px;
    }


    .social-menu-label {

        font-size: 34px;
    }


    .social-link {

        min-height: 48px;

        grid-template-columns:
            25px
            28px
            1fr
            25px;
    }


    .social-link:hover,
    .social-link:focus-visible {

        transform:
            skewX(-8deg)
            translateX(-5px);
    }


    /* -----------------------------------------
       SOUND
       ----------------------------------------- */

    .sound-toggle {

        right: 15px;
        bottom: 15px;

        height: 42px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 430px) {

    .profile-page {

        padding:
            15px
            10px;
    }


    .profile-info {

        padding:
            75px
            15px
            35px;
    }


    .profile-info h1 {

        font-size: 43px;
    }


    .profile-description-row {

        justify-content: flex-start;

        text-align: left;
    }


    .socials {

        padding:
            25px
            12px
            40px;
    }


    .social-link {

        grid-template-columns:
            22px
            25px
            1fr
            20px;

        gap: 5px;

        padding: 8px;
    }


    .social-link-text {

        font-size: 10px;
    }


    .social-number {

        font-size: 7px;
    }


    .social-link i {

        font-size: 14px;
    }


    .social-arrow {

        font-size: 14px;
    }


    .ui-label-bottom {

        display: none;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}