/* ===== BASE STYLES ===== */
/**
 * @file: base/typography.css
 * @description: 타이틀 및 텍스트 관련 스타일
 * @components: 제목, 본문 텍스트
 * @usage: 제목, 본문 등 텍스트 요소의 스타일링
 */

/* 타이틀 스타일 */
.title {
  position: static;
  transform: none;
  font-size: 18px;
  font-weight: bold;
  color: #1a73e8;
  transition: color 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
/* ===== COMPONENTS STYLES ===== */
/**
 * @file: base/typography.css
 * @description: 제목 스타일
 * @components: h1, h2
 * @usage: 제목 요소의 스타일링
 */
h1, h2 {
  color: #1a73e8;
  margin-bottom: 20px;
  font-weight: 700;
}
