318 lines
6.1 KiB
CSS
318 lines
6.1 KiB
CSS
/* ========================================
|
|
About 페이지 전용 스타일
|
|
======================================== */
|
|
|
|
/* 페이지 헤더 */
|
|
.page-header {
|
|
background: linear-gradient(135deg, var(--primary-color), #ff6600);
|
|
color: var(--bg-white);
|
|
padding: var(--spacing-3xl) 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.page-header h1 {
|
|
font-size: var(--font-5xl);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.page-header p {
|
|
font-size: var(--font-xl);
|
|
opacity: 0.95;
|
|
}
|
|
|
|
/* 회사 정보 그리드 */
|
|
.company-info {
|
|
margin-bottom: var(--spacing-3xl);
|
|
}
|
|
|
|
.info-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
background: var(--bg-light);
|
|
padding: var(--spacing-2xl);
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.info-item h3 {
|
|
color: var(--primary-color);
|
|
font-size: var(--font-sm);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.info-item p {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.info-item.full-width {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.info-item.full-width p {
|
|
line-height: 1.8;
|
|
color: var(--text-secondary);
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* About 콘텐츠 */
|
|
.about-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-2xl);
|
|
}
|
|
|
|
.about-content .card {
|
|
padding: var(--spacing-2xl);
|
|
}
|
|
|
|
.about-content h2 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-lg);
|
|
font-size: var(--font-3xl);
|
|
}
|
|
|
|
.about-content p {
|
|
color: var(--text-secondary);
|
|
line-height: 1.8;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.about-content p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* 비전 & 미션 */
|
|
.vision-mission {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
margin-top: var(--spacing-lg);
|
|
}
|
|
|
|
.vm-item {
|
|
padding: var(--spacing-xl);
|
|
background: var(--bg-light);
|
|
border-radius: var(--border-radius);
|
|
border-left: 4px solid var(--primary-color);
|
|
}
|
|
|
|
.vm-item h3 {
|
|
font-size: var(--font-xl);
|
|
margin-bottom: var(--spacing-md);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.vm-item p {
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* 타임라인 */
|
|
.timeline {
|
|
position: relative;
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.timeline::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 30px;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 2px;
|
|
background: var(--primary-color);
|
|
}
|
|
|
|
.timeline-item {
|
|
position: relative;
|
|
padding-left: 80px;
|
|
margin-bottom: var(--spacing-2xl);
|
|
}
|
|
|
|
.timeline-item::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 22px;
|
|
top: 5px;
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 50%;
|
|
background: var(--primary-color);
|
|
border: 4px solid var(--bg-white);
|
|
box-shadow: 0 0 0 2px var(--primary-color);
|
|
}
|
|
|
|
.timeline-date {
|
|
position: absolute;
|
|
left: 60px;
|
|
top: 0;
|
|
color: var(--primary-color);
|
|
font-weight: 600;
|
|
font-size: var(--font-sm);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.timeline-content {
|
|
background: var(--bg-light);
|
|
padding: var(--spacing-lg);
|
|
border-radius: var(--border-radius);
|
|
margin-left: var(--spacing-xl);
|
|
}
|
|
|
|
.timeline-content h4 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.timeline-content p {
|
|
color: var(--text-secondary);
|
|
margin: 0;
|
|
}
|
|
|
|
/* 팀 섹션 */
|
|
.team-section {
|
|
background: var(--bg-light);
|
|
}
|
|
|
|
.team-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
margin-top: var(--spacing-2xl);
|
|
}
|
|
|
|
.team-card {
|
|
background: var(--bg-white);
|
|
padding: var(--spacing-2xl);
|
|
border-radius: var(--border-radius);
|
|
text-align: center;
|
|
transition: var(--transition);
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.team-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.team-avatar {
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: 0 auto var(--spacing-lg);
|
|
background: linear-gradient(135deg, var(--primary-color), #ff6600);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.team-card h3 {
|
|
font-size: var(--font-2xl);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.team-nickname {
|
|
color: var(--primary-color);
|
|
font-weight: 500;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.team-role {
|
|
color: var(--text-secondary);
|
|
font-weight: 600;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.team-desc {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
font-size: var(--font-sm);
|
|
}
|
|
|
|
/* 핵심 가치 섹션 */
|
|
.values-section {
|
|
padding: var(--spacing-3xl) 0;
|
|
}
|
|
|
|
.values-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
margin-top: var(--spacing-2xl);
|
|
}
|
|
|
|
.value-item {
|
|
text-align: center;
|
|
padding: var(--spacing-xl);
|
|
background: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.value-item:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.value-icon {
|
|
font-size: 3rem;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.value-item h3 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-sm);
|
|
font-size: var(--font-xl);
|
|
}
|
|
|
|
.value-item p {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* 반응형 디자인 */
|
|
@media (max-width: 768px) {
|
|
.page-header h1 {
|
|
font-size: var(--font-3xl);
|
|
}
|
|
|
|
.page-header p {
|
|
font-size: var(--font-base);
|
|
}
|
|
|
|
.timeline::before {
|
|
left: 20px;
|
|
}
|
|
|
|
.timeline-item {
|
|
padding-left: 60px;
|
|
}
|
|
|
|
.timeline-item::before {
|
|
left: 12px;
|
|
}
|
|
|
|
.timeline-date {
|
|
position: relative;
|
|
left: 0;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.timeline-content {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.team-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.values-grid {
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
}
|
|
} |