/* 맥 스타일 코드 블록 — 사이트 라이트/다크와 무관하게 항상 다크 유지 */

.mac-code,
.mac-code[class*="language-"],
pre.wp-block-code.mac-code {
    position: relative;
    margin: 24px 0;
    padding: 54px 20px 20px;
    overflow-x: auto;

    background: #1e1e1e !important;
    color: #f8f8f2 !important;

    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);

    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        Menlo,
        monospace;

    font-size: 14px;
    line-height: 1.7;
    text-shadow: none;
}

/* 맥 상단 바 */
.mac-code::before {
    content: "Code Block";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 38px;

    color: #fff;
    background: #2b2b2b;
    border-bottom: 1px solid #3a3a3a;
    border-radius: 12px 12px 0 0;

    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 38px;
}

/* 빨강, 노랑, 초록 버튼 */
.mac-code::after {
    content: "";
    position: absolute;
    top: 13px;
    right: 60px;

    width: 12px;
    height: 12px;
    border-radius: 50%;

    background: #ff5f57;
    box-shadow:
        20px 0 0 #febc2e,
        40px 0 0 #28c840;
}

/* code 만 투명 — pre 다크 배경이 보이도록 */
.mac-code code,
.mac-code code[class*="language-"] {
    display: block;
    padding: 0;
    background: transparent !important;
    color: #f8f8f2;
    text-shadow: none;
    font-family: inherit;
    white-space: pre;
}
