:root {
    --primary-color: #002dbb;
    --accent-color: #fd7e14;
    --text-dark: #212529;
    --bg-light: #f9f9f9;
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    line-height: 1.5;
    font-size: 16px;
}

html, 
body {
    overflow-x: hidden;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

header,
.blog-header {
    background-color: #020202;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.blog-header-description {
    text-align: center;
    padding: 5px;
}

.category-title {
    color: #000;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 35px;
    text-align: center;
    text-transform: uppercase;
    padding: 5px 10px;
}

h1 {
    color: #FFF;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 35px;
    text-align: center;
    text-transform: uppercase;
    padding: 5px 10px;
}

h2 {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}
    
h3 {
    font-weight: bold;
    line-height: 1.5;
    text-align: justify;
    font-size: 20px;
    color: #444;
}

a {
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer { 
    text-align: center; 
    padding: 20px; 
}

blockquote {
    border-left: 5px solid var(--accent-color);
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #f0f0f0;
    font-style: italic;
    color: #555;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

button, .btn {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #e06d00;
}

code {
    background-color: #f4f4f4;
    padding: 2px 5px;
    border-radius: 4px;
    font-family: monospace;
    color: #d63384;
}

pre {
    background-color: #f4f4f4;
    padding: 15px;
    overflow-x: auto;
    border-radius: 6px;
    font-family: monospace;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px;
}

.blog-snippet {
    display: flex;
    overflow: hidden;
    align-items: center; 
    margin-bottom: 24px;
    border: 1px solid #ddd;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.blog-snippet img.thumbnail {
    margin: 0 !important;
    border-radius: 0;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-snippet .blog-content {
    padding: 8px;
}

.blog-date {
    font-size: 14px;
    color: #555;
    padding-top: 5px;
}

.blog-snippet .blog-date {
    font-size: 13px;
    color: #555;
}

.thumbnail {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.blog-snippet .highlight-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-title {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
    text-align: left;
}

.blog-title h2 {
    margin: 0 !Important;
}

.main-menu {
    background-color: #111; 
    text-align: left;
    padding-left: 20px;
}

.main-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 30px;
}

.main-menu li {
    position: relative;
}

.main-menu li:hover > .dropdown-content {
    display: block;
}

.main-menu a {
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s;
}

.main-menu a:hover {
    background-color: orange;
    color: #000;
}

.main-menu .dropdown-content li a:hover {
    background-color: orange;
    color: #000;
}

.main-menu a,
.main-menu .dropdown-content li a {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1c1c1c;
    min-width: 220px;
    z-index: 1000;
    text-align: left;
    overflow: hidden;
}

.main-menu .dropdown-content li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* garis halus */
    padding: 0;
}

.main-menu .dropdown-content li:last-child {
    border-bottom: none;
}

.main-menu .dropdown-content li a {
    color: white;
    display: block;
    padding-left: 25px;
}

.main-menu .dropdown:hover .dropdown-content {
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-links li {
    position: relative;
}


.navbar-search {
    position: relative;
    margin-right: 40px;
    display: flex;
    align-items: center;
}

.search-icon {
    font-size: 18px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    gap: 6px;
    margin-top: 2px;
    z-index: 999;
    min-width: 360px;
}

.search-form form {
    display: flex;
    width: 100%;
}

.search-form.hidden {
    display: none;
}

.search-form input[type="text"] {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.search-form button {
    padding: 10px 16px;
    background-color: #28a745;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.mobile-bar {
    display: none;
}

.breadcrumb {
    font-size: 14px;
    padding: 8px 0 8px;
    border-bottom: 1px solid #ddd;
}

.breadcrumb a {
    color: #ff8800;
    text-decoration: none;
}

.breadcrumb span {
    color: #333;
}

.main-menu .dropdown-content .dropdown {
    position: relative;
}

.main-menu .dropdown-content .dropdown .dropdown-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: none; /* default */
    background-color: #1c1c1c;
    z-index: 1001;
    padding: 0;
}

.main-menu .dropdown-content .dropdown.open > .dropdown-content {
    display: block !important;
}

.main-menu .dropdown-content .dropdown .dropdown-content li a {
    display: block;
    color: white;
    text-align: left;
    padding-left: 35px;
}

.main-menu .dropdown-content .dropdown .dropdown-content li a:hover {
    color: black;
}
 
.main-menu .dropdown-content .dropdown .dropdown-content .dropdown .dropdown-content li a {
    padding-left: 45px;
}

.section-berita {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
    "highlight populer sidebar"
    "terbaru  terbaru  sidebar";
    gap: 24px;
    margin: auto;
    padding: 20px 0;
}

.highlight-left {
    grid-area: highlight;
}

.highlight-center {
    grid-area: populer;
    position: relative;
}

.highlight-sidebar {
    grid-area: sidebar;
    position: sticky;
    top: 0;
    align-self: start;
}

.featured-wrapper {
    grid-area: terbaru;
}

body.category-page .section-berita {
    display: grid;
    grid-template-columns: 3fr 1fr; 
    grid-template-areas: 
    "article-list sidebar";
    gap: 24px;
    margin: auto;
    padding: 20px 0;
    align-items: start;
}

body.category-page .article-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-self: start;   
}

body.category-page .highlight-sidebar {
    grid-area: sidebar;
}

.featured-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    box-sizing: border-box;
}

.featured-scroll .featured-item {
    flex: 0 0 calc((100% - 4 * 16px) / 5);
    max-width: calc((100% - 4 * 16px) / 5);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding-bottom: 12px;
}

.featured-scroll .featured-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 769px) {
    .mobile-bar,
    .mobile-search {
        display: none;
    }
  
    .search-icon {
        border-radius: 5px;
    }
    
    .blog-snippet {
        flex-direction: column;
        height: 100%;
    }
    
    .blog-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
}

@media (min-width: 768px) {
    article.blog-snippet {
        display: flex;
        flex-direction: column;
        background: #fff;
        border: 1px solid #ddd;
        height: 100%;
    }
    
    .blog-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }
    
    .blog-snippet img.thumbnail {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .highlight-title {
        margin: 10px 0;
    }
    
    .section-berita {
        display: flex;
        flex-direction: column;
        gap: 32px;
        box-sizing: border-box;
        padding: 0 10px;
    }
    
    body.category-page .section-berita {
        display: flex;
        flex-direction: column;
        padding: 0 10px;
    }
    
    body.category-page .article-list {
        grid-template-columns: 1fr;
    }
    
    .scroll-nav-vertical {
        padding: 0 15px;
        margin: 10px 0;
    }
    
    .scroll-nav-vertical button {
        padding: 4px 8px;
        font-size: 16px;
        border-radius: 4px;
        background: #eee;
        border: 1px solid #ccc;
        cursor: pointer;
    }
    
    .featured-wrapper {
        margin-top: 330px;
    }
    
    .featured-scroll {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 12px;
        gap: 12px;
        scroll-padding-left: 12px;
    }

    .featured-scroll .featured-item {
        flex: 0 0 calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
        min-width: calc((100% - 12px) / 2);
        scroll-snap-align: start;
        box-sizing: border-box;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding-bottom: 10px;
    }
    
    .highlight-wrapper {
        display: block !important;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 300px;
    }

    .highlight-right {
        width: 100% !important;
        padding: 0;
        margin: 0 0 16px 0 !important;
        display: block !important;
    }
    
    .highlight-slider {
        width: 100%;
    }
    
    .highlight-caption h2 {
        font-size: 20px !important;
    }
    
    .highlight-caption p {
        font-size: 15px !important;
    }
    
    .highlight-popular-scroll {
        max-height: none;
        height: auto;
        overflow: visible;
        padding: 0 !important; 
    }

    .popular-item {
        flex-direction: row;
        align-items: left;
        box-sizing: border-box;
        border: 1px solid #ccc;
    }

    .popular-item img {
        width: 100%;
        height: auto;
        max-width: 320px;
        border-radius: 6px;
    }

    .highlight-popular-title {
        font-size: 14px !important;
        font-weight: bold;
        line-height: 1.4;
        text-align: left;
        padding: 10px 0;
        margin: 0 !important;
    }
    
    .featured-scroll {
        flex-wrap: nowrap;
        box-sizing: border-box;
        padding: 0 10px;
        scroll-padding-left: 10px;
    }

    .featured-scroll .featured-item {
        flex: 0 0 calc(50% - 100px); 
        max-width: calc(50% - 100px);
        scroll-snap-align: start;
    }

    .featured-item .title {
        font-size: 12px;
        font-weight: bold;
        padding: 5px 10px;
        text-align: center;
    }
    
    .main-menu ul,
    .navbar-search {
        display: none;
    }
    
    .mobile-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #111;
    }
    
    .mobile-bar button {
        font-size: 22px;
        background: none;
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-search {
        display: none;
        position: static;
        left: 0;
        right: 0;
        background: #fff;
        padding: 10px;
        z-index: 9999;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .main-menu .mobile-search {
        margin-left: -20px;
    }
  
    
    .mobile-search.active {
        display: block;
    }

    .mobile-search form {
        display: flex;
    }

    .mobile-search input {
        flex: 1;
        padding: 10px;
        border: 1px solid #ccc;
    }

    .mobile-search button {
        background-color: #28a745;
        color: white;
        border: none;
        padding: 10px 14px;
        font-weight: bold;
        cursor: pointer;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        background: #111;
        width: 100%;
    }
    
    .main-menu ul {
        gap: 5px
    }
  
    .nav-links.active {
        display: flex;
    }

    .dropdown-toggle i {
        margin-left: 10px;
        font-size: 18px;
        cursor: pointer;
        display: inline-block;
    }
    
    .dropdown-toggle {
        position: relative;
    }

    .dropdown-content {
        display: none;
        background-color: #111;
        padding-left: 15px; /* lebih masuk ke dalam */
        margin-top: 5px;
    }
    
    .dropdown-content li a {
        display: block;
        color: #fff;
        padding: 10px 15px;
        background-color: #111;
        width: 100%; /* full width background */
        box-sizing: border-box;
    }

    .dropdown .dropdown-content {
        display: none;
    }
    
    .dropdown.open .dropdown-content {
        display: block;
    }
    
    .dropdown.open > .dropdown-toggle {
        background-color: orange;
        color: #000; 
    }
    
    .dropdown.open .dropdown-content li a:hover {
        background-color: orange; 
        color: #000;
    }
  
    .dropdown-toggle {
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    .blog-snippet {
        flex-direction: column;
        align-items: center;
        margin: 10px 0;
        box-sizing: border-box;
    }
    
    .blog-snippet img.thumbnail {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
        border-radius: 0;
    }
    
    .blog-title {
        margin-top: 6px !Important;
    }
    
    .blog-snippet .blog-content {
        padding: 8px;
    }
    
    .blog-date {
        text-align: left;
    }
    
    .breadcrumb {
        padding-left: 20px;
    }
    
    .post-labels {
        padding-left: 20px !important;
    }
}

.back-to-top {
    position: fixed;
    bottom: 150px;
    right: 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 1;
    visibility: visible;
}
    
.back-to-top:hover {
    background: #0056b3;
    transform: scale(1.05);
}
    
body:not(:target) .back-to-top {
    opacity: 1;
    visibility: visible;
}

#liveChatBtn {
    position: fixed;
    transform: translateY(0);
    bottom: 0; 
    right: 8px;
    z-index: 1000;
    
}

#liveChatBtn img {
    width: auto;
    max-height: 130px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform 0.2s ease-in-out;
}

.post-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 8px 0 8px;
}

.label {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
}

.category-labels,
.tag-labels,
.tag2-labels {
    margin-bottom: 4px;
}

.article-tags {
    display: flex;
    flex-direction: column;
}

.label.category {
    background-color: #bb1919; 
}

.label.tag {
    background-color: #444;
}

.label.tag2 {
    background-color: #fd7e14;
}

.custom-footer {
    position: relative;
    font-size: 14px;
    margin-top: 40px;
    padding: 0px;
}

.custom-footer .footer-nav {
    background: #37474F;
    color: #fff;
    text-align: center;
    padding: 16px 10px;
}

.custom-footer .footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

.custom-footer .footer-nav a:hover {
    color: #ff9900;
}

.custom-footer .footer-copy {
    background: #111;
    color: #FFF;
    text-align: center;
    padding: 12px 10px;
    text-transform: uppercase;
}

.highlight-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}

.highlight-title.green {
    border-left-color: #28a745;
}

.highlight-title.blue {
    border-left-color: #007bff;
}

.highlight-slider {
    position: relative;
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 16px;
}

.highlight-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border: 1px solid #eee;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}


.highlight-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.highlight-popular-title {
    font-size: 16px;
    color: #111;
    line-height: 1.3;
    font-weight: bold;
    text-align: left;
}

.highlight-caption {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    padding: 12px;
    border: 1px solid #ccc;
}

.highlight-slide {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.highlight-caption h2 {
    color: #444;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    font-size: 30px;
    margin: 0;
    padding: 0;
}

.highlight-caption p {
    color: #444;
    font-size: 18px;
}

.highlight-caption .highlight-tags {
    margin-bottom: 6px;
}

.highlight-caption .highlight-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.highlight-nav {
    position: absolute;
    top: 50%;
    left: 1px;
    right: 1px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-nav button {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 6px 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.highlight-nav button:hover {
    background-color: #ff9800;
}

.highlight-left:hover .highlight-nav {
    opacity: 1;
}

.highlight-slider .highlight-slide {
    display: none;
}

.highlight-slider .highlight-slide:first-child {
  display: block; 
}

.highlight-right {
    width: 50%;
    position: relative;
}

.read-more-btn {
    display: block;
    margin-top: 10px;
    padding: 10px 16px;
    background-color: #ff6600;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background-color: #e25700;
}

.highlight-popular {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.highlight-popular-scroll {
    max-height: 500px; 
    scroll-behavior: smooth;
    padding-right: 5px;
}

.scroll-nav-vertical {
    display: flex;
    position: absolute;
    right: -7px;
    top: 0;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.scroll-nav-vertical button:hover {
    background-color: #ff9800;
}

.scroll-nav-vertical button {
    background: none;
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 18px;
    border-radius: 4px;
    color: #000;
}

.popular-item {
    background-color: #fff;
    border: none;
    padding-right: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    border: 1px solid #ccc;
}

.popular-item img {
    max-width: none;
    width: 150px;
    height: 150px;
    object-fit: cover;
    flex-shrink: 0;
    margin: 0;
    border-radius: 0;
}

.popular-item .highlight-tags {
    margin-bottom: 6px;
}

.featured-item img {
    width: 100%;
    border-radius: 0;
    margin: 0 0 8px 0;
}

.featured-item .title {
    font-size: 16px;
    font-weight: bold;
    color: #111;
    padding: 0 10px 0 10px;
    text-align: center;
}

main.seo-text h2 {
    margin: 0 0 10px;
}

main.seo-text p {
    text-align: justify;
    padding: 0 5px;
}

main.seo-text ol {
    padding-left: 25px;
}

main.seo-text ul {
    padding-left: 30px;
}

main.seo-text li {
    padding: 0 15px 10px 0;
}

.ig-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 16px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.banner {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background-color: #000;
}

.highlight-sidebar img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 18px;
    border-radius: 0;
}

.sidebar-links {
    list-style: none;
    padding: 7px 0 0 10px;
    box-shadow: 0 0 0 1px #ddd;
}

.sidebar-links li {
    padding-bottom: 9px;
    font-weight: bold;
}

.sidebar-links a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

.sidebar-links a:hover {
    text-decoration: underline;
}

.sidebar-video video {
    margin-top: 10px;
    width: 100%;
    height: auto;
    display: block;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.search-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #ddd;     
    background-color: #fff;   
    margin-bottom: 15px;
}

.search-item img {
    width: 170px;
    object-fit: cover;
    border-radius: 0;
    vertical-align: top;
}

.search-item h2 {
    font-size: 23px;
    margin: 8px 0 4px;
    color: #ff6600;
    text-align: left;
    padding-right: 5px;
}

.article-date {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}