/* Core logo container */
.site-title-container {
    position: relative;
    height: 60px;
    padding: 15px 0 0 15px;
    width: 250px;
    overflow: visible;
    z-index: 1001;
}

/* Title and logo styling */
.site-title {
    margin: 0;
    position: relative;
    z-index: 1001;
    line-height: 1;
}

.site-title a {
    display: flex;
    align-items: flex-end;
    width: 250px;
    height: auto;
    position: relative;
    line-height: 1;
}

.site-logo {
    width: 100%;
    height: auto;
    max-width: 250px;
    filter: brightness(0) invert(1);
    display: block;
}

/* Beta label */
.beta-label {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-left: 0px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    opacity: 0.3;
    font-family: Arial, sans-serif;
}

/* Subtitle positioning */
.site-subtitle {
    font-style: italic;
    position: absolute;
    left: 20px;
    bottom: -0px;
    font-size: 12px;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: #bdc3c7;
    z-index: 1001;
}

/* Mobile adjustments */
@media (max-width: 700px) {
    .site-title-container {
        display: none;
    }
}