/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2024年4月22日, 下午12:44:42
    Author     : Shine
*/

/**
*\/------ publice 共用樣式 ----------
*/
:root {
    --ftds-secondary-rgb: 35,35,35;
    --ftds-tertiary-color: #ffffff;
    --ftds-primary-color: #B69974;
    --ftds-header-font-color: #212121;
    --ftds-header-font-family: Poppins;
    --ftds-header-font-weight: 500;
    --ftds-header-font-color: #232323;
}

.ftds-blog-grid .post-inner {
    padding: 15px;
    border: 1px solid #e0e0e0;
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}


.ftds-blog-grid .post-inner:hover {
    border: 1px solid #232323;
    /*background: #fefefe;*/

}


.blog-post_media{
    position: relative;
    min-height: 35px;
}

.ftds-media-img{
}

.ftds-date-tag{
    display: inline-block;
    position: absolute;
    z-index: 1;
    line-height: 34px;
    font-family: 'Poppins' !important;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0;
    padding: 0 18px;
    color: var(--ftds-tertiary-color);
    background-color: rgba(var(--ftds-secondary-rgb), 0.6);
    text-transform: uppercase;
    top: 0;
    left: 0;
}

.ftds-list-date{
    font-family: 'Poppins' !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0;
}

.ftds-category-wrap{
    text-align: left;
    margin-top: 15px;
    line-height: 30px;
}

.ftds-category-wrap .category-data {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 500;
    color: #b69974;
    font-size: 16px;
    min-height: 24px;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: .5rem;

}

ul li{
    list-style: none !important;

}

ul#nav-list{
    display: inline-flex;
    padding: 0;
    margin-bottom: 0;
    list-style-type: none;
}

ul#nav-list li{
    margin-right: 8px;
    list-style: none !important;
}

ul#post-content-list{
    list-style-type: none;
}

ul#post-content-list li{
    display: list-item;

}

.ftds-category-wrap .category-data ul#nav-list a.cate-link {
    color: #b69974;
    font-size: 15px;
    font-weight: 500;
    text-decoration-color: transparent;
    text-underline-offset: 0.15em;
    text-decoration-thickness: 0.06em;
    text-decoration: none;
    letter-spacing: inherit;
}

a.cate-link:hover{
    color: #212121 !important;
    text-decoration: underline !important;
}

h4.show_post_excerpt{
    text-align: left;
    font-size: 14px;
}

.blog-post_content, .blog-post_footer{
    /*padding: 0 15px;*/
}

.blog-post_content h3.post_title{
    font-size: 1rem !important;
    color: #212121 !important;
    text-align: left !important;
    line-height:  1.5rem;
}

.blog-post_content h3.post_title a{
    text-decoration-thickness: 0.06em;
}


.read-more-wrap{
    text-align: left;
}

.read-more-wrap .button-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    font-family: 'Poppins' !important;
    white-space: nowrap;
    letter-spacing: 0;
    margin-top: 6px;
    max-width: 100%;
    color: #232323;
    border: 1px solid #232323;
    border-radius: 30px;
    background-color: transparent;
    transition: 0.4s;
    padding: 9px;
    text-decoration: none;
    margin: 10px 0;
}


.read-more-wrap .button-read-more:hover {
    border: 1px solid #b69974;
    background-color: #b69974;
    color: #ffffff !important;

}

.button-read-more > span {
    white-space: normal;
    transition: transform 0.4s;
    display: inline-block;
    position: relative;
}

.ftds-section{
    margin-right: -1px;
}

.owl-stage-outer{
    width: 101%;
    margin-left: -1px;
}

.owl-nav{
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 100%;
}
.owl-prev, .owl-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 45px;
    background-color: rgba(0,0,0,0.5) !important;
}
.owl-prev{
    left: -30px;
}

.owl-next{
    right: -30px;
}

.owl-prev span, .owl-next span{
    color: #fff;
    font-size: 1rem;
}


