/* =========================================================
   HOME CONTENT WRAPPER
========================================================= */

.tlb-content-wrap {
    width: 100%;
    max-width: none;

    display: block;

    padding: 10px 20px 0;
    margin: 0;

    clear: both;

    font-family: "Be Vietnam Pro", Arial, sans-serif;
}

.tlb-content-wrap,
.tlb-content-wrap * {
    box-sizing: border-box;
}


/* =========================================================
   CONTENT CONTAINER
========================================================= */

.tlb-content-grid {
    width: 100%;
    max-width: 1440px;

    margin-left: auto;
    margin-right: auto;

    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1.25fr)
        minmax(0, .85fr)
        minmax(0, .9fr);

    gap: 9px;
}


/* =========================================================
   CONTENT BOX
========================================================= */

.tlb-content-box {
    width: 100%;
    min-width: 0;
    height: 205px;

    padding: 13px;

    overflow: hidden;

    border: 1px solid #f5e5e9;
    border-radius: 12px;

    background: #fffafb;
}

.tlb-content-box {
    min-width: 0;
    height: 205px;

    padding: 13px;

    overflow: hidden;

    border: 1px solid #f5e5e9;
    border-radius: 12px;

    background: #fffafb;
}


/* HEADER */

.tlb-content-heading {
    height: 27px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 8px;
}

.tlb-content-heading h2 {
    margin: 0;

    color: #ed0754;

    font-size: 10px;
    line-height: 1.3;

    font-weight: 700;
}

.tlb-content-heading a {
    color: #ed0754;

    font-size: 6.5px;

    white-space: nowrap;

    text-decoration: none;
}


/* RECIPE */

.tlb-recipe-list {
    display: flex;
    flex-direction: column;
}

.tlb-recipe-item {
    height: 39px;

    display: flex;
    align-items: center;

    gap: 9px;

    border-bottom: 1px solid #f4eaed;

    color: #302226;

    text-decoration: none;

    font-size: 8px;
    font-weight: 500;
}

.tlb-recipe-item:last-child {
    border-bottom: 0;
}

.tlb-recipe-item img {
    width: 42px;
    height: 30px;

    flex: 0 0 42px;

    border-radius: 5px;

    object-fit: cover;
}


/* VIDEO */

.tlb-video-layout {
    display: grid;

    grid-template-columns: 1.7fr .9fr;

    gap: 8px;
}

.tlb-video-main {
    position: relative;

    height: 153px;

    overflow: hidden;

    border-radius: 8px;

    background: #eee;
}

.tlb-video-main img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.tlb-video-play {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: #ed0754;

    color: #fff;

    font-size: 13px;

    box-shadow:
        0 4px 15px rgba(237,7,84,.3);
}

.tlb-video-list {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.tlb-video-list a {
    min-height: 45px;

    display: grid;

    grid-template-columns: 45px 1fr;

    align-items: center;

    gap: 6px;

    color: #332429;

    text-decoration: none;

    font-size: 6.5px;
    line-height: 1.35;
}

.tlb-video-list img {
    width: 45px;
    height: 40px;

    border-radius: 5px;

    object-fit: cover;
}


/* KNOWLEDGE */

.tlb-knowledge-list {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.tlb-knowledge-list > a {
    min-height: 48px;

    display: grid;

    grid-template-columns: 48px 1fr;

    align-items: center;

    gap: 7px;

    color: #342429;

    text-decoration: none;
}

.tlb-knowledge-list img {
    width: 48px;
    height: 43px;

    border-radius: 6px;

    object-fit: cover;
}

.tlb-knowledge-list strong {
    display: block;

    font-size: 6.8px;
    line-height: 1.4;

    font-weight: 600;
}

.tlb-knowledge-list small {
    display: block;

    margin-top: 2px;

    color: #9c8f93;

    font-size: 5.5px;
}


/* TIPS */

.tlb-tips-list {
    display: flex;
    flex-direction: column;
}

.tlb-tips-list a {
    min-height: 39px;

    display: grid;

    grid-template-columns: 18px 1fr 8px;

    align-items: center;

    gap: 5px;

    border-bottom: 1px solid #f3e7eb;

    color: #332429;

    text-decoration: none;

    font-size: 7px;
}

.tlb-tips-list a:last-child {
    border-bottom: 0;
}

.tlb-tip-icon {
    color: #ed0754;

    font-size: 13px;
}

.tlb-tips-list b {
    color: #aaa;

    font-size: 12px;
    font-weight: 400;
}


/* HOVER */

.tlb-recipe-item,
.tlb-video-list a,
.tlb-knowledge-list a,
.tlb-tips-list a {
    transition: color .2s ease;
}

.tlb-recipe-item:hover,
.tlb-video-list a:hover,
.tlb-knowledge-list a:hover,
.tlb-tips-list a:hover {
    color: #ed0754;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .tlb-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tlb-content-box {
        height: 215px;
    }

}

@media (max-width: 700px) {

    .tlb-content-wrap {
        padding-inline: 12px;
    }

    .tlb-content-grid {
        grid-template-columns: 1fr;
    }

    .tlb-content-box {
        height: auto;
        min-height: 205px;
    }

}
.tlb-content-empty{
    min-height:100px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#a29398;

    font-size:9px;

    text-align:center;
}