/* ==========================================================================
   finglobalsoft.com -- canonical chrome stylesheet
   Extracted from index.html design system
   ========================================================================== */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Design tokens */
:root {
    /* Brand palette (legacy names kept for compatibility) */
    --primary: #0066ff;
    --secondary: #00d4ff;
    --dark: #0a0e27;
    --darker: #050714;
    --light: #ffffff;
    --gray: #8892b0;

    /* Canonical tokens consumed by third-party components */
    --bg: #050714;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-elevated: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --text-muted: #8892b0;
    --accent: #0066ff;
    --accent-fg: #ffffff;
    --accent-hover: #0052cc;
    --border: rgba(255, 255, 255, 0.1);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-pill: 50px;

    /* Nav geometry */
    --nav-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Header / primary navigation
   Scoped to `header nav` so inline <nav.toc> / <nav.breadcrumbs>
   inside articles do NOT inherit fixed positioning.
   ========================================================================== */
header nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

header nav.scrolled {
    background: rgba(5, 7, 20, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

header .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

header .logo {
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

header .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

header .nav-links li {
    position: relative;
    list-style: none;
}

header .nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

header .nav-links a:hover {
    color: var(--light);
}

header .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

header .nav-links a:hover::after {
    width: 100%;
}

/* submenu (if provided by header.primary children) */
header .nav-links .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: rgba(10, 14, 39, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0;
    list-style: none;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

header .nav-links li:hover > .submenu {
    display: block;
}

header .nav-links .submenu li {
    padding: 0;
}

header .nav-links .submenu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray);
}

header .nav-links .submenu a::after {
    display: none;
}

header .header-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

header .cta-button,
.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    color: var(--light);
}

/* Body offset so fixed nav doesn't overlap content on blog/legal pages */
body.pbn-blog-page > main,
body.pbn-blog-page > article,
body.pbn-content > main {
    padding-top: calc(var(--nav-height) + 24px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    padding: 3rem 2rem 2rem;
    background: var(--dark);
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    color: var(--gray);
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: left;
}

footer .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--light);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

footer .footer-section p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-section li {
    margin-bottom: 0.5rem;
}

footer .footer-section a {
    color: var(--gray);
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

footer .footer-section a:hover {
    color: var(--secondary);
}

footer .footer-social .social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

footer .footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.02);
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

footer .footer-social .social-icon:hover {
    color: var(--light);
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.08);
}

footer .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--gray);
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================================================
   Shared utility: container
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Article / long-form content (blog posts, legal pages)
   ========================================================================== */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    color: var(--text);
}

.article-container h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, var(--light), var(--gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-container .meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.article-container .meta a {
    color: var(--text-muted);
}

.article-container .featured-image {
    width: 100%;
    border-radius: var(--radius);
    margin: 1.5rem 0 2.5rem;
    overflow: hidden;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    background: var(--bg-card);
}

.article-container .content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.article-container .content > * + * {
    margin-top: 1.25rem;
}

.article-container .content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    margin: 2.5rem 0 1rem;
    color: var(--light);
}

.article-container .content h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 2rem 0 0.75rem;
    color: var(--light);
}

.article-container .content h4 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--light);
}

.article-container .content p {
    color: var(--text);
}

.article-container .content a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-container .content a:hover {
    color: var(--primary);
}

.article-container .content ul,
.article-container .content ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.article-container .content li {
    margin-bottom: 0.5rem;
}

.article-container .content img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
}

.article-container .content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary);
    background: var(--bg-card);
    color: var(--text-muted);
    font-style: italic;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-container .content pre {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    overflow-x: auto;
    font-size: 0.9rem;
    margin: 1.5rem 0;
}

.article-container .content code {
    font-family: 'SF Mono', Monaco, Menlo, Consolas, monospace;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.article-container .content pre code {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.article-container .content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.article-container .content table th,
.article-container .content table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}

.article-container .content table th {
    background: var(--bg-elevated);
    color: var(--light);
    font-weight: 600;
}

/* Table of contents -- MUST reset against global header nav rules */
nav.toc,
.toc {
    position: static;
    z-index: auto;
    width: auto;
    top: auto;
    left: auto;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    backdrop-filter: none;
}

nav.toc h2,
.toc h2 {
    font-size: 1rem;
    margin: 0 0 0.75rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

nav.toc ul,
.toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

nav.toc li,
.toc li {
    margin: 0.35rem 0;
}

nav.toc a,
.toc a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
}

nav.toc a:hover,
.toc a:hover {
    color: var(--secondary);
}

/* Breadcrumbs -- same reset as TOC */
nav.breadcrumbs,
.breadcrumbs {
    position: static;
    z-index: auto;
    width: auto;
    top: auto;
    left: auto;
    background: transparent;
    border: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

nav.breadcrumbs ol,
.breadcrumbs ol,
nav.breadcrumbs ul,
.breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

nav.breadcrumbs li,
.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

nav.breadcrumbs li + li::before,
.breadcrumbs li + li::before {
    content: '/';
    color: var(--text-muted);
}

nav.breadcrumbs a,
.breadcrumbs a {
    color: var(--gray);
    text-decoration: none;
}

nav.breadcrumbs a:hover,
.breadcrumbs a:hover {
    color: var(--secondary);
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    color: var(--light);
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.08);
}

/* ==========================================================================
   Share buttons (inline bottom-of-article row)
   ========================================================================== */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    margin: 2.5rem 0 1.5rem;
}

.share-buttons .share-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
    color: #fff;
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.share-btn-x  { background: #000000; }
.share-btn-fb { background: #1877F2; }
.share-btn-li { background: #0A66C2; }
.share-btn-wa { background: #25D366; }
.share-btn-tg { background: #229ED9; }

/* ==========================================================================
   Share popover (BBC-style top share dropdown)
   ========================================================================== */
.share-popover-wrap {
    position: relative;
    display: inline-block;
}

.share-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-toggle:hover {
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.08);
}

.share-popover {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: rgba(10, 14, 39, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.share-popover[hidden] {
    display: none;
}

.share-pop-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

.share-pop-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.share-pop-item .ico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.share-pop-item svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.share-pop-x  .ico { background: #000000; }
.share-pop-fb .ico { background: #1877F2; }
.share-pop-li .ico { background: #0A66C2; }
.share-pop-wa .ico { background: #25D366; }
.share-pop-tg .ico { background: #229ED9; }

/* ==========================================================================
   Blog listing -- categories, grid, cards, pagination
   ========================================================================== */
.blog-header {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    padding: 0 1.5rem;
    text-align: left;
}

.blog-header h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    background: linear-gradient(135deg, var(--light), var(--gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header .blog-intro {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.categories::-webkit-scrollbar {
    display: none;
}

.cat-chip {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cat-chip:hover {
    color: var(--light);
    border-color: var(--secondary);
}

.cat-chip.active {
    background: var(--primary);
    color: var(--accent-fg);
    border-color: var(--primary);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.4);
}

.post-card a.card-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card-image {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: var(--bg-elevated);
    position: relative;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    background:
        linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.1)),
        radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.15), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.25), transparent 50%);
}

.post-card-image-fallback .ph-cat {
    color: var(--light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.post-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.cat-link {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.cat-link:hover {
    color: var(--primary);
}

.post-card-title {
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 0;
    color: var(--light);
    font-weight: 600;
}

.post-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.post-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* ==========================================================================
   Related posts (end of article)
   ========================================================================== */
.related-posts {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border);
}

.related-posts h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.15);
}

.related-card h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
    color: var(--light);
    line-height: 1.35;
}

.related-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 2rem auto 3rem;
    padding: 0 1.5rem;
    text-align: center;
}

/* Legacy templates wrap page numbers in <ul><li>; neutralise cleanly. */
.pagination ul,
.pagination ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: contents;
}

.pagination li {
    list-style: none;
    display: inline-flex;
    margin: 0;
    padding: 0;
}

.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination a:hover {
    color: var(--light);
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.08);
}

.pagination .current,
.pagination [aria-current="page"],
.pagination span.current {
    background: var(--primary);
    color: var(--accent-fg);
    border-color: var(--primary);
}

.pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    header .nav-container {
        padding: 1rem 1.25rem;
    }

    header .nav-links {
        display: none;
    }

    header .cta-button,
    .cta-button {
        padding: 0.5rem 1.1rem;
        font-size: 0.85rem;
    }

    footer .footer-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .article-container {
        padding: 2rem 1.25rem 3rem;
    }

    :root {
        --nav-height: 70px;
    }
}

@media (max-width: 480px) {
    header .logo {
        font-size: 1.05rem;
    }
}
