/*
Theme Name: aliansinews
Theme URI: https://aliansinews.com/
Author: Leo
Author URI: https://aliansinews.com/
Description: Theme portal berita modern
Version: 1.0.0
Text Domain: aliansinews
*/


:root {
    --primary-color: #111111;
    --secondary-color: #fafafa;
    --accent-color: #FFCC33;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

.body {
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif; */
    background: #fafafa;
    color: #111;
}

.box-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.header-top {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
}

.box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo img {
    max-width: 300px;
    width: 100%;
    min-width: 200px;
    object-fit: contain;
}

.header-right-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    width: 100%;
}

.header-search {
    max-width: 400px;
    width: 100%;
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 6px;
    overflow: hidden;
    background: var(--secondary-color);
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    -ms-border-radius: 23px;
    -o-border-radius: 23px;
}

.search-field {
    font-size: 14.5px;
    padding: 14px;
    outline: none;
    border: none;
    background: none;
    width: 100%;
    letter-spacing: .2px;
}

.search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    height: 100%;
    padding: 14px;
    background: var(--accent-color);
    color: var(--primary-color);
    appearance: hidden;
}

.search-submit:hover {
    filter: brightness(95%);
    -webkit-filter: brightness(95%);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 11px;
}

.social-icons .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    background: var(--secondary-color);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.social-icons .social-link:hover {
    filter: brightness(95%);
    -webkit-filter: brightness(95%);
}

.icon-menu {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6px;
    cursor: pointer;
    color: var(--secondary-color);
}

.icon-menu span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: .3s ease;
    z-index: 999;
    display: none;
    flex-direction: column;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}

.sidebar-title {
    font-weight: 600;
    font-size: 16px;
}

.sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary-color);
}

.sidebar-search {
    padding: 16px;
}

.sidebar-categories {
    padding: 16px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    width: 100%;
}

.sidebar-menu a {
    display: flex;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    width: 100%;
    padding: 10px 0;
    font-family: "Inter", sans-serif;
}

.sidebar-menu a:hover {
    color: var(--accent-color);
}

.box-category-nav {
    position: fixed;
    top: 6rem;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.09);
}

.category-nav {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.category-nav ul {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 16px;
    overflow-x: scroll;
}

.category-nav ul::-webkit-scrollbar {
    display: none;
}

.category-nav ul li {
    list-style: none;
}

.category-nav ul li a {
    display: flex;
    font-size: 14.5px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding: 10px 5px;
    color: #111111;
    text-decoration: none;
}

.category-nav ul li a:hover {
    color: var(--accent-color);
}

.container {
    position: relative;
    top: 10rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.content-wrap {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.left-side {
    width: 100%;
    padding: 0 16px;
}

.left-side.min {
    max-width: 790px;
}

.left-side.article {
    padding: 0 0;
}

.home-headline {
    margin-top: 24px;
}

.headlineSwiper {
    overflow: hidden;
}

.swiper-slide {
    position: relative;
}

.header-link {
    position: relative;
    display: block;
}

.headline-image img {
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.headline-overlay {
    position: absolute;
    z-index: 1;
    padding: 60px 20px 30px 20px;
    bottom: 0;
    text-align: left;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 75%);
    box-sizing: border-box;
    margin: 0;
}

.headline-category {
    display: flex;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 11px;
    width: fit-content;
}

.headline-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 80%;
}

.box-sub-headline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 2px;
}

.sub-headline {
    display: flex;
    flex-direction: column;
    max-width: 250px;
    width: 100%;
    gap: 2px;
	text-decoration: none;
}

.sub-headline img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.sub-headline-title {
    padding: 5px;
    background: #000;
    min-height: 60px;
}

.sub-headline-title h3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.right-side {
    width: 100%;
}

.right-side.read-page {
    max-width: 378px;
}

.home-trending {
    position: sticky;
    top: 10rem;
    margin-top: 32px;
}

.section-title {
    position: relative;
    width: fit-content;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-title::after {
    content: "";
    position: absolute;
    top: 1.6rem;
    left: 0;
    bottom: 0;
    width: 85%;
    height: 2px;
    background-color: var(--accent-color);
}

.trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trending-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    margin-bottom: 10px;
}

.trending-rank {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-color);
    min-width: 24px;
    margin-right: 11px;
}

.trending-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    letter-spacing: .2px;
    line-height: 1.52em;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
}

.trending-category {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

.trending-title:hover {
    color: rgb(128, 128, 128, 0.8);
}

.latest {
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.card-latest {
    margin-bottom: 2rem;
}

.card-latest a {
    display: flex;
    gap: 11px;
    text-decoration: none;
}

.card-latest figure {
    min-width: 280px;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.card-latest img {
    width: 100%;
    object-fit: cover;
    transition: .4s all;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    -o-transition: .4s all;
}

.card-latest-title {
    display: flex;
    flex-direction: column;
}

.card-latest-title span {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: .2px;
    margin-bottom: 5px;
}

.card-latest-title h3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: .2px;
    line-height: 1.52em;
    margin-bottom: 5px;
}

.card-latest-title p {
    font-size: 12px;
    color: gray;
    letter-spacing: .2px;
    line-height: 1.52em;
}

.card-latest-title h3:hover {
    text-decoration: underline;
}

.card-latest img:hover {
    transition: .4s all;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    -o-transition: .4s all;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4rem;
    gap: 8px;
}

.pagination .prev,
.pagination .next {
    width: fit-content;
    padding: 10px 18px;
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    -ms-border-radius: 23px;
    -o-border-radius: 23px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: rgb(128, 128, 128, 0.8);
    color: var(--secondary-color);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.pagination a:hover,
.pagination span:hover {
    background: var(--accent-color);
}

.pagination .current {
    background: var(--accent-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.popular-topics {
    margin-top: 5rem;
}

.popular-tags {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-tags a {
    display: flex;
    gap: 5px;
    width: fit-content;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.popular-tags span {
    font-style: italic;
    color: gray;
}

.popular-tags a:hover {
    text-decoration: underline;
}

footer {
    display: flex;
    flex-direction: column;
    background: var(--primary-color);
    padding: 16px;
    margin-top: 20rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.logo-footer img {
    max-width: 300px;
    width: 100%;
    min-width: 200px;
    object-fit: contain;
}

.address {
    line-height: 1.52em;
    text-align: center;
    width: 100%;
    max-width: 320px;
    color: #e4e4e4e6;
    font-size: 12px;
    letter-spacing: .2px;
}

.footer-social ul {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-social ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    background: var(--secondary-color);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav {
    border-top: 1px solid var(--secondary-color);
    max-width: 70%;
    width: 100%;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.footer-nav ul li {
    position: relative;
    list-style: none;
}

.footer-nav ul li a {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-nav ul li::after {
    position: absolute;
    top: 15%;
    right: -18px;
    content: "";
    width: 2px;
    height: 80%;
    background: var(--secondary-color);
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
}

.footer-copyright {
    margin-top: 2rem;
    font-size: 10px;
    color: var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.article-header {
    padding: 0 16px;
}

.article-header-category {
    margin-top: 2rem;
}

.article-header-category p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: fit-content;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
}

.article-header-category p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.article-header-category p a.get {
    color: var(--accent-color);
}

.article-title {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 5px 0;
    margin-top: 2rem;
    line-height: 1.2;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-photo {
    overflow: hidden;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.brand-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.article-author-date {
    display: flex;
    flex-direction: column;
}

.article-author-date .writer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
}

.article-author-date .writer span {
    display: flex;
    align-items: center;
    gap: 2px;
}

.article-author-date .writer span a {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
}

.article-author-date .writer span small {
    color: blue;
}

.article-author-date .date {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 11px;
}

.article-share a {
    text-decoration: none;
}

.article-banner {
    margin: 20px 0;
    padding: 0 16px;
}

.article-banner img {
    width: 100%;
    height: auto;
	min-height: 240px;
    display: block;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.article-caption {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #666;
    margin-top: 6px;
    padding: 0 16px;
}

.box-article-content {
    display: flex;
    gap: 11px;
    padding: 0 16px;
}

.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: #222;
    max-width: 760px;
    margin: 0 auto;
}

.article-content p {
    margin: 0 0 1.4em;
}

.article-content strong {
    font-weight: 600;
}

.article-content em {
    font-style: italic;
}

.article-content a {
    color: #ffcc33;
    text-decoration: underline;
}

.article-content a:hover {
    text-decoration: none;
}

.article-insert {
    padding: 12px;
    background-color: rgb(234 234 234 / 60%);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.article-insert-label {
    font-weight: bold;
    font-size: 14.5px;
}

.article-insert a {
    display: flex;
    font-size: 16px;
    line-height: 1.72em;
    text-decoration: underline;
    color: blue;
}

.article-related {
    min-width: 160px;
}

.related-grid {
    margin-top: -1rem;
}

#article-related-title {
    text-transform: none;
    font-weight: bold;
    letter-spacing: 0;
}

.related-item {
    margin-bottom: 11px;
}

.related-item a {
    font-size: 11px;
    color: gray;
    line-height: 1.3em;
    text-decoration: none;
}

.related-item a:hover {
    text-decoration: underline;
}

.article-tags {
    display: flex;
    gap: 11px;
    margin-top: 40px;
    padding: 24px 12px;
    background-color: rgb(234 234 234 / 60%);
}

.article-tags h4 {
    font-size: 13.5px;
    color: var(--secondary-color);
    font-weight: bold;
    background: var(--accent-color);
    padding: 8px 10px;
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    -ms-border-radius: 23px;
    -o-border-radius: 23px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-list li a {
    display: inline-block;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 999px;
    font-weight: 600;
    background: rgb(128, 128, 128, 0.8);
    color: var(--secondary-color);
    text-decoration: none;
    transition: all .2s ease;
}

.tags-list li a:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.latest-news {
    margin-top: 2rem;
    padding: 0 16px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.latest-news h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #111;
}

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.latest-news-item {
    display: flex;
    flex-direction: column;
}

.latest-news-image {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
}

.latest-news-image img {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: .4s all;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    -o-transition: .4s all;
}

.latest-news-content {
    margin-top: 8px;
    width: 100%;
}

.latest-news-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 6px;
    font-weight: bold;
}

.latest-news-content h3 a {
    color: #111;
    text-decoration: none;
}

.latest-news-content h3 a:hover {
    color: gray;
}

.latest-news-image:hover img {
    transition: .4s all;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    -o-transition: .4s all;
}

.latest-news-content time {
    display: none;
    font-size: 12px;
    color: #777;
}

#related-section-box {
    display: none;
}

.category-articles {
    padding: 0 16px;
}

.category-page {
    margin-top: 30px;
}

.simple-tag-title {
    position: relative;
    width: fit-content;
}

.simple-tag-title::after {
    position: absolute;
    top: 1.5rem;
    left: 0;
    content: "";
    width: 50%;
    height: 3px;
    background: var(--accent-color);
}

.category-header {
    margin-bottom: 30px;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(128, 128, 128, 0.3);
}

.category-header h1 {
    font-size: 14.5px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
}

.category-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 16px;
}

.category-item {
    display: flex;
    gap: 11px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(128, 128, 128, 0.8);
}

.category-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.category-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
}

.category-content h2 a {
    color: #284a9a;
    text-decoration: none;
}

.category-content h2 a:hover {
    text-decoration: underline;
}

.category-content .meta {
    font-size: 12px;
    font-family: "Poppins", sans-serif;
}

#category-top a {
    display: none;
}

.category-content .meta a {
    width: fit-content;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.category-content .meta span {
    color: gray;
}

.category-thumb figure {
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.category-thumb img {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: .4s all;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    -o-transition: .4s all;
}

.category-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 8px;
    color: #666;
    line-height: 1.4;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

.category-thumb figure:hover img {
    transition: .4s all;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    -o-transition: .4s all;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
}

.static-content {
    font-size: 15px;
    line-height: 1.8;
    color: #222;
}

.static-content h2,
.static-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.static-content p {
    margin-bottom: 16px;
}

.static-content ul,
.static-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

/* ===============================
   404 NOT FOUND PAGE
================================ */

.not-found {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.not-found h1 {
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: #111111;
}

.not-found h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111111;
}

.not-found p {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 28px;
}

.not-found .btn-back-home {
    display: inline-block;
    padding: 12px 26px;
    background-color: #ffcc33;
    color: #111111;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.not-found .btn-back-home:hover {
    background-color: #111111;
    color: #ffffff;
}

/* SEARCH FORM DI 404 (OPSIONAL) */
.not-found .search-form {
    margin-top: 24px;
    width: 100%;
    max-width: 420px;
}

.not-found .search-form input[type="search"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
}

.not-found .search-form input[type="submit"] {
    display: none;
}


/* responsive  */

@media (max-width: 1020px) {

    .left-side,
    .left-side.min {
        max-width: 100%;
    }

    .right-side {
        padding: 0 16px;
    }

    .content-wrap {
        flex-direction: column;
        gap: 1rem;
    }

    .home-trending {
        position: relative;
        top: 0;
    }

    .latest {
        margin-bottom: 0;
    }

    .article-content {
        max-width: 100%;
    }

}

@media (max-width: 768px) {
    .social-icons {
        display: none;
    }

    .header-search {
        max-width: 300px;
    }

    .search-field,
    .search-submit {
        padding: 12px;
    }

    .headline-title {
        font-size: 18px;
        max-width: 100%;
    }

    .headline-image img {
        height: 300px;
    }

    .headlineSwiper {
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
    }

    .logo img {
        max-width: 200px;
    }

    .container {
        top: 8rem;
    }

    .footer-nav ul {
        gap: 15px;
    }

    .footer-nav ul li::after {
        right: -8px;
    }

    .article-banner img {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    .article-banner {
        padding: 0 0;
    }

    .right-side.read-page {
        max-width: 100%;
    }

    .category-description {
        display: none;
    }

    .category-thumb figure {
        width: 120px;
        height: 90px;
    }

    .category-content .meta a {
        display: none;
    }

    #category-top a {
        display: flex;
        color: var(--accent-color);
    }

    .category-content h2 {
        font-size: 16px;
    }

    .category-grid {
        padding:  0 0;
    }

    .category-item {
        border-bottom: 0;
        margin-bottom: 5px;
    }

    .not-found h1 {
        font-size: 72px;
    }

    .not-found h2 {
        font-size: 20px;
    }

}

@media (max-width: 640px) {
	
	.left-side,
    .right-side {
        padding: 0 12px;
    }

    .headline-title {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .section-title {
        font-size: 14px;
        margin-bottom: 1.5rem;
        letter-spacing: .2px;
    }

    .section-title::after {
        top: 1.2rem;
        width: 65%;
    }

    .latest {
        margin-top: 2rem;
    }

    .header-search {
        display: none;
    }

    .icon-menu {
        display: flex;
    }

    .mobile-sidebar {
        display: flex;
    }

    .headline-image img {
		height: 320px;
    }

    .card-latest figure {
        min-width: 200px;
        height: 100px;
    }

    .card-latest-title h3 {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        font-size: 15px;
    }

    .box-sub-headline {
        display: none;
    }

    .article-meta {
        flex-direction: column;
        align-items: start;
    }

    .article-related {
        display: none;
    }

    .latest-news-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .latest-news-image {
        width: 100px;
        height: 100px;
    }

    .latest-news-item {
        flex-direction: row-reverse;
        gap: 11px;
    }

    .latest-news-content time {
        display: flex;
        font-size: 12px;
        color: #777;
    }

    #related-section-box {
        display: block;
    }

    .category-thumb figure {
        width: 100px;
        height: 100px;
    }
	
	.box-content {
        padding: 0px 12px;
    }

    .box-category-nav {
        top: 4.2rem;
    }

}

@media (max-width: 460px) {
    
	.category-content h2 {
        font-size: 14.5px;
    }

    .card-latest figure {
        min-width: 90px;
        width: 90px;
        height: 90px;
    }

    .card-latest-title h3 {
        font-size: 13.8px;
        line-height: 1.42em;
        line-clamp: 3;
        -webkit-line-clamp: 3;
        letter-spacing: 0;
    }

    .card-latest-title p {
        font-size: 11px;
    }

    .card-latest-title span {
        font-size: 11px;
    }

    .card-latest a {
        gap: 1rem;
    }
	
	.trending-title {
        font-size: 14px;
        line-height: 1.42em;
    }
	
	.latest-news h2 {
		font-size: 16px;
		margin-bottom: 11px;
	}
	
}