/* =========================
   HEADER
   ========================= */

.top-panel {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;
    min-height: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 8px 40px;
    background: #000;
}

/* LEFT / BRAND */

.top-panel .left {
    display: flex;
    align-items: center;
}

.top-panel .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.top-panel .logo {
    width: 54px;
    height: 54px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.top-panel .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.top-panel .title {
    margin-left: 5px;
    color: #a1a1a1;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}

/* RIGHT NAVIGATION */

.top-panel .right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-panel .right a {
    color: #a1a1a1;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.top-panel .right a:hover {
    color: #285A48;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 800px) {

    .top-panel {
        flex-direction: column;
        gap: 12px;
        padding: 10px 20px;
    }

    .top-panel .logo {
        width: 50px;
        height: 50px;
    }

    .top-panel .title {
        font-size: 18px;
    }

    .top-panel .right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
}

/* =========================
   SMALL PHONES
   ========================= */

@media (max-width: 480px) {

    .top-panel {
        gap: 10px;
        padding: 8px 12px;
    }

    .top-panel .logo {
        width: 44px;
        height: 44px;
    }

    .top-panel .title {
        font-size: 16px;
    }

    .top-panel .right {
        gap: 8px 14px;
    }

    .top-panel .right a {
        font-size: 13px;
    }
}