/* NAME MEANING */
.meaning-section {
    background: var(--off-white);
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
}

.meaning-inner {
    position: relative;
    z-index: 2;
}

.meaning-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: end;
    margin-bottom: 50px;
}

.meaning-header-left h2 {
    font-family: 'Bangers', cursive;
    font-size: clamp(40px, 4.5vw, 64px);
    letter-spacing: 2px;
    line-height: 1.0;
}

.meaning-header-left h2 .accent {
    color: var(--red);
}

.meaning-header-right {
    padding-left: 8%;
    border-left: 1px solid var(--warm-gray);
}

.meaning-header-right p {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
}

.meaning-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--warm-gray);
    border: 1px solid var(--warm-gray);
    border-radius: 4px;
    overflow: hidden;
}

.meaning-card-big {
    background: var(--off-white);
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}

.meaning-card-big:hover {
    background: white;
}

.meaning-card-bg-glyph {
    position: absolute;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 240px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    right: -20px;
    bottom: -30px;
    color: rgba(219, 5, 5, 0.05);
}

.mc-num {
    font-family: 'Bangers', cursive;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 28px;
    display: block;
}

.mc-glyph-main {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 1;
    color: var(--red);
    margin-bottom: 4px;
    display: block;
}

.mc-romanized {
    font-family: 'Bangers', cursive;
    font-size: clamp(36px, 3.5vw, 52px);
    letter-spacing: 2px;
    line-height: 1.0;
    margin-bottom: 16px;
}

.mc-subtitle {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.mc-divider {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin-bottom: 24px;
}

.mc-desc {
    font-family: 'Lora', serif;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}