@charset "utf-8";

body {
    background-image: url("../img/background_2.jpg") !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
}

.single_story {
    display: block;
    margin-bottom: 2%;
}

.story_banner {
    position: relative;
    height: 0;
    padding-bottom: 33%;
    width: 100%;
}

.story_photo {
    width: 100%;
    -webkit-filter: brightness(0.5);
    height: 0;
    padding-bottom: 33%;
    transition: all 0.5s;
}

.story_photo:hover {
    -webkit-filter: brightness(0.8);
}

.story_photo img {
    width: 100%;
}

.story_title {
    width: 100%;
    position: absolute;
    top: 45%;
    text-align: center;
}

.story_title h2 {
    margin-block-start: 0;
    margin-block-end: 0;
    text-shadow: black 1px 1px 2px;
}

.story_detail_area {
	width: 75%;
}

.story_detail_title {
    color: #C2A77E;
    background-color: #1B1B1B;
    border-radius: 10px;
}

.story_detail img {
    width: 100% !important;
    height: 100% !important;
}

.video-wrapper{
    position: relative;
    padding-bottom: 56.25%;  //16:9
    overflow: hidden;
}
.video-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (min-width: 0px) and (max-width: 414px) {
    .story_title h2 {
        font-size: 12px;
    }

}

@media only screen and (min-width: 415px) and (max-width: 768px) {
    .story_title h2 {
        font-size: 16px;
    }

    .story_detail_area {
        width: 90%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .story_title h2 {
        font-size: 20px;
    }

    .story_detail_area {
        width: 80%;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1366px) {
    .story_title h2 {
        font-size: 24px;
    }

    .story_detail_area {
        width: 75%;
    }
}