.blog-shared-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e7e7e7;
    backdrop-filter: blur(8px);
}

.blog-shared-header__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.blog-shared-header__left {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.blog-shared-header__logo {
    display: inline-flex;
    align-items: center;
}

.blog-shared-header__logo img {
    display: block;
    width: 180px;
    height: auto;
}

.blog-shared-header__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid #232323;
    color: #232323;
    text-decoration: none;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition: 0.2s ease;
}

.blog-shared-header__back:hover {
    background: #232323;
    color: #ffffff;
}

.blog-shared-header__nav {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.blog-shared-header__nav a {
    color: #232323;
    text-decoration: none;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: 0.2s ease;
}

.blog-shared-header__nav a:hover {
    border-bottom-color: #232323;
}

@media (max-width: 768px) {
    .blog-shared-header__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-shared-header__logo img {
        width: 150px;
    }
}
