/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* 컨테이너 폭 맞춤 (상단 Intro/Works와 동일) */
.about-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 회사 소개 */
.about-intro {
    text-align: left; /* 상단 Intro와 같은 정렬 */
    margin-bottom: 50px;
}

.about-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

/* 파트너 섹션 */
.partners h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

/* 파트너 그리드 */
.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* 왼쪽 정렬 */
    gap: 20px;
}

.partner-item a {
    display: flex;           /* 부모 flex로 바꾸기 */
    align-items: center;     /* 세로 중앙 */
    justify-content: center; /* 가로 중앙 */
    width: 100%;
    height: 100%;
}

.partner-item {
    flex: 0 1 150px;   /* 칸 폭 */
    height: 100px;     /* 칸 높이 */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
}

.partner-item img {
    max-width: 100%;   /* 칸 폭보다 크면 줄이기 */
    max-height: 100%;  /* 칸 높이보다 크면 줄이기 */
    width: auto;       /* 비율 유지 */
    height: auto;      /* 비율 유지 */    
}

.partner-item:hover {
    transform: scale(1.05);
}
