:root { --bg-light: #ffffff; --text-dark: #1a1a1a; --text-gray: #666666; --text-light-gray: #999999; --text-lighter-gray: #cccccc; --accent-blue: #3b82f6; --accent-red: #e10112; --accent-green: #10b981; --accent-orange: #f59e0b; --border-color: rgba(0, 0, 0, 0.05); --card-bg: #f8f9fa; --header-height: 80px; --crypto-border: rgba(0, 0, 0, 0.08); } * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif; } body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; position: relative; min-height: 100vh; } #dotCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.7; } .site-header { position: fixed; top: 0; width: 100%; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 100; background: rgba(255, 255, 255, 0); backdrop-filter: none; border-bottom: 1px solid rgba(0, 0, 0, 0); transition: all 0.3s ease; opacity: 0; transform: translateY(-20px); animation: fadeInDown 0.8s ease 0.5s forwards; height: var(--header-height); } @keyframes fadeInDown { to { opacity: 1; transform: translateY(0); } } .site-header.scrolled { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(3px); border-bottom: 1px solid rgba(0, 0, 0, 0.05); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); } .logo { font-size: 1.2rem; font-weight: 600; letter-spacing: 1px; opacity: 0; transform: translateX(-20px); animation: fadeInLeft 0.8s ease 0.8s forwards; color: var(--text-dark); } @keyframes fadeInLeft { to { opacity: 1; transform: translateX(0); } } .nav-links { display: flex; gap: 2.5rem; } .nav-link { color: var(--text-gray); text-decoration: none; font-size: 0.9rem; position: relative; padding: 0.5rem 0; transition: all 0.3s ease; opacity: 0; transform: translateY(10px); font-weight: 500; } .nav-link:nth-child(1) { animation: fadeInUp 0.6s ease 1s forwards; } .nav-link:nth-child(2) { animation: fadeInUp 0.6s ease 1.1s forwards; } .nav-link:nth-child(3) { animation: fadeInUp 0.6s ease 1.2s forwards; } .nav-link:nth-child(4) { animation: fadeInUp 0.6s ease 1.3s forwards; } @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } } .nav-link:hover { color: var(--text-dark); } .nav-link.active { color: var(--accent-red); } .nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background-color: var(--accent-red); transform: scaleX(1); transition: transform 0.3s ease; } .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background-color: var(--accent-red); transform: scaleX(0); transition: transform 0.3s ease; } .nav-link:hover::after { transform: scaleX(1); } .contact-button { position: fixed; bottom: 4rem; right: 5%; z-index: 100; display: flex; align-items: center; color: var(--accent-red); text-decoration: none; font-size: 0.8rem; letter-spacing: 2px; transition: all 0.3s ease; opacity: 0; animation: fadeInRight 0.8s ease 1.5s forwards; font-weight: 500; } @keyframes fadeInRight { to { opacity: 1; } } .contact-button:hover { color: var(--text-dark); } .contact-button:hover .contact-line { background: var(--accent-red); width: 70px; } .contact-line { width: 60px; height: 1px; background: var(--text-light-gray); margin-left: 15px; opacity: 0.7; transition: all 0.3s ease; } /* ==================== 섹션 통일 스타일 ==================== */ .page-section { min-height: 100vh; display: flex; flex-direction: column; padding: calc(var(--header-height) + 40px) 5% 0; position: relative; z-index: 10; border-bottom: none; box-sizing: border-box; overflow: hidden; } /* WORK 섹션 특별 처리 */ #work.page-section { overflow: visible !important; min-height: auto !important; display: block !important; opacity: 1 !important; visibility: visible !important; } /* WORK, SERVICE, CONTROL, CONTACT 섹션에서는 scroll-indicator 숨기기 */ #work .scroll-indicator, #service .scroll-indicator, #contact .scroll-indicator { display: none !important; } .section-container { display: flex; align-items: flex-start; width: 100%; max-width: 1600px; margin: 0 auto; position: relative; } .section-content { flex: 1; position: relative; z-index: 2; width: 100%; } .section-visual { flex: 0 0 45%; display: flex; justify-content: flex-end; align-items: flex-start; position: relative; z-index: 1; } .section-image { width: 100%; max-width: 600px; height: auto; opacity: 0; transform: translateX(50px) translateY(0) scale(0.95); filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1)); transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1); will-change: transform, opacity; } .section-image.animated { opacity: 0.7 !important; transform: translateX(0) translateY(0) scale(1); } @keyframes floatCloud { 0%, 100% { transform: translateY(0) rotate(0deg); } 25% { transform: translateY(-10px) rotate(0.5deg); } 50% { transform: translateY(-4px) rotate(-0.3deg); } 75% { transform: translateY(-7px) rotate(0.2deg); } } .section-image.floating { animation: floatCloud 8s ease-in-out infinite; } #home .section-image.floating { animation-duration: 9s; animation-delay: 0.3s; } #work .section-image.floating { animation-duration: 8s; animation-delay: 0.5s; } #service .section-image.floating { animation-duration: 7.5s; animation-delay: 0.2s; } #contact .section-image.floating { animation-duration: 8.5s; animation-delay: 0.4s; } .section-index { font-size: 0.9rem; color: var(--text-light-gray); margin-bottom: 1.5rem; letter-spacing: 3px; opacity: 0; transform: translateY(20px); font-weight: 500; } .section-title { font-size: 4rem; font-weight: 350; max-width: 900px; line-height: 1.05; margin-bottom: 2rem; opacity: 0; transform: translateY(30px); color: var(--text-dark); } .title-line { display: block; } .title-highlight { color: var(--accent-red); } .section-description { font-size: 1.1rem; color: var(--text-gray); max-width: 600px; line-height: 1.7; margin-bottom: 2rem; opacity: 0; transform: translateY(20px); } /* ==================== 암호화폐 디자인 ==================== */ .crypto-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 2rem; margin-top: 3rem; margin-bottom: 4rem; opacity: 0; transform: translateY(20px); width: 100%; } .crypto-card { background: transparent; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 12px; padding: 1.8rem; transition: all 0.3s ease; position: relative; min-height: 550px; } .crypto-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1); background: rgba(255, 255, 255, 0.05); } .crypto-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(0, 0, 0, 0.08); min-height: 60px; } .crypto-name { display: flex; flex-direction: column; gap: 0.3rem; } .crypto-main-name { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; } .crypto-symbol { font-size: 0.95rem; color: var(--text-gray); font-weight: 500; } .crypto-price-section { margin-bottom: 1.5rem; min-height: 100px; } .crypto-current-price { font-size: 2.8rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.5rem; letter-spacing: -0.9px; line-height: 1.1; } .price-update { animation: priceFlashRed 0.8s ease; } .price-down { animation: priceFlashBlue 0.8s ease; } @keyframes priceFlashRed { 0%, 100% { color: var(--text-dark); } 25% { color: var(--accent-red); } 50% { color: var(--text-dark); } 75% { color: var(--accent-red); } } @keyframes priceFlashBlue { 0%, 100% { color: var(--text-dark); } 25% { color: var(--accent-blue); } 50% { color: var(--text-dark); } 75% { color: var(--accent-blue); } } .crypto-change { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; } .change-direction { font-size: 1.2rem; font-weight: 700; } .change-direction.up { color: var(--accent-red); } .change-direction.down { color: var(--accent-blue); transform: rotate(180deg); } .change-percentage { font-size: 1.2rem; font-weight: 700; } .change-percentage.positive { color: var(--accent-red); } .change-percentage.negative { color: var(--accent-blue); } .change-amount { font-size: 1rem; color: var(--text-gray); font-weight: 500; } .crypto-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 0.8rem; } .stat-item { display: flex; flex-direction: column; gap: 0.2rem; min-height: 25px; } .stat-label { font-size: 0.75rem; color: var(--text-light-gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.2; } .stat-value { font-size: 0.95rem; font-weight: 400; color: var(--text-dark); line-height: 1.2; } .stat-subtext { font-size: 0.7rem; color: var(--text-gray); line-height: 1.2; font-style: normal; } .stat-subtext.positive { color: var(--accent-red); } .stat-subtext.negative { color: var(--accent-blue); } .divider { height: 1px; background: rgba(0, 0, 0, 0.08); margin: 0.8rem 0; } .additional-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 0.8rem; } .additional-stat { display: flex; flex-direction: column; gap: 0.2rem; min-height: 25px; } .additional-label { font-size: 0.75rem; color: var(--text-light-gray); font-weight: 500; line-height: 1.2; } .additional-value { font-size: 0.95rem; font-weight: 400; color: var(--text-dark); line-height: 1.2; } .additional-note { font-size: 0.65rem; color: var(--text-gray); margin-top: 0.1rem; font-style: normal; line-height: 1.2; } .update-time { position: absolute; bottom: 1rem; right: 1.5rem; font-size: 0.7rem; color: var(--text-lighter-gray); } .crypto-logo { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.5rem; color: white; } .crypto-logo.btc { background: linear-gradient(135deg, #f7931a, #f2a900); } .crypto-logo.eth { background: linear-gradient(135deg, #627eea, #8a94e6); } .crypto-logo.sol { background: linear-gradient(135deg, #00ffa3, #03e1ff); color: #000; } /* ==================== 서비스 카드 디자인 ==================== */ .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 2.5rem; margin-top: 3rem; margin-bottom: 4rem; opacity: 0; transform: translateY(20px); width: 100%; } .service-card { background: transparent; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; position: relative; min-height: 480px; display: flex; flex-direction: column; } .service-card:hover { transform: translateY(-6px); box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12); border-color: rgba(225, 1, 18, 0.2); } .service-image { width: 100%; height: 200px; object-fit: cover; background: linear-gradient(135deg, #f8f9fa, #e9ecef); } .service-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; } .service-header { margin-bottom: 1.5rem; } .service-name { font-size: 1.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.2; } .service-date { font-size: 0.9rem; color: var(--accent-red); font-weight: 500; letter-spacing: 0.5px; } .service-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; } .service-detail { display: flex; flex-direction: column; gap: 0.3rem; } .detail-label { font-size: 0.8rem; color: var(--text-light-gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; } .detail-value { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); line-height: 1.3; } .service-tech { margin-top: auto; margin-bottom: 1.5rem; } .tech-label { font-size: 0.8rem; color: var(--text-light-gray); margin-bottom: 0.5rem; } .tech-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; } .tech-tag { background: rgba(225, 1, 18, 0.08); color: var(--accent-red); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 500; } .service-link-container { display: flex; justify-content: flex-end; width: 100%; } .service-link { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--accent-red); text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 0.8rem 1.5rem; border: 1px solid var(--accent-red); border-radius: 8px; transition: all 0.3s ease; width: 100%; text-align: center; } .service-link:hover { background: var(--accent-red); color: white; transform: translateX(0); } .service-link-icon { font-size: 1rem; transition: transform 0.3s ease; } .service-link:hover .service-link-icon { transform: translateX(3px); } .process-steps { display: flex; flex-direction: column; gap: 3rem; margin-top: 3rem; margin-bottom: 5rem; opacity: 0; transform: translateY(20px); width: 100%; } .process-step { display: flex; align-items: flex-start; gap: 2rem; padding: 2rem; border-left: 3px solid var(--accent-red); background: #ffffff; border-radius: 0 12px 12px 0; } .step-number { font-size: 2.5rem; font-weight: 700; color: var(--accent-red); min-width: 60px; } .step-content { flex: 1; } .step-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-dark); } .step-description { font-size: 1.1rem; color: var(--text-gray); line-height: 1.7; } .scroll-indicator { position: absolute; bottom: 6rem; left: 5%; display: flex; align-items: center; color: var(--text-light-gray); font-size: 0.8rem; letter-spacing: 2px; z-index: 10; font-weight: 500; } .scroll-line { width: 60px; height: 1px; background: var(--text-light-gray); margin-right: 15px; opacity: 0.7; } /* ==================== SUPABASE 공지사항 스타일 ==================== */ .notices-container { margin-top: 3rem; width: 100%; max-width: 100%; opacity: 0; transform: translateY(20px); transition: all 0.8s ease; margin-bottom: 6rem; } .notices-container.visible { opacity: 1; transform: translateY(0); } .notices-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-color); width: 100%; } .notices-title { font-size: 1.5rem; font-weight: 600; color: var(--text-dark); white-space: nowrap !important; word-break: keep-all !important; margin-right: 2rem !important; } .notice-categories { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; width: 100%; } .category-btn { padding: 0.5rem 1.2rem; border: 1px solid var(--border-color); background: transparent; color: var(--text-gray); border-radius: 20px; font-size: 0.85rem; cursor: pointer; transition: all 0.3s ease; } .category-btn:hover { border-color: var(--accent-red); color: var(--accent-red); } .category-btn.active { background: var(--accent-red); border-color: var(--accent-red); color: white; } .notices-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; width: 100%; } .notice-item { padding: 1.2rem 1.5rem; border: 1px solid var(--border-color); border-radius: 8px; background: white; cursor: pointer; transition: all 0.3s ease; position: relative; width: 100%; } .notice-item:hover { border-color: var(--accent-red); transform: translateX(3px); } .notice-item.active { border-color: var(--accent-red); background: rgba(225, 1, 18, 0.02); } .notice-header { display: flex; justify-content: space-between; align-items: center; width: 100%; } .notice-title-wrapper { display: flex; align-items: center; gap: 0.8rem; flex: 1; min-width: 0; text-align: left !important; } .notice-title { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: left !important; } .notice-title i { color: var(--accent-red); margin-right: 0.5rem; } .notice-meta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; margin-left: 1rem; justify-content: flex-start !important; } .notice-category { display: inline-block; padding: 0.2rem 0.8rem; background: rgba(225, 1, 18, 0.08); color: var(--accent-red); border-radius: 12px; font-size: 0.7rem; font-weight: 500; white-space: nowrap; } .notice-date { font-size: 0.8rem; color: var(--text-light-gray); white-space: nowrap; } .notice-view-count { font-size: 0.8rem; color: var(--text-light-gray); white-space: nowrap; } .notice-view-count i { margin-right: 0.3rem; } .notice-content-view { width: 100%; padding: 2rem; border: 1px solid var(--border-color); border-top: none; border-radius: 0 0 8px 8px; background: white; opacity: 0; transform: translateY(-10px); max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); margin-top: -0.5rem; margin-bottom: 1rem; } .notice-content-view.active { opacity: 1; transform: translateY(0); max-height: 2000px; animation: slideDown 0.5s ease forwards; } @keyframes slideDown { from { max-height: 0; opacity: 0; } to { max-height: 2000px; opacity: 1; } } .content-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-color); } .content-title { font-size: 1.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; } .content-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; } .content-date { font-size: 0.9rem; color: var(--text-gray); } /* ========== 🚀 공지사항 콘텐츠 내 이미지 반응형 처리 (이 부분만 추가/수정함) ========== */ .content-body { font-size: 1.1rem; line-height: 1.8; color: var(--text-gray); width: 100%; max-width: 100%; word-wrap: break-word; overflow-x: hidden; } .content-body p { margin-bottom: 1.2rem; } .content-body h3 { font-size: 1.3rem; font-weight: 600; color: var(--text-dark); margin: 2rem 0 1rem 0; } .content-body ul, .content-body ol { margin-left: 1.5rem; margin-bottom: 1.2rem; } .content-body li { margin-bottom: 0.5rem; } /* ✅ 반응형 이미지 스타일: 컨테이너 너비에 맞추고, 비율 유지, 모바일에서도 안전 */ .content-body img { max-width: 100% !important; height: auto !important; display: block; margin: 1.5rem auto; border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); object-fit: contain; } /* 이미지가 혹시 width, height 하드코딩 되어 있어도 강제로 반응형 */ .content-body img[style*="width"] { width: auto !important; max-width: 100% !important; } .content-body img[style*="height"] { height: auto !important; } /* ============================================================ */ .loading-notices { padding: 3rem; text-align: center; color: var(--text-gray); font-size: 1.1rem; width: 100%; } .no-notices { padding: 3rem; text-align: center; color: var(--text-gray); font-size: 1.1rem; border: 1px dashed var(--border-color); border-radius: 8px; width: 100%; } .content-share-link { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); flex-wrap: wrap; } .share-link-label { font-size: 0.9rem; color: var(--text-gray); font-weight: 500; white-space: nowrap; } .share-link-url { flex: 1; min-width: 200px; font-size: 0.85rem; color: var(--text-dark); background: var(--card-bg); padding: 0.8rem 1rem; border-radius: 6px; border: 1px solid var(--border-color); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .share-link-copy-btn { background: var(--accent-red); color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 6px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; display: flex; align-items: center; gap: 0.5rem; } .share-link-copy-btn:hover { background: #c0010f; transform: translateY(-2px); } .share-link-copy-btn.copied { background: var(--accent-green); } .share-link-copy-btn.copied .copy-icon { display: none; } .share-link-copy-btn.copied .copied-icon { display: inline-block; } .copy-icon, .copied-icon { font-size: 0.9rem; } .copied-icon { display: none; } /* ==================== 공지사항 왼쪽 정렬 강제 ==================== */ #contact .notice-title, #contact .notice-title-wrapper, #contact .notice-meta, #contact .content-title, #contact .content-body, #contact .content-body p, #contact .content-body h3, #contact .content-body ul, #contact .content-body ol, #contact .content-body li { text-align: left !important; } #contact .notice-header { justify-content: space-between !important; align-items: flex-start !important; } #contact .notice-title-wrapper { justify-content: flex-start !important; } #contact .notice-meta { justify-content: flex-start !important; } @media (max-width: 780px) { #contact .notice-title, #contact .notice-title-wrapper, #contact .notice-meta, #contact .content-title, #contact .content-body, #contact .content-body p, #contact .content-body h3, #contact .content-body ul, #contact .content-body ol, #contact .content-body li { text-align: left !important; } #contact .notice-header { justify-content: space-between !important; align-items: flex-start !important; } #contact .notice-meta { justify-content: flex-start !important; margin-left: 0 !important; } .content-share-link { flex-direction: column; align-items: stretch; gap: 1rem; } .share-link-url { min-width: unset; width: 100%; font-size: 0.8rem; } .share-link-copy-btn { width: 100%; justify-content: center; } } #contact ~ .contact-button { display: none !important; } #contact .notices-container { width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; } #contact .notices-header, #contact .notice-categories, #contact .notices-list { width: 100% !important; } #contact .notice-item { width: 100% !important; } @media (max-width: 780px) { .scroll-indicator, .contact-button { display: none !important; } .site-header { justify-content: center; } .logo { text-align: center; width: 100%; position: relative; left: 0; transform: none; animation: fadeInCenter 0.8s ease 0.8s forwards; opacity: 0; } @keyframes fadeInCenter { to { opacity: 1; } } #work.page-section { position: relative !important; z-index: 10 !important; transform: none !important; height: auto !important; min-height: auto !important; padding-bottom: 3rem !important; } #work .section-content { opacity: 1 !important; transform: none !important; transition: none !important; } #work .crypto-grid, #work .process-steps { opacity: 1 !important; transform: none !important; transition: none !important; } #work .section-index, #work .section-title, #work .section-description { opacity: 1 !important; transform: none !important; transition: none !important; } #work .crypto-grid { display: flex !important; flex-direction: column !important; gap: 1.5rem !important; } #work .crypto-card { min-height: auto !important; padding: 1.2rem !important; } #work .process-steps { display: flex !important; flex-direction: column !important; gap: 1.5rem !important; } .notices-header { flex-direction: column; align-items: flex-start; gap: 1rem; } .notice-categories { gap: 0.3rem; width: 100%; overflow-x: auto; padding-bottom: 0.5rem; justify-content: flex-start !important; } .category-btn { padding: 0.4rem 0.8rem; font-size: 0.8rem; flex-shrink: 0; } .notice-item { padding: 1rem; } .notice-header { flex-direction: column; align-items: flex-start !important; gap: 0.5rem; } .notice-title-wrapper { width: 100%; text-align: left !important; } .notice-title { white-space: normal; font-size: 1rem; text-align: left !important; } .notice-meta { width: 100%; justify-content: flex-start !important; margin-left: 0; gap: 0.8rem; } .notice-content-view { padding: 1.5rem; } .content-header { flex-direction: column; align-items: flex-start; gap: 1rem; } .content-title { font-size: 1.5rem; text-align: left !important; } .content-meta { justify-content: flex-start !important; } .notices-container { margin-bottom: 3rem; } } @media (max-width: 1200px) { .section-container { flex-direction: column; text-align: left; } .section-visual { flex: 0 0 auto; width: 100%; justify-content: center; margin-top: 3rem; } .section-image { max-width: 500px; } .section-title { font-size: 3.5rem; } .service-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; } #work .section-container { flex-direction: column; text-align: left; } #work .crypto-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); } } #contact .section-visual { display: none; } @media (max-width: 1024px) { .crypto-grid { grid-template-columns: 1fr; } .crypto-card { padding: 1.6rem; min-height: 520px; } .section-title { font-size: 3rem; } .service-grid { grid-template-columns: 1fr; } .service-card { min-height: 450px; } #work .crypto-grid { grid-template-columns: 1fr; } #work .crypto-card { min-height: 500px; } } @media (max-width: 768px) { :root { --header-height: 70px; } .section-container { flex-direction: column; text-align: center; } .section-description { margin-left: auto !important; margin-right: auto !important; text-align: center !important; } .section-title { font-size: 2.5rem; } .nav-links { display: none; } .site-header { justify-content: center; } .logo { text-align: center; width: 100%; position: relative; left: 0; transform: none; animation: fadeInCenter 0.8s ease 0.8s forwards; opacity: 0; } .contact-button { display: none; } .scroll-indicator { display: none; } .crypto-card { padding: 1.4rem; min-height: 480px; } .crypto-current-price { font-size: 2.2rem; } .crypto-stats, .additional-stats { grid-template-columns: 1fr; gap: 1rem; } .stat-value { font-size: 0.9rem; } .additional-value { font-size: 0.9rem; } .crypto-header { flex-direction: column; align-items: flex-start; gap: 1rem; min-height: 50px; } .process-step { flex-direction: column; gap: 1rem; } .step-number { min-width: auto; } .page-section { padding-left: 1.5rem; padding-right: 1.5rem; padding-top: calc(var(--header-height) + 30px); } .section-image { max-width: 400px; } .service-card { min-height: 420px; } .service-content { padding: 1.5rem; } .service-name { font-size: 1.6rem; } .service-details { grid-template-columns: 1fr; gap: 1.2rem; } #work.page-section { padding-bottom: 3rem; min-height: auto; overflow: visible; } #work .crypto-grid { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; } #work .crypto-card { min-height: auto; padding: 1.2rem; } #work .crypto-current-price { font-size: 2rem; } #work .process-steps { gap: 1.5rem; margin-bottom: 2rem; } #work .process-step { flex-direction: column; gap: 1rem; padding: 1.2rem; } #work .step-number { font-size: 1.8rem; min-width: auto; } #work .step-title { font-size: 1.2rem; } #work .step-description { font-size: 1rem; } #work .section-title { font-size: 2.2rem; } #work .section-description { font-size: 1rem; } /* ✅ WORK 섹션 제목만 가운데 정렬 */ #work .section-index, #work .section-title, #work .title-line, #work .title-highlight { text-align: center !important; width: 100%; } } @media (max-width: 480px) { .crypto-current-price { font-size: 1.9rem; } .crypto-main-name { font-size: 1.4rem; } .crypto-logo { width: 45px; height: 45px; font-size: 1.3rem; } .change-percentage, .change-amount { font-size: 0.95rem; } .stat-item, .additional-stat { min-height: 45px; } .section-title { font-size: 2rem; } .section-image { max-width: 300px; } .service-grid { grid-template-columns: 1fr; gap: 1.5rem; } .service-card { min-height: 400px; } .service-image { height: 160px; } .service-name { font-size: 1.4rem; } .detail-value { font-size: 1rem; } #work .crypto-card { padding: 1rem; } #work .crypto-current-price { font-size: 1.8rem; } #work .crypto-stats, #work .additional-stats { grid-template-columns: 1fr; } #work .crypto-main-name { font-size: 1.3rem; } #work .section-title { font-size: 1.8rem; } #work .section-index { font-size: 0.8rem; } #work .process-step { padding: 1rem; } #work .step-number { font-size: 1.5rem; } #work .step-title { font-size: 1.1rem; } #work .step-description { font-size: 0.95rem; } #work .section-description h3 { font-size: 1.3rem; } #work .section-description p { font-size: 0.95rem; } .notice-meta { flex-wrap: wrap; gap: 0.5rem; justify-content: flex-start !important; } .content-title { font-size: 1.3rem; text-align: left !important; } .content-body { font-size: 1rem; text-align: left !important; } .notices-container { margin-bottom: 2rem; } } @media (max-width: 375px) { #work .crypto-card { padding: 0.8rem; } #work .crypto-current-price { font-size: 1.6rem; } #work .crypto-main-name { font-size: 1.2rem; } #work .section-title { font-size: 1.6rem; } } @media (min-width: 1200px) { .notices-container { max-width: 100%; padding-right: 0; } .notices-list { max-width: 100%; } .page-section { padding-left: 5%; padding-right: 5%; } } @media (min-width: 1600px) { .section-container { max-width: 1600px; } .notices-container { max-width: 1600px; margin-left: auto; margin-right: auto; } } #contact.page-section { padding-top: calc(var(--header-height) + 40px); min-height: 100vh; }
