@charset "utf-8";
/************************************************************************************************************
                                          시민 법률지원 - 봉사활동
************************************************************************************************************/
.volunteer-banner {
  width: 100%;
  margin-bottom: 40px;
}
.volunteer-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.only-mo {
  display: none;
}
/* 2등분 레이아웃 설정 */
.split-container {
  display: flex;
  gap: 50px; /* 좌우 영역 사이 간격 */
  align-items: flex-start;
  margin-top: 80px;
}
/* 좌측/우측 50%씩 배분 */
.text-side, .image-side {
  flex: 1;
  width: 50%;
}
/* 텍스트 스타일 */
.info-section {
  margin-bottom: 40px;
}
.volunteer-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #222;
  line-height: 25px;
  margin: 0px 0 20px;
  padding-left: 15px;
  border-left: 5px solid #00468c;
}
.volunteer_list-style {
  list-style: none;
  padding: 0;
}
.volunteer_list-style li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 9px;
  font-size: 18px;
  color: #444;
}
/* 이미지와 동일한 하이픈(-) 기호 */
.volunteer_list-style li::before {
  content: "-";
  position: absolute;
  left: 0;
  font-weight: bold;
}
.volunteer_list-style li strong {
  font-weight: 600;
  color: #333;
}
.volunteer_list-style li:last-child {
  margin-bottom: 30px;
}
/* 우측 2x2 이미지 그리드 */
.volunteer_gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 한 줄에 2개 */
  gap: 15px; /* 이미지 사이 간격 */
}
.volunteer_img-box {
  aspect-ratio: 1.4 / 1; /* 가로가 약간 긴 직사각형 비율 */
  overflow: hidden;
  background-color: #f0f0f0;
  border-radius: 4px;
}
.volunteer_img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.volunteer_img-box img:hover {
  transform: scale(1.05);
}
/* 모바일 반응형 (768px 이하) */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column; /* 세로로 쌓임 */
    gap: 30px;
  }
  .text-side, .image-side {
    width: 100%;
  }
  .title {
    font-size: 20px;
  }
  .list-style li {
    font-size: 16px;
  }
  /* 모바일에서도 한 줄에 2개 유지 */
  .volunteer_gallery-grid {
    gap: 10px;
  }
  .only-mo {
    display: inline;
  }
}