/* AI 추천 안내 문구 — index / 글보기 공통 */
.index-ai-recommend-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 720px;
    margin: 8px auto 14px;
    padding: 14px 12px 16px;
    background: transparent;
    box-sizing: border-box;
    cursor: default;
    user-select: none;
}

.index-ai-recommend-notice__mark {
    flex-shrink: 0;
    width: 11px;
    height: 11px;
    border: 2px solid #7c3aed;
    box-sizing: border-box;
}

.index-ai-recommend-notice__text {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #4b5563;
}

.index-ai-recommend-notice__ai {
    color: #2563eb;
    font-weight: 800;
    letter-spacing: -0.01em;
}

@media (max-width: 500px) {
    .index-ai-recommend-notice {
        gap: 8px;
        margin-bottom: 12px;
        padding: 12px 10px 14px;
    }

    .index-ai-recommend-notice__mark {
        width: 9px;
        height: 9px;
        border-width: 1.5px;
    }

    .index-ai-recommend-notice__text {
        font-size: 18px;
    }
}
