/* Custom Fonts */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
}

/* Editorial Card Style */
.editorial-card {
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(197, 198, 210, 0.15);
}

/* Achievement Gradient */
.achievement-gradient {
    background: linear-gradient(135deg, #00113a 0%, #002366 100%);
}

.sidebar-logo-link {
    display: inline-flex;
    align-items: center;
    max-width: 150px;
}

.sidebar-logo {
    width: 100%;
    height: 40px;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 1023px) {
    .sidebar-logo-link {
        max-width: 128px;
    }

    .sidebar-logo {
        height: 34px;
    }
}
