/* /Users/iseungjun/Desktop/teca-official/style.css */
body {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.notion-scroll::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.notion-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.notion-scroll::-webkit-scrollbar-thumb {
    background: rgba(156, 163, 175, 0.3);
    border-radius: 10px;
}
.horizontal-scroll-mask {
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

/* Tag Colors */
.tag-pm { background: rgba(234, 179, 8, 0.2); color: #facc15; }
.tag-design { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.tag-dev { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.tag-frontend { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.tag-backend { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.tag-ios { background: rgba(244, 114, 182, 0.2); color: #f472b6; }
.tag-android { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.tag-ai { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.tag-neutral { background: rgba(100, 116, 139, 0.2); color: #94a3b8; }
.tag-marketing { background: rgba(16, 185, 129, 0.2); color: #10b981; }

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
