.board-title-header,
.memo-title-header {
    position: relative;
    margin: 0 0 22px;
    padding: 22px 24px 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: var(--sc-radius);
    background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(232,241,255,.62));
    box-shadow: 0 18px 46px rgba(37,99,235,.12);
}

.board-title-header::before,
.memo-title-header::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--sc-accent), var(--sc-purple));
}

.board-title-header h1,
.memo-title-header h1 {
    position: relative;
    margin: 0;
    color: var(--sc-accent-strong);
    font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 44px;
    font-weight: var(--sc-font-black);
    line-height: 1.08;
}

.board-title-header p,
.memo-title-header p {
    position: relative;
    margin: 8px 0 0;
    color: #475569;
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 820px) {
    .board-title-header,
    .memo-title-header {
        margin-bottom: 18px;
        padding: 18px 18px 20px;
    }

    .board-title-header h1,
    .memo-title-header h1 {
        font-size: 34px;
    }

    .board-title-header p,
    .memo-title-header p {
        font-size: 15px;
    }
}
