@charset "utf-8";
/* CSS Document */


/*blog*/
.blog {
    width: 100%;
    margin: 0 auto;
    padding: 100px 0px;
}

.list-area {
    padding: 132px 0 60px 0px;
}


/*blog-category*/
.blog-category {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 0px 0px 0px;
    display: flex;
    flex-wrap: wrap;
}

.blog-category ul {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.blog-category ul li {
    list-style: none;
    margin: 5px 12px 5px 0px;
}

.blog-category-btn {
    font-size: 1rem;
    padding: 8px 13px;
    color: #b58748;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #b58748;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
}

.blog-category-btn:hover {
    color: #fff;
    background-color: #b58748;
}

.category-select {
    color: #fff;
    background-color: #a95a37;
    border: 1px solid #a95a37;
}

.category-select:hover {
    color: #fff;
    background-color: #a95a37;
    border: 1px solid #a95a37;
}


/*blog-list*/
.blog-list-all {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-list {
    width: 100%;
    margin: 45px auto;
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
}

.blog-detail-pic {
    width: 20%;
    font-size: 0;
    text-align: center;
    background-color: #f8f1df;
}

.blog-detail-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-intro {
    width: 80%;
    background-color: #f8f1df;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.blog-detail-intro-vn {
    width: 100%;
    margin-top: 30px;
}

.blog-detail-intro-title {
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.875rem;
    color: #a95a37;
    padding: 20px 30px;
}

.blog-detail-intro-date {
    width: 100%;
    font-size: 1.125rem;
    color: #393939;
    padding: 0px 30px 0px 30px;
}

.blog-detail-intro-more {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 30px;
}

.blog-detail-intro-more-btn {
    width: 90px;
    height: 40px;
    background-color: #d7b277;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

.blog-detail-intro-more-btn:hover {
    background-color: #ca8261;
}

.blog-detail-intro-more-btn-text {
    font-size: 0.938rem;
    color: #fff;
}


/*blog-content*/
.blog-content {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-content-date {
    width: 100%;
    font-size: 1rem;
    color: #393939;
    margin-bottom: 12px;
}

.blog-content-title {
    width: 100%;
    font-size: 1.25rem;
    line-height: 2rem;
    color: #a95a37;
    padding-bottom: 20px;
    border-bottom: 3px dotted #e5c7ba;
}

.blog-content-share {
    width: 100%;
    padding: 30px 0px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.blog-content-share-text {
    width: max-content;
    font-size: 0.938rem;
    color: #a8a8a8;
    margin-right: 10px;
}

.blog-content-share-fb {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 8px;
    image-rendering: -webkit-optimize-contrast;
}

.blog-content-share-line {
    width: 20px;
    height: 20px;
    cursor: pointer;
    image-rendering: -webkit-optimize-contrast;
}

.blog-content-text {
    width: 100%;
}

.blog-content-read-around {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0px 0px 0px;
    margin-top: 40px;
    border-top: 1px solid #f1d2c5;
}

.blog-content-read-around>div:nth-last-child(2) {
    margin-bottom: 12px;
}

.blog-content-read-around-text {
    width: 100%;
    font-size: 1rem;
    color: #393939;
    font-weight: bold;
    margin-bottom: 16px;
}

.blog-content-read-around-list {
    width: 100%;
    font-size: 0.875rem;
    color: #393939;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
}

.blog-content-read-around-list:hover {
    color: #a95a37;
}


/*blog-page*/
.blog-page {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 45px;
}