/* =================================================
   회사정보 페이지 전용
================================================= */

/* 중앙 래퍼 */
.company-center{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:32px;
}

/* 2x2 카드 */
.company-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:28px;
  width:100%;
}

/* 카드 */
.company-center .card-box{
  background:#fff;
  border-radius:12px;
  padding:24px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
  min-height:260px;
}

/* 카드 제목 */
.company-center .card-title{
  font-size:18px;
  font-weight:700;
  margin-bottom:16px;
}

/* 회사정보 입력폼 */
.company-center .form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:14px;
}

.company-center .form-group label{
  font-size:14px;
  font-weight:600;
}

.company-center .form-group input{
  height:40px;
  padding:0 10px;
  border:1px solid #d1d5db;
  border-radius:6px;
}

/* 메모 */
.company-center .memo-textarea{
  width:100%;
  min-height:160px;
  resize:none;
  padding:12px;
  border-radius:8px;
  border:1px solid #d1d5db;
  font-size:14px;
}

