/* Article Detail Styles */

/* ============================================================
   Header Ads Sticky Animation
   Efek header ads tenggelam saat scroll
   ============================================================ */
.header-ads-wrapper {
    animation: adsSlideDown 0.3s ease-out forwards;
}

.header-ads-wrapper.scrolled {
    animation: adsStay 0.3s ease-out forwards;
}

@keyframes adsSlideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes adsStay {
    from {
        opacity: 1;
    }
    to {
        opacity: 1;
    }
}

/* Shadow effect saat ads sticky */
.header-ads-wrapper.ads-sticky {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 8px 0;
    margin-bottom: 12px;
    font-size: 13px;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #dc3545;
}

.breadcrumb-item.active {
    color: #999;
}

/* Article Header */
.article-detail {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.article-title,
.entry-title {
    font-size: 2.375rem !important;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Article Meta */
.article-meta,
.entry-meta {
    padding: 12px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.publish-date {
    color: #666;
    font-size: 13px;
    margin-top: 2px;
}

.views-count {
    color: #666;
    font-size: 14px;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.social-share .btn {
    font-size: 13px;
    padding: 6px 15px;
}

/* Article Image */
.article-image,
.entry-thumbnail {
    margin: 20px 0;
}

.article-image img,
.entry-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.image-caption {
    font-style: italic;
    padding: 10px 0;
    font-size: 13px;
    color: #666;
}

/* Entry Header & Footer */
.entry-header {
    margin-bottom: 20px;
}

.entry-header .badge {
    padding: 7px;
    text-transform: uppercase;
    font-weight: normal;
}

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.post-tags,
.entry-footer .post-tags {
    font-size: 14px;
}

.post-tags a {
    display: inline-block;
    margin: 0 5px 8px 0;
    padding: 5px 12px;
    background-color: #f8f9fa;
    color: #495057;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.post-tags a:hover {
    background-color: #dc3545;
    color: #fff;
}

/* Article Content */
.article-content,
.entry-content {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
}

.article-content .lead,
.entry-content .lead {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 25px;
    font-weight: 400;
}

.article-content p,
.entry-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.article-content h2,
.entry-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.3;
}

.article-content h3,
.entry-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #1a1a1a;
    line-height: 1.3;
}

.article-content h4,
.entry-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
}

/* Article Quote */
.article-quote {
    background-color: #f8f9fa;
    border-left: 4px solid #dc3545;
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
}

.article-quote p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.article-quote footer {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

/* Info Box */
.info-box {
    background-color: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 20px;
}

.info-box h5 {
    color: #0066cc;
    font-size: 18px;
    margin-bottom: 10px;
}

.info-box p {
    margin-bottom: 0;
    font-size: 15px;
    text-align: left;
}

/* Article Tags */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.tags-label {
    font-weight: 600;
    color: #333;
}

.article-tags .badge {
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.article-tags .badge:hover {
    background-color: #dc3545 !important;
    color: #fff !important;
    border-color: #dc3545;
    text-decoration: none;
}

/* Author Box */
.author-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-box-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box-content {
    flex: 1;
}

.author-box-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.author-box-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.author-box-social a {
    color: #666;
    font-size: 18px;
    margin-right: 15px;
    transition: color 0.3s;
}

.author-box-social a:hover {
    color: #dc3545;
}

/* Related News */
.related-news .card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-news .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.related-news .card-title a:hover {
    color: #dc3545 !important;
}

/* Comments Section */
.comments-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.comment-form h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.comment-form .form-control {
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 14px;
}

.comment-form .form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

/* Comments List */
.comments-list {
    margin-top: 30px;
}

.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.comment-date {
    color: #999;
    font-size: 13px;
}

.comment-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.comment-reply {
    color: #dc3545;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.comment-reply:hover {
    color: #a82835;
}

/* Sidebar Sticky */
.sidebar-sticky {
    position: sticky;
    top: 80px;
}

/* Widget Styles - Matching Index Design */
.widget {
    margin-bottom: 1.5rem;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 0;
}

.widget h5,
.widget .widget-title,
.widget h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1rem;
    border-left: 4px solid #dc3545;
    padding-left: 12px;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    transition: transform 0.3s;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li:hover {
    transform: translateX(5px);
}

.widget ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    font-size: 14px;
    line-height: 1.4;
}

.widget ul li a:hover {
    color: #dc3545;
}

/* Social Media Widget */
.social-box {
    transition: transform 0.3s;
}

.social-box:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
    margin: 0 auto;
}

.social-icon i {
    font-size: 24px;
    color: white;
}

.social-icon:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* NewsFlash Category Widget - Matching index.php */
.widget .card-body {
    padding: 0;
}

.widget .list-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget .list-group-item {
    background-color: transparent;
    color: #333;
    text-decoration: none;
    padding: 12px 0;
    border: 0 !important;
    border-bottom: 1px solid #e9ecef !important;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget .list-group-item:first-child {
    padding-top: 0;
}

.widget .list-group-item:last-child {
    border-bottom: none !important;
}

.widget .list-group-item:hover {
    background-color: transparent;
    color: #dc3545;
    transform: translateX(5px);
}

.widget .list-group-item .badge {
    background-color: #6c757d !important;
    font-size: 12px;
    padding: 4px 10px;
}

/* Popular News Widget */
.popular-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.popular-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-number {
    font-size: 24px;
    font-weight: 700;
    color: #dc3545;
    width: 35px;
    flex-shrink: 0;
}

.popular-content {
    flex: 1;
}

.popular-content a {
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s;
}

.popular-content a:hover {
    color: #dc3545 !important;
}

/* Latest News Widget */
.latest-sidebar {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.latest-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    transition: transform 0.3s;
}

.latest-item:hover {
    transform: translateX(5px);
}

.latest-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.latest-thumbnail {
    width: 80px;
    min-width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 5px;
}

.latest-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-content {
    flex: 1;
}

.latest-content a {
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.3s;
}

.latest-content a:hover {
    color: #dc3545 !important;
}

.latest-link {
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-link:hover {
    color: #dc3545 !important;
}

/* Category List - Legacy Support */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.category-list a:hover {
    background-color: #f8f9fa;
    color: #dc3545;
    padding-left: 15px;
}

.category-list span {
    color: #999;
    font-size: 13px;
}

/* Widget Categories - Standard WordPress */
.widget_categories ul li,
.widget_archive ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_categories ul li span,
.widget_archive ul li span {
    background-color: #e9ecef;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    color: #495057;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #a82835;
    transform: translateY(-5px);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 991px) {
    .article-title,
    .entry-title {
        font-size: 26px !important;
        line-height: 1.3;
    }
    
    .article-content,
    .entry-content {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .article-content .lead,
    .entry-content .lead {
        font-size: 17px;
    }
    
    .article-content h2,
    .entry-content h2 {
        font-size: 24px;
    }
    
    .article-content h3,
    .entry-content h3 {
        font-size: 20px;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .breadcrumb {
        font-size: 12px;
        padding: 6px 0;
        margin-bottom: 10px;
    }
    
    .article-detail {
        padding: 18px 15px;
    }
    
    .article-title,
    .entry-title {
        font-size: 22px !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .article-meta,
    .entry-meta {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .author-avatar {
        width: 38px;
        height: 38px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .publish-date {
        font-size: 11px;
    }
    
    .social-share {
        justify-content: flex-start;
    }
    
    .social-share .btn {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .article-content,
    .entry-content {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .article-content .lead,
    .entry-content .lead {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .article-content h2,
    .entry-content h2 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    
    .article-content h3,
    .entry-content h3 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .article-content h4,
    .entry-content h4 {
        font-size: 16px;
        margin-top: 18px;
        margin-bottom: 10px;
    }
    
    .article-content p,
    .entry-content p {
        margin-bottom: 16px;
    }
    
    .article-quote {
        padding: 12px 16px;
        margin: 20px 0;
    }
    
    .article-quote p {
        font-size: 15px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
    }
    
    .author-box-avatar {
        width: 70px;
        height: 70px;
    }
    
    .comment-avatar {
        width: 40px;
        height: 40px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* Widget Responsive */
    .widget {
        padding: 15px;
        margin-bottom: 1rem;
    }
    
    .widget h5,
    .widget .widget-title,
    .widget h2 {
        font-size: 16px;
        margin-bottom: 0.75rem;
    }
    
    .widget ul li a {
        font-size: 13px;
    }
    
    .popular-number {
        font-size: 20px;
        width: 30px;
    }
    
    .popular-content a {
        font-size: 13px;
    }
    
    .latest-item img {
        width: 70px;
        height: 52px;
    }
    
    .latest-content a {
        font-size: 12px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

/* Extra Small Mobile */
@media (max-width: 575px) {
    .breadcrumb {
        font-size: 11px;
    }
    
    .article-detail {
        padding: 15px 12px;
    }
    
    .article-title,
    .entry-title {
        font-size: 19px !important;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .article-meta,
    .entry-meta {
        font-size: 11px;
    }
    
    .article-content,
    .entry-content {
        font-size: 14px;
        line-height: 1.65;
    }
    
    .article-content .lead,
    .entry-content .lead {
        font-size: 15px;
    }
    
    .article-content h2,
    .entry-content h2 {
        font-size: 18px;
    }
    
    .article-content h3,
    .entry-content h3 {
        font-size: 16px;
    }
    
    .article-content h4,
    .entry-content h4 {
        font-size: 15px;
    }
    
    .article-content p,
    .entry-content p {
        text-align: left;
        margin-bottom: 14px;
    }
    
    .social-share .btn {
        flex: 1;
        min-width: calc(50% - 5px);
    }
    
    .share-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    /* Widget Extra Small */
    .widget {
        padding: 12px;
    }
    
    .widget h5,
    .widget .widget-title,
    .widget h2 {
        font-size: 15px;
        padding-left: 10px;
    }
    
    .widget ul li {
        padding: 10px 0;
    }
    
    .widget ul li a {
        font-size: 12px;
    }
    
    .popular-number {
        font-size: 18px;
        width: 28px;
    }
    
    .popular-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .latest-item {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .latest-item img {
        width: 65px;
        height: 48px;
    }
    
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
    }
}

/* Dark Mode Support for Sidebar */
body.dark-mode .widget {
    background-color: #2d2d2d;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
}

body.dark-mode .widget h5,
body.dark-mode .widget .widget-title,
body.dark-mode .widget h2 {
    color: #fff;
}

body.dark-mode .widget ul li {
    border-bottom-color: #444;
}

body.dark-mode .widget ul li a {
    color: #e9ecef;
}

body.dark-mode .widget ul li a:hover {
    color: #ff6b6b;
}

body.dark-mode .widget .list-group-item {
    color: #e9ecef;
    border-bottom-color: #444 !important;
}

body.dark-mode .widget .list-group-item:hover {
    color: #ff6b6b;
}

body.dark-mode .widget_categories ul li span,
body.dark-mode .widget_archive ul li span {
    background-color: #444;
    color: #e9ecef;
}

body.dark-mode .widget input[type="text"],
body.dark-mode .widget input[type="email"],
body.dark-mode .widget input[type="search"],
body.dark-mode .widget select {
    background-color: #1a1a1a;
    border-color: #444;
    color: #e9ecef;
}

body.dark-mode .category-list a {
    color: #e9ecef;
}

body.dark-mode .category-list a:hover {
    background-color: #1a1a1a;
    color: #ff6b6b;
}

body.dark-mode .category-list span {
    color: #999;
}

/* ============================================================
   Related Posts (Baca Juga) - Single Post
   ============================================================ */
.related-posts-section {
    padding: .5rem 1rem;
    border-left: 4px solid #dc3545;
    margin: 15px 0;
}

.related-posts-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.50rem !important;
}

.related-posts-title i {
    color: #dc3545;
    font-size: 16px !important;
}

.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-post-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.related-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post-item:hover {
    padding-left: 0.75rem;
    padding-right: -0.75rem;
}

.related-post-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    color: #dc3545;
    font-weight: 500;
}

.related-post-link:hover {
    color: #dc3545;
}

.related-post-link .post-title {
    flex: 1;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
}

/* Dark Mode - Related Posts */
body.dark-mode .related-posts-section {
    border-top-color: #444;
    border-bottom-color: #444;
    background: linear-gradient(to right, rgba(220, 53, 69, 0.1) 0%, transparent 100%);
}

body.dark-mode .related-posts-title {
    color: #e9ecef !important;
}

body.dark-mode .related-post-item {
    border-bottom-color: #444;
}

body.dark-mode .related-post-link {
    color: #e9ecef;
}

body.dark-mode .related-post-link:hover {
    color: #ff6b6b;
}

/* Related Posts Responsive */
@media (max-width: 768px) {
    .related-posts-section {
        padding: 1rem;
        margin: 15px 0;
        border-top-width: 2px;
    }

    .related-posts-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }

    .related-posts-title i {
        font-size: 1.2rem;
    }

    .related-post-item {
        padding: 0.1rem 0;
    }

    .related-post-link {
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .related-post-link .post-number {
        font-size: 1.1rem;
        min-width: 28px;
    }
}

@media (max-width: 480px) {
    .related-posts-section {
        background: transparent;
        border-top-width: 2px;
    }

    .related-posts-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        gap: 0.4rem;
    }

    .related-posts-title i {
        font-size: 1.1rem;
    }

    .related-post-item {
        padding: 0.1rem 0;
    }

    .related-post-link {
        font-size: 0.9rem;
        line-height: 1.5;
        gap: 0.6rem;
    }

    .related-post-link .post-number {
        font-size: 1rem;
        min-width: 24px;
    }

    .related-post-item:hover {
        padding-left: 0.5rem;
    }
}