.logo-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: var(--logo-size-desktop);
    height: 50px;
    position: relative;
    z-index: 1;
}

.logo-container {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    width: var(--logo-size-desktop);
    height: var(--logo-size-desktop);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Large Desktop (1600px - 1920px+) */
@media (min-width: 1600px) {
    .logo-container {
        left: -90px;
        width: 150px;
        height: 150px;
    }
    .logo-wrapper {
        width: 1px;
    }
}

/* Desktop (1440px - 1600px) */
@media (max-width: 1600px) {
    .logo-container {
        left: -20px;
        width: 90px;
        height: 90px;
    }
    .logo-wrapper {
        width: 90px;
    }
}

/* Laptop Large (1366px - 1440px) */
@media (max-width: 1440px) {
    .logo-container {
        left: -40px;
        width: 80px;
        height: 80px;
    }
    .logo-wrapper {
        width: 80px;
    }
}

/* Laptop Standard (1280px - 1366px) */
@media (max-width: 1366px) {
    .logo-container {
        left: -35px;
        width: 75px;
        height: 75px;
    }
    .logo-wrapper {
        width: 75px;
    }
}

/* Laptop Small (1024px - 1280px) */
@media (max-width: 1280px) {
    .logo-container {
        left: -30px;
        width: 110px;
        height: 110px;
    }
    .logo-wrapper {
        width: 70px;
    }
}

/* Small Laptop / Large Tablet (900px - 1024px) */
@media (max-width: 1024px) {
    .logo-container {
        left: -25px;
        width: 60px;
        height: 60px;
    }
    .logo-wrapper {
        width: 60px;
    }
}

/* Tablet (768px - 900px) */
@media (max-width: 900px) {
    .logo-container {
        left: -20px;
        width: 80px;
        height: 80px;
    }
    .logo-wrapper {
        width: 55px;
        height: 44px;
    }
}

/* Small Tablet (640px - 768px) */
@media (max-width: 768px) {
    .logo-container {
        left: -18px;
        width: 50px;
        height: 50px;
    }
    .logo-wrapper {
        width: 50px;
        height: 44px;
    }
}

/* Large Mobile (480px - 640px) */
@media (max-width: 640px) {
    .logo-container {
        left: -15px;
        width: 120px;
        height: 120px;
    }
    .logo-wrapper {
        width: 55px;
        height: 44px;
    }
}

/* Mobile (380px - 480px) */
@media (max-width: 480px) {
    .logo-container {
        left: -12px;
        width: 110px;
        height: 110px;
    }
    .logo-wrapper {
        width: 50px;
        height: 42px;
    }
}

/* Small Mobile (below 380px) */
@media (max-width: 380px) {
    .logo-container {
        left: -8px;
        width: 50px;
        height: 50px;
    }
    .logo-wrapper {
        width: 42px;
        height: 40px;
    }
}