@font-face{
    font-family: "Tajawal";
    src: url("../font/Tajawal-Regular.ttf") format("truetype");
}

:root{
    --white: #fff;
    --black: #000;
    --transformBG: #fffaf6;
    --border: rgba(0, 0, 0, 0.2);
    --primary: #3a74c9;
    --primaryHover: rgb(58, 116, 201, 0.75);
    --secondery: #323232;
    --seconderyHover: rgb(50, 50, 50, 0.75);
    --lightGrey: #f8f8f8;
    --radius: 8px;
}

body[data-theme="grey"]{
}

body[data-theme="dark"]{
}

*,
*:before,
*:after{
    font-family: "Tajawal", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: grid;
    grid-template-areas:
        "header"
        "main"
        "footer";
    gap: 7px;
    direction: ltr;
    background-color: #f0f0f0;
}

body main .socialfixed{
    position: fixed;
    bottom: -100px;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

body main .socialfixed a{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    transition: 0.3s ease;
    text-decoration: none;
}

body main .socialfixed a.facebook{
    background: #1877f2;
}
body main .socialfixed a.instagram{
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}
body main .socialfixed a.whatsapp{
    background: #25d366;
}
body main .socialfixed a.tiktok{
    background: #000000;
}

body main .socialfixed a:hover{
    filter: brightness(1.1);
    transform: scale(1.08);
}

/************************ HEADER ************************/
body header{
    grid-area: header;
    display: grid;
    grid-template-columns: auto auto auto;
    margin: 0;
    padding: 0;
    padding: 10px 8%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height: auto;
    gap: 15px;
}
body header figure{
    height: 80px;
}
body header figure img{
    height: 80px;
    width: auto;
    max-width: 180px;
}

body header .categories{
    direction: rtl;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: center;
    font-family: "Segoe UI", Arial, sans-serif;
}

body header .categories .categorie{
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    font-size: 15px;
    color: #333;
}

body header .categories .categorie:hover{
    color: var(--primary);
}
body header .categories .categorie p{
    cursor: pointer;
}
body header .categories .categorie i{
    font-size: 12px;
    margin-top: 2px;
}

body header .categories .categorie .dropdown{
    display: none !important;
    position: absolute;
    top: 100%;
    right: 10px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    min-width: 230px;
    flex-direction: column;
    padding: 12px 0;
    z-index: 4;
    animation: fadeIn 0.25s ease;
    max-height: 500px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
body header .categories .categorie .dropdown::-webkit-scrollbar{
    width: 0;
    height: 0;
}
body header .categories .categorie .dropdown .title{
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    display: inline-block;
    margin-left: 10px;
}

body header .categories .categorie .dropdown .item{
    padding: 10px 18px;
    font-size: 14px;
    color: #444;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

body header .categories .categorie .dropdown .item:hover{
    background: var(--primaryHover);
    color: var(--white);
}

body header .categories .categorie:hover > .dropdown{
    display: flex !important;
}

@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(8px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

body header .functions{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 15px;
}

body header .functions .wilaya{
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    font-size: 18px;
    color: #333;
}
body header .functions .wilaya i{
    font-size: 16px;
    display: grid;
    align-items: center;
    align-self: center;
}

body header .functions .wilaya .dropdown{
    display: none !important;
    position: absolute;
    top: 100%;
    right: 10px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    min-width: 230px;
    flex-direction: column;
    padding: 12px 0;
    z-index: 4;
    animation: fadeIn 0.25s ease;
    max-height: 500px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    direction: rtl;
}
body header .functions .wilaya .dropdown::-webkit-scrollbar{
    width: 0;
    height: 0;
}
body header .functions .wilaya .dropdown .title{
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    display: inline-block;
    margin-left: 10px;
}

body header .functions .wilaya .dropdown .item{
    padding: 10px 18px;
    font-size: 14px;
    color: #444;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
body header .functions .wilaya .dropdown .item i{
    font-size: 14px;
    margin-bottom: 0px;
}
body header .functions .wilaya .dropdown .item:hover{
    background: var(--primaryHover);
    color: var(--white);
}

body header .functions .wilaya:hover > .dropdown{
    display: flex !important;
}

@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(8px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

body header .functions .menu{
    display: none;
}

/************************ MAIN ************************/
body main{
    grid-area: main;
    height: auto;
    margin: 30px 8% 30px 8%;
}
body main .sectionTitle{
    margin: 20px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}
body main .sectionTitle hr{
    width: 3px;
    height: 24px;
    background: var(--primary);
    border: none;
}
body main .sectionTitle h2{
    
}
body main .article{

}
body main .article .articleDetails{
    display: flex;
    flex-direction: column;
}
body main .article .articleDetails .articletitle{
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 10px 0;
}
body main .article .articleDetails .meta .author,
body main .article .articleDetails .meta .articledate{
    font-size: 14px;
    color: var(--black);
}
body main .article .articleDetails .meta .articledate{
    color: var(--black);
}
body main .article .articleimage{
    width: 100%;
    height: 600px;
    border-radius: 7px;
    margin: 20px 0;
    object-fit: cover;
}
body main .article .articlecontent{
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
    text-align: justify;
}
body main .article .articleFooter{
    border-top: 1px solid #e0e0e0;
    margin: 30px 0px;
    padding-top: 30px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
body main .article .articleFooter p{
    font-size: 18px;
    color: var(--black);
}
body main .article .articleFooter p a{
    margin-left: 10px;
    color: var(--primary);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}
body main .article .articleFooter p a:hover{
    color: var(--primaryHover);
}
body main .moreNews{
    margin-top: 20px;
}
body main .moreNews .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}
body main .moreNews .container .news{
    background-color: var(--lightGrey);
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
body main .moreNews .container .news:hover{
    transform: translateY(-4px);
    cursor: pointer;
}
body main .moreNews .container .news img{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
body main .moreNews .lastNewsContent{
    padding: 15px;
}
body main .moreNews .container .newsTitle{
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
body main .moreNews .container .newsDescription{
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 15px;
    opacity: 0.9;
}
body main .moreNews .container .newsDetails{
    display: flex;
    margin-top: 10px;
    font-size: 12px;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}
body main .moreNews .container .newsDetails hr{
    width: 1px;
    height: 18px;
    background: var(--black);
    border: none;
}
/************************ SOCIAL FIXED ************************/
body main .socialfixed{
    margin-left: 5px;
}
body main .socialfixed a{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius);
    text-decoration: none;
    border-radius: 7px;
}
body main .socialfixed a i{
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
/************************ FOOTER ************************/
body footer{
  grid-area: footer;
  padding: 36px 8%;
  background-color: #f8f8f8;
}
body footer a{ color: inherit; text-decoration: none; }

/* ========== TITLES ========== */
body footer .ft-section-title{
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
}

/* ========== GUARANTEES ========== */
body footer .ft-g-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
body footer .ft-g-item{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
body footer .ft-g-icn{
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(0,0,0,.08);
  margin-bottom: 8px;
  font-size: 20px;
  color: var(--primary);
}
body footer .ft-g-item h4{
  margin: 6px 0 4px;
  font-size: 15px;
}
body footer .ft-g-item p{
  margin: 0;
  color: var(--black);
  font-size: 13px;
}

/* ========== BRAND BAR ========== */
body footer .ft-brandbar{
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body footer .ft-brand{
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 720px;
}
body footer .ft-brand .ft-logo{
  width: 120px; height: auto;
}
body footer .ft-brand p{
  margin: 0;
  color: var(--black);
}
body footer .ft-follow{
  display: flex;
  align-items: center;
  gap: 10px;
}
body footer .ft-follow-title{ font-weight: 700; }
body footer .ft-social .s-icn{
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--primary);
  color: var(--white);
  margin-inline-start: 6px;
  transition: .25s;
}
body footer .ft-social .s-icn:hover{ transform: translateY(-2px); }

/* Brand colors */
body footer .ft-social .fb{ background:#1877f2; }
body footer .ft-social .wa{ background:#25d366; color:#0d0202; }
body footer .ft-social .ig{ background:#e1306c; }
body footer .ft-social .tt{ background:var(--black); }
body footer .ft-social .yt{ background:#ff0000; }
body footer .ft-social .li{ background:#0a66c2; }

/* ========== LINKS COLUMNS ========== */
body footer .ft-links{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 18px 0;
}
body footer .ft-col h4{
  position: relative;
  margin: 0px 0px 17px 0px;
  font-size: 16px;
}
body footer .ft-col h4::after{
  content: "";
  position: absolute;
  right: 0; bottom: -6px;
  width: 56px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
body footer .ft-col ul{ list-style: none; margin: 0; padding: 0; }
body footer .ft-col li{ margin: 8px 0; color: var(--black); }
body footer .ft-col a{ transition: .2s; }
body footer .ft-col a:hover{ margin-right: 4px; }

/* ========== INFO (ABOUT / CONTACT) ========== */
body footer .ft-info{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 8px 0 10px;
}
body footer .ft-info-col h4{
  margin: 0 0 10px;
  font-size: 16px;
}
body footer .ft-info-col ul{ list-style: none; margin: 0; padding: 0; }
body footer .ft-info-col li{ margin: 6px 0; color: var(--black); }
body footer .ft-info address{
  font-style: normal;
  color: var(--black);
  line-height: 1.7;
}

/* ========== LEGAL BAR ========== */
body footer .ft-legal{
  margin-top: 18px;
  text-align: center;
  color: var(--white);
  background: #090101;
  border-top: 1px solid var(--border);
  padding: 12px;
  border-radius: 10px;
}


@media (max-width: 1200px){
  body footer .ft-g-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px){
    body header{
        grid-area: header;
        position: fixed;
        margin: 0px;
        padding: 0px;
        grid-template-rows: auto auto;
        align-items: center;
        height: 80px;
        width: 100%;
        background-color: var(--white);
        z-index: 3;
        gap: 0px;
    }
    body header{
        margin: 0px;
        padding: 0px;
        display: grid;
        grid-template-columns: auto auto;
    }
    body header figure{
        z-index: 4;
        margin-left: 7px;
        display: grid;
        align-items: center;
        background-color: var(--white);
    }
    body header figure img{
        height: 70px;
        width: auto;
    }
    body header .categories{
        display: grid;
        position: absolute;
        background-color: var(--white);
        z-index: 3;
        width: 100%;
        left: 0;
        top: -1000px;
        transition: top 0.46s ease;
        justify-content: start;
        gap: 0px;
    }
    body header .categories .categorie{
        cursor: default;
        width: 100%;
        height: 55px;
        margin-right: 15px;
    }
    body header .categories .categorie:hover > .dropdown{
        display: none !important;
    }
    body header .categories .categorie.active > .dropdown{
        display: flex !important;
    }

    body header .functions{
        gap: 10px;
        height: 100%;
        z-index: 4;
        margin-right: 7px;
        background-color: var(--white);
    }
    body header .functions .wilaya{
        display: grid;
        font-size: 20px;
        height: 50px;
        width: 50px;
        justify-content: center;
        align-items: center;
    }
    body header .functions .wilaya p{
        display: none;
    }
    body header .functions .wilaya i{
        color: var(--black);
        transition: 0.46s;
    }
    body header .functions .wilaya i:active{
        color: var(--primary);
        transition: 0.46s;
    }
    body header .functions .wilaya:hover > .dropdown{
        display: none !important;
    }
    body header .functions .wilaya.active > .dropdown{
        display: flex !important;
    }
    body header .functions .menu{
        display: grid;
        font-size: 20px;
        height: 50px;
        width: 50px;
        justify-content: center;
        align-items: center;
    }
    body header .functions .menu i{
        display: grid;
        justify-content: center;
        align-items: center;
        color: var(--black);
        transition: 0.46s;
    }
    body header .functions .menu i:active{
        color: var(--primary);
        transition: 0.46s;
    }
    /************************ MAIN ************************/
    body main{
        margin: 90px 10px 10px 10px;
    }
    body main .sectionTitle{
        gap: 5px;
        margin-bottom: 0
    }
    body main .sectionTitle hr{
        width: 4px;
        height: 20px;
    }
    body main .sectionTitle h2{
        font-size: 20px;
    }
    body main .article .articleimage{
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    body main .article .articleDetails .articletitle{
        font-size: 28px;
        margin-bottom: 10px;
    }
    body main .article .articleDetails .meta{
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    body main .article .articlecontent{
        font-size: 15px;
    }
    body main .moreNews .container{
    }
    body main .moreNews .container .news img{
        height: auto;
        aspect-ratio: 16 / 9;
    }
    body main .moreNews .container .newsTitle{
        font-size: 16px;
        margin-bottom: 8px;
    }
    body main .moreNews .container .newsDescription{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    body main .moreNews .container .newsDetails{
        font-size: 11px;
        flex-wrap: wrap;
        gap: 5px;
    }
    body main .moreNews .container .newsDetails hr{
        height: 14px;
    }
    /************************ FOOTER ************************/
    body footer .ft-links{ grid-template-columns: repeat(2, 1fr); }
    body footer .ft-info{ grid-template-columns: 1fr; }
    body footer .ft-g-grid{ grid-template-columns: repeat(2, 1fr); }
    body footer .ft-brandbar{ flex-direction: column; align-items: flex-start; gap: 12px; }
    body footer .ft-brand .ft-logo{ width: 92px; }
    body footer .ft-social .s-icn{ width: 34px; height: 34px; }
    
}

/* ===== Markdown spacing fixes ===== */
body main .article .articlecontent p{
  margin: 0 0 14px 0;
}

body main .article .articlecontent h1,
body main .article .articlecontent h2,
body main .article .articlecontent h3,
body main .article .articlecontent h4{
  margin: 18px 0 10px;
  line-height: 1.3;
}

body main .article .articlecontent ul,
body main .article .articlecontent ol{
  margin: 10px 0 14px;
  padding-right: 22px; /* RTL lists */
}

body main .article .articlecontent li{
  margin: 6px 0;
}

body main .article .articlecontent br{
  line-height: 1.9;
}

/* Breadcrumbs */
body main .breadcrumbs{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e5eaf2;
    background: #f8fbff;
    margin-bottom: 14px;
    font-size: 13px;
    color: #475569;
}
body main .breadcrumbs a{
    text-decoration: none;
    color: #1d4ed8;
    font-weight: 700;
}
body main .breadcrumbs strong{
    color: #0f172a;
    font-weight: 800;
}
body main .breadcrumbs a:hover{
    text-decoration: underline;
}

/* Rebuild: Article page layout */
body main.article-page{
    margin-top: 24px;
}

body main.article-page .wt-empty-article{
    background: #ffffff;
    border: 1px solid #e6edf7;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
body main.article-page .wt-empty-article p{
    margin-top: 10px;
    color: #64748b;
}
body main.article-page .wt-empty-btn{
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

body main.article-page .wt-article-layout{
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
    gap: 18px;
    align-items: start;
}

body main.article-page .wt-article{
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e6edf7;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09);
}

body main.article-page .wt-article-head{
    gap: 12px;
}

body main.article-page .wt-kicker{
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #1e40af;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 5px 12px;
    width: fit-content;
}
body main.article-page .wt-kicker i{
    display: inline-flex;
}

body main.article-page .wt-article .articletitle{
    margin: 0;
    font-size: clamp(28px, 3.3vw, 44px);
    line-height: 1.28;
    color: #0f172a;
    letter-spacing: -0.2px;
}

body main.article-page .wt-meta{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
body main.article-page .wt-meta-item{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid #dbe5f4;
    background: #f8fbff;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

body main.article-page .wt-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
body main.article-page .wt-tag{
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    color: #0f766e;
    background: #ecfeff;
    border: 1px solid #a5f3fc;
}

body main.article-page .wt-hero{
    margin: 18px 0 14px;
}
body main.article-page .wt-article .articleimage{
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 360px;
    max-height: 680px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}

body main.article-page .wt-articlecontent{
    font-size: 18px;
    line-height: 2;
    color: #1f2937;
    text-align: right;
}
body main.article-page .wt-articlecontent a{
    color: #1d4ed8;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

body main.article-page .wt-article-footer{
    border-top: 1px solid #e2e8f0;
    margin-top: 22px;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
body main.article-page .wt-article-footer p{
    margin: 0 0 0 6px;
    color: #334155;
    font-weight: 700;
    font-size: 14px;
}
body main.article-page .wt-share{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: .22s ease;
}
body main.article-page button.wt-share{
    font-family: inherit;
    cursor: pointer;
}
body main.article-page .wt-share:hover{
    transform: translateY(-1px);
}
body main.article-page .wt-share i{
    display: inline-flex;
    font-size: 15px;
}
body main.article-page .wt-share--copy{ background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
body main.article-page .wt-share--wa{ background: #ecfdf5; border-color: #bbf7d0; color: #047857; }
body main.article-page .wt-share--fb{ background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
body main.article-page .wt-share--src{ background: #f8fafc; border-color: #cbd5e1; color: #334155; }

body main.article-page .wt-aside{
    position: sticky;
    top: 98px;
    display: grid;
    gap: 12px;
}
body main.article-page .wt-aside-card{
    background: #ffffff;
    border: 1px solid #e6edf7;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}
body main.article-page .wt-aside-card h3{
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 17px;
}
body main.article-page .wt-aside-card ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
body main.article-page .wt-aside-card li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 7px;
    font-size: 14px;
}
body main.article-page .wt-aside-card li:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}
body main.article-page .wt-aside-card li span{
    color: #64748b;
}
body main.article-page .wt-aside-card li strong{
    color: #0f172a;
    font-weight: 700;
    text-align: left;
}
body main.article-page .wt-aside-related{
    display: grid;
    gap: 10px;
}
body main.article-page .wt-mini-news{
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 9px;
    text-decoration: none;
    align-items: center;
}
body main.article-page .wt-mini-news img{
    width: 84px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
}
body main.article-page .wt-mini-news span{
    color: #0f172a;
    font-size: 13px;
    line-height: 1.55;
}

body main.article-page .moreNews{
    margin-top: 16px;
}
body main.article-page .moreNews .container{
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}
body main.article-page .moreNews .container .news{
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    background: #ffffff;
}
body main.article-page .moreNews .container .news .lastNewsContent{
    padding: 12px;
}
body main.article-page .moreNews .container .newsTitle{
    font-size: 17px;
    line-height: 1.55;
    color: #0f172a;
}
body main.article-page .wt-related-empty{
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px solid #e6edf7;
    border-radius: 14px;
    padding: 14px;
    color: #64748b;
}

@media (max-width: 992px){
    body main.article-page .wt-article-layout{
        grid-template-columns: 1fr;
    }
    body main.article-page .wt-aside{
        position: static;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px){
    body main.article-page{
        margin-top: 90px;
    }
    body main.article-page .wt-article{
        border-radius: 14px;
        padding: 12px;
    }
    body main.article-page .wt-article .articletitle{
        font-size: 30px;
    }
    body main.article-page .wt-article .articleimage{
        min-height: 220px;
        border-radius: 12px;
    }
    body main.article-page .wt-articlecontent{
        font-size: 16px;
        line-height: 1.9;
    }
    body main.article-page .wt-meta{
        gap: 6px;
    }
    body main.article-page .wt-meta-item{
        min-height: 32px;
        font-size: 12px;
        padding: 5px 9px;
    }
    body main.article-page .wt-share{
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
    }
    body main.article-page .wt-share span{
        font-size: 12px;
    }
    body main.article-page .wt-aside{
        grid-template-columns: 1fr;
    }
    body main.article-page .wt-mini-news{
        grid-template-columns: 74px 1fr;
    }
    body main.article-page .wt-mini-news img{
        width: 74px;
        height: 50px;
    }
}
