
/* =========================================================
   CACAR COMPANY NEWS — FINAL CARD FIX
   Scope: /info/company-news

   Principle:
   Keep UEESHOP native News List layout.
   Only fix:
   1. title truncation
   2. brief truncation
   3. CTA presentation

   Do NOT rebuild:
   grid / card width / image / responsive layout
   ========================================================= */


/* =========================================================
   ARTICLE TITLE
   ========================================================= */

html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
> .title,

html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
> .title a{
    display:block !important;

    width:100% !important;

    height:auto !important;
    min-height:0 !important;
    max-height:none !important;

    overflow:visible !important;

    white-space:normal !important;
    text-overflow:clip !important;

    -webkit-line-clamp:none !important;
    -webkit-box-orient:initial !important;

    line-clamp:none !important;

    word-break:normal !important;
    overflow-wrap:break-word !important;
}


/* =========================================================
   REMOVE TITLE ELLIPSIS
   ========================================================= */

html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
> .title::before,

html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
> .title::after,

html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
> .title a::before,

html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
> .title a::after{
    content:none !important;
    display:none !important;
}


/* =========================================================
   BRIEF
   Same proven logic as Blog
   ========================================================= */

html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
> .brief{
    display:block !important;

    position:relative !important;

    width:100% !important;

    height:auto !important;
    min-height:0 !important;
    max-height:none !important;

    overflow:visible !important;

    white-space:normal !important;
    text-overflow:clip !important;

    -webkit-line-clamp:none !important;
    -webkit-box-orient:initial !important;

    line-clamp:none !important;

    word-break:normal !important;
    overflow-wrap:break-word !important;
}


/* Remove UEESHOP brief ellipsis */

html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
> .brief::before,

html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
> .brief::after{
    content:none !important;
    display:none !important;
}


/* =========================================================
   COMPANY NEWS CTA
   ========================================================= */

html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
a.cacar-company-news-read{
    display:inline-flex !important;
    align-items:center !important;

    width:max-content !important;

    margin-top:4px !important;
    padding:0 0 5px !important;

    background:transparent !important;

    border:0 !important;
    border-bottom:1px solid #1d1d1d !important;

    border-radius:0 !important;
    box-shadow:none !important;

    font-size:11px !important;
    line-height:1.4 !important;

    font-weight:600 !important;
    letter-spacing:.08em !important;

    color:#1d1d1d !important;

    text-decoration:none !important;
}


html.cacar-company-news-page
.news_wrapper
.list_box_wrapper
> .themes_news.imageright
> .text_box
a.cacar-company-news-read::after{
    content:"→";
    display:inline-block !important;
    margin-left:7px !important;
}


/* =========================================================
   MOBILE
   Same strategy as Blog:
   fix text only, never rebuild native layout.
   ========================================================= */

@media(max-width:767px){

    html.cacar-company-news-page
    .news_wrapper
    .list_box_wrapper
    > .themes_news.imageright
    > .text_box
    > .title,

    html.cacar-company-news-page
    .news_wrapper
    .list_box_wrapper
    > .themes_news.imageright
    > .text_box
    > .title a,

    html.cacar-company-news-page
    .news_wrapper
    .list_box_wrapper
    > .themes_news.imageright
    > .text_box
    > .brief{
        display:block !important;

        height:auto !important;
        min-height:0 !important;
        max-height:none !important;

        overflow:visible !important;

        white-space:normal !important;
        text-overflow:clip !important;

        -webkit-line-clamp:none !important;
        -webkit-box-orient:initial !important;

        line-clamp:none !important;
    }

}
