img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo img {
    height: 130%;
    transform: translateY(6px);
}

.widget {
    margin: .5rem 0rem;
}

.widget.liner {
    display: flex;
}

.widget.vertical,
.widget.vertical-side,
.widget.list {
    display: flex;
    flex-direction: column;
}

/*슬라이드 배너*/
.slide-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.banners {
    display: flex;
    flex: 1;
    justify-content: center;
    position: relative;
    /* min-height: 40rem; */
    aspect-ratio: 1.5;
    background-color: #000;
}
.banner {
    aspect-ratio: 1.5;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
}
.banner img {
    width: 100%;
    height: auto;
}
.banner.active{
    transition: transform 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}
.banner .content {
    position: relative;
    cursor:pointer;
}
.banner .content-info {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    color: #fff;
    width: calc(100% - 3rem);
}
.banner .content-info .title {
    font-size: 1.3rem;
}
.banner .content-bottom-infos {
    display: flex
;
    flex-direction: column;
    align-items: end;
}
.banner .author, .banner .published-date {
    font-size: .85rem;
    color: #eee;
}
.banner .content .thumbnail::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
}
.banner.hide {
    opacity: 0;
    overflow: hidden;
    display: none;
}
.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 4;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.main-banner {
    background-color: #eee;
    border: solid thin #bbb;
    flex: 1;
    cursor: pointer;
    position: relative;
    box-shadow: 0px 0px 0px transparent;
    transition: ease-in-out.3s box-shadow;
}
/*슬라이드 배너 끝*/
.channel-factor {
    background-color: #eee;
    aspect-ratio: 1.5;
    overflow: hidden;
    border: solid thin #bbb;
    flex: 1;
    transition: ease .3s box-shadow;
    box-shadow: 0px 0px 0px transparent;
    cursor: pointer;
    position: relative;
    /* filter: blur(0px); */
}
/*브랜드 콘텐츠 헤딩*/
.brand_contents_heading{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 1rem;
}
.brand_contents_list {
    display: flex;
    /* align-items: flex-start; */
    flex-wrap: wrap;
}
.brand_contents_list .content {
    position: relative;
    margin-right: .85rem;
    margin-top: .85rem;
    cursor: pointer;
    max-width: 223px;
}
.brand_contents_list .content .title{
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: auto-phrase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.brand_contents_list .content-info {
    display: flex;
    flex-direction: column;
    height: calc(100% - 1.7rem);
    background-color: #eee;
    justify-content: space-between;
    padding: .85rem;
    overflow: hidden;
}
.brand_contents_list .description,.brand_contents_list .author {
    display: none;
}

.brand_contents_list .content-bottom-infos {
    display: flex;
    flex-direction: column;
    align-items: end;
}
.brand_contents_list .author, .brand_contents_list .published-date {
    font-size: .85rem;
}
.brand_more_over{
    color: var(--font-color2);
}
.brand_more_over i{
    color: var(--accent-color);
}

.main-banner:hover,
.channel-factor:hover {
    box-shadow: 1px 1px 8px #0000009c;
    transition: ease-in-out.3s box-shadow;
}

.widget.liner .channel-factor:not(:first-child) {
    margin-left: 1rem;
}

.widget.vertical-side .channel-factor:not(:first-child),
.widget.vertical .channel-factor:not(:first-child),
.widget.list .channel-factor:not(:first-child) {
    margin-top: 1rem;
}

.widget.vertical-side>.factor-wrapper {
    width: 100%;
    position: relative;
    display: flex;

}

.widget.vertical-side>.factor-wrapper:nth-child(even) {
    justify-content: flex-end;
}

.widget.vertical-side .channel-factor {
    max-width: calc(50% - .5rem);
}

.widget.list>.factor-wrapper {
    height: 13rem;
    /* overflow: hidden; */
    margin-bottom: 1rem;
}

.widget.list>.factor-wrapper .channel-factor {
    height: calc(100% - .2rem);
    aspect-ratio: unset;
}

.channel-info {
    position: absolute;
    width: 100%;
    background-color: #0000003b;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    z-index: 8;
}

.channel-info .channel-name {
    font-size: 1.7rem;
}
.channel-info .channel-description {
    text-align: center;
}

.widget.liner .channel-info .channel-name {
    font-size: 1.3rem;
}
