@charset "utf-8";

/* 내용관리 */
#ctt {margin:10px 0;padding:20px;background:#fff}
.ctt_admin {text-align:right}
#ctt header h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ctt_con {padding:10px 0;line-height:1.6em}
#ctt_con img{max-width:100%;height:auto}
.ctt_img {text-align:center}

.container {
            display: flex;
            flex-wrap: wrap;
            max-width: 1350px;
           
            padding: 20px 0;
            
        }
        .image-section {
            flex: 1;
            max-width: 380px;
            overflow: hidden;
            margin: 0 auto;
        }
        .image-section img {
            width: 100%;
            height: auto;
            max-width: 380px;
            max-height: 380px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .text-section {
            flex: 2;
            padding: 0 0 20px 40px ;
			font-size:1.2em;
        }
        .text-section h2 {
            color: #333;
            margin-bottom: 20px;
        }
        .text-section p {
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }
        .text-section .signature {
            text-align: right;
            font-weight: bold;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: center;
            }
            .image-section {
                max-width: 100%;
            }
            .image-section img {
                max-width: 100%;
                max-height: none;
            }
            .text-section {
                padding: 10px;
                text-align: ;
            }
            .text-section .signature {
                text-align: right;
            }
        }
