/* ===================================
   HEADER COMPONENTS
   =================================== */
.header {
    margin-bottom: 25px; /* 40px에서 25px로 줄임 */
    position: relative;
    z-index: 1;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-svg {
    display: block;
    height: auto;
}

.logo-text {
    position: relative;
}

.logo-text::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}


.main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem; /* 3rem에서 2.5rem으로 줄임 */
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 8px; /* 12px에서 8px로 줄임 */
    color: var(--text);
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}
