.font20 {
	font-size: 20px !important;
}

.txt_center {
	text-align: center;
}

.txt_left {
	text-align: left;
}

.txt_right {
	text-align: right;
}

.pt0 {
	padding-top: 0px !important;
}

.pb0 {
	padding-bottom: 0px;
}

.pb70 {
	padding-bottom: 70px;
}

.pl50 {
	padding-left: 50px;
}

.pr50 {
	padding-right: 50px;
}

.mg0 {
	margin: 0px !important;
}

.mt8 {
	margin-top: 8px;
}

.mt20 {
	margin-top: 20px;
}

.mt25 {
	margin-top: 25px;
}

.mt35 {
	margin-top: 35px;
}

.mt40 {
	margin-top: 40px !important;
}

.mt55 {
	margin-top: 55px;
}

.ml10 {
	margin-left: 10px;
}

.space {
	letter-spacing: -0.8px;
}

.bold {
	font-weight: bold;
}

.center {
	text-align: center !important;
}

.s_ct_inner {    
    margin: 0 auto;
    width: 90%;
    
}

#s_ct2 {	
    background-color: #ffffff;
    background-repeat: no-repeat, no-repeat;
    background-position: center top, center bottom;
    background-size: contain;
}

#s_ct2 h2 {
    font-size: 44px;
    line-height: 40px;
    font-weight: bold;
    color: #3e3e3e;
    text-align: center;
    margin: 30px 0;
}
#s_ct2 h2 span.blue {
    color: #0051a3;
}

 .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 타이틀 스타일 (포인트 컬러 #00478f 적용) */
.org-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    padding-left: 12px;
    border-left: 4px solid #00478f; /* 지정해주신 포인트 색상 */
}

/* 전체 카드들을 감싸는 2열 그리드 컨테이너 */
.org-link-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 정확히 반반씩 2열 배치 */
   gap: 16px; /* 카드 사이의 여백 */
    width: 100%;
    box-sizing: border-box;
}

/* 개별 카드 스타일 */
.org-card {
    background: #ffffff;
    border: 1px solid #e2e8f0; /* 깔끔하고 연한 회색 테두리 */
   border-radius: 8px; /* 은은하게 둥근 모서리 */
   transition: all 0.25s ease-in-out; /* 부드러운 애니메이션 효과 */
}

/* 카드 내부 a 태그 레이아웃 설정 */
.org-card > a {
    display: flex;
    align-items: center; /* 내부 요소들 수직 중앙 정렬 */
   	padding: 24px 30px; /* 이미지 속 여백처럼 여유로운 간격 확보 */
    text-decoration: none;
    color: #333333;
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

/* 로고 영역 (왼쪽 칸 고정) */
.org-card .org-logo {
    width: 100%;
    max-width: 160px; /* 로고 영역 너비 확보 */
   height: 50px;
   display: flex;
   align-items: center;
   justify-content: center;   
    padding-right: 20px;    
}

/* 로고 대체용 텍스트 또는 이미지 스타일 */
.org-card .org-logo span {
    font-size: 18px;
    font-weight: 800;
}

/* 텍스트 정보 영역 */
.org-card .org-info {
    flex: 1; /* 남은 가로 공간을 다 차지함 */
   display: flex;
   align-items: baseline; /* 글자 아래 기준선 정렬 */
   gap: 8px; /* 지자체 이름과 '조직도 바로가기' 사이 간격 */
}

.org-card .org-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b; /* 짙은 차콜 회색 */
}

.org-card .org-desc {
    font-size: 14px;
    color: #64748b; /* 보조 설명 슬레이트 회색 */
}

/* 우측 상단 화살표 링크 아이콘 (CSS 그리기) */
.org-card .org-icon {
    width: 20px;
    height: 20px;
    position: relative;
    border: 1.5px solid #94a3b8; /* 기본은 연한 회색 상자 */
    border-radius: 3px;
    transition: all 0.2s ease;
}

/* 링크 아이콘 안쪽의 대각선 화살표 모양 기호 */
.org-card .org-icon::before {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #94a3b8;
    border-right: 1.5px solid #94a3b8;
    transition: all 0.2s ease;
}

/* [★핵심 효과] 마우스 오버(Hover) 시 디자인 변형 - #00478f 컬러 반영 */
.org-card:hover {
    border-color: #00478f; /* 요청하신 메인 브랜드 컬러로 테두리 변경 */
   box-shadow: 0 10px 20px rgba(0, 71, 143, 0.06); /* 부드러운 푸른빛 음영 적용 */
   transform: translateY(-2px); /* 카드가 위로 살짝 떠오르는 효과 */
}

.org-card:hover .org-icon {
    border-color: #00478f; /* 호버 시 아이콘 상자도 포인트 컬러로 */
}

.org-card:hover .org-icon::before {
    border-color: #00478f; /* 호버 시 화살표도 포인트 컬러로 */
}



@media screen and (max-width: 900px) {
.org-link-container {
    grid-template-columns: 1fr; /* 화면이 작아지면 1열로 세로 정렬 */
    gap: 12px; 
}
.org-card .org-logo {
    margin-right: 1.5rem;
}
.org-card .org-info {
    flex-direction: column; /* 가로가 좁을 때 텍스트를 위아래로 배치 */
    align-items: flex-start;
    gap: 2px;
}
}
