
        .org-chart-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: white;
            padding: 30px;
            font-family: Arial, sans-serif;
        }

        .org-level {
            text-align: center;
            margin-bottom: 30px;
        }

        .org-box {
            display: inline-block;
            background-color: #1abc9c;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .org-description {
            color: #666;
            font-size: 14px;
            margin-left: 20px;
        }

        .org-connector-vertical {
            width: 2px;
            height: 30px;
            background-color: #ccc;
            margin: 0 auto;
        }

        .org-connector-horizontal {
            position: relative;
            margin-bottom: 30px;
        }

        .org-horizontal-line {
            width: 80%;
            height: 2px;
            background-color: #ccc;
            margin: 0 auto;
            position: relative;
        }

        .org-vertical-line {
            position: absolute;
            top: 0;
            width: 2px;
            height: 30px;
            background-color: #ccc;
        }

        .org-vertical-line.pos-0 {
            left: 0%;
        }

        .org-vertical-line.pos-25 {
            left: 25%;
        }

        .org-vertical-line.pos-50 {
            left: 50%;
        }

        .org-vertical-line.pos-75 {
            left: 75%;
        }

        .org-vertical-line.pos-100 {
            left: 100%;
            transform: translateX(-2px);
        }

        .org-departments {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 15px;
        }

        .org-department {
            flex: 1;
            min-width: 140px;
            text-align: center;
        }

        .org-department-box {
            background-color: #1abc9c;
            color: white;
            padding: 10px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .org-bottom-description {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 14px;
        }




/* À§Çè ¹× ±âÈ¸¿äÀÎ Å×ÀÌºí */

.climate-risk-container {
            font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            line-height: 1.4;
        }
        
        .climate-risk-description {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .climate-risk-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }
        
        .climate-risk-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
            margin-bottom: 30px;
        }
        
        .climate-risk-table th {
            background: #d4941a;
            color: white;
            padding: 15px 10px;
            text-align: center;
            font-weight: 600;
            border: 1px solid #b8860b;
            line-height: 1.3;
        }
        
        .climate-risk-table td {
            padding: 12px 10px;
            border: 1px solid #ddd;
            text-align: center;
            vertical-align: middle;
            line-height: 1.4;
        }
        
        .climate-category-cell {
            background: #f5f5f5;
            font-weight: 600;
            color: #333;
            text-align: center;
            vertical-align: middle;
            writing-mode: vertical-lr;
            text-orientation: mixed;
            width: 60px;
            padding: 20px 8px;
        }
        
        .climate-item-cell {
            background: #fff9e6;
            text-align: left;
            padding: 15px 15px;
            line-height: 1.5;
            width: 300px;
        }
        
        .climate-timeline-cell {
            width: 70px;
            padding: 15px 5px;
        }
        
        .climate-impact-cell {
            text-align: left;
            padding: 15px 15px;
            line-height: 1.5;
            width: 320px;
        }
        
        .climate-strategy-cell {
            text-align: left;
            padding: 15px 12px;
            line-height: 1.4;
            width: 80px;
        }
        
        .climate-response-cell {
            text-align: left;
            padding: 15px 15px;
            line-height: 1.5;
        }
        
        .climate-circle {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 2px;
        }
        
        .climate-circle-empty {
            border: 2px solid #333;
            background: white;
        }
        
        .climate-circle-half {
            border: 2px solid #333;
            background: linear-gradient(90deg, #333 50%, white 50%);
        }
        
        .climate-circle-full {
            background: #333;
        }
        
        .climate-legend {
            font-size: 12px;
            margin-top: 10px;
            color: #666;
        }
        
        .climate-legend .climate-circle {
            margin: 0 5px 0 10px;
        }








        /* ¹ÝÀÀÇü µðÀÚÀÎ */
        @media (max-width: 768px) {
            .org-chart-container {
                padding: 20px;
            }

            .org-box {
                padding: 10px 20px;
                font-size: 14px;
            }

            .org-description {
                font-size: 12px;
                margin-left: 10px;
            }

            .org-departments {
                flex-direction: column;
                align-items: center;
            }

            .org-department {
                min-width: 200px;
                margin-bottom: 10px;
            }

            .org-horizontal-line {
                width: 90%;
            }
        }

        @media (max-width: 480px) {
            .org-chart-container {
                padding: 15px;
            }

            .org-box {
                padding: 8px 15px;
                font-size: 12px;
            }

            .org-description {
                font-size: 11px;
            }

            .org-department-box {
                padding: 8px 12px;
                font-size: 12px;
            }
        }










