@charset "utf-8";

blockquote.block_box {
    border: 1px solid #ddd;
    margin: 0 0 20px 0;
    padding: 25px 30px;
    background-color: #f4f4f4;
}
blockquote.block_line{border-left:4px solid #ccc;margin:0 0 20px 0;padding:0 20px; border-left-color: #356050;}
/*문단제목*/
.view_contents .paragraph_title{
    border-top: 1px solid #356050;
    border-bottom: 1px solid #dcdcdc;
    padding: 15px 0;
    margin-top: 20px;
    font-weight: 600;
    font-size: 19px;
    clear: both;
}
.view_contents section.subview_title{
    position: relative;
    font-weight: 600;
    border-left: 3px solid #356050;
    padding-left: 25px;
    margin: 20px 0;
    clear: both;
}

/*전문 영역*/
.view_contents .preamble{
    border: 1px solid #89a399;
    padding: 40px 30px;
    position: relative;
    clear: both;
}
.view_contents .preamble:before {
    content: '';
    display: block;
    background: #356050;
    right: 30px;
    top: -8px;
    width: 8px;
    height: 17px;
    overflow: hidden;
    position: absolute;
}
.view_contents .preamble h3 {
    color: #356050;
    font-size: 19px;
    margin-bottom: 10px;
}

/*인용구*/
.view_contents .quote {
    text-align: center;
    font-weight: 600;
    font-size: 21px;
    padding: 20px 0;
    clear: both;
}
.view_contents .quote .quote_top{
    width: 24px;
    height: 18px;
    background-position: -68px -827px;
    display: block;
    margin: 0 auto 20px;
}
.view_contents .quote .quote_bottom {
    width: 24px;
    height: 18px;
    background-position: -92px -827px;
    display: block;
    margin: 20px auto 0;
}

/*카드뉴스 슬라이드 css*/
.slider-container {
    position: relative;
    width: 600px;
    height: 800px;
    margin: 50px auto;
    overflow: hidden;
    border: 1px solid #ddd;
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    width: 100%;
    flex: 0 0 100%;
}
.slide img {
    width: 100%;
    height: auto;
    display: block;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 60px;
    height: 60px;
    border-radius: 100px;
}
.prev { left: 10px; }
.next { right: 10px; }
.prev:hover, .next:hover {background-color: rgba(0, 0, 0, 0.8);}
.arrow{
    position: relative;
    width: 0;
    height: 0;
    top: -2px;
    opacity: 0.9;
    display: inline-block;
    border-style: solid;
    border-width:0 9px 10px 9px;
    border-color: transparent transparent #fff transparent;
}
.arrow.arL{
    left: -2px;
    transform: rotate(-90deg);
}
.arrow.arR{
    left: 2px;
    transform: rotate(90deg);
}
