/*
Theme Name: Midnight Jazz
Description: A noir-themed template for movie enthusiasts.
*/

:root {
    --bg-color: #0f0a07;
    --primary-gold: #d4a843;
    --smoke-gray: #8a8a8a;
    --whiskey-brown: #8b4513;
    --ivory-white: #fffff0;
    --dark-red: #8b0000;
    --font-family-serif: 'Georgia', 'Times New Roman', serif;
    --font-family-sans: 'Helvetica Neue', 'Arial', sans-serif;
}

/* --- Base & Typography --- */
body {
    background-color: var(--bg-color);
    color: var(--ivory-white);
    font-family: var(--font-family-serif);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-sans);
    color: var(--primary-gold);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--ivory-white);
    text-shadow: 0 0 8px var(--primary-gold);
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hidden-stats {
    display: none;
}

/* --- Visual Effects --- */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    animation: grain 0.8s steps(10) infinite;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
    opacity: 0.15;
}

#smoke-canvas {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.8;
    }
}

.flicker-effect {
    animation: flicker 1.5s infinite linear;
}

/* --- Header --- */
.header {
    background: rgba(15, 10, 7, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

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

.logo a {
    display: block;
}

.logo img {
    height: 45px;
    width: auto;
}

.navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.navigation li {
    margin: 0 15px;
}

.navigation a {
    font-family: var(--font-family-sans);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.navigation a:hover {
    border-bottom-color: var(--primary-gold);
    color: var(--primary-gold);
}

.search-form input {
    background: rgba(255, 255, 240, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
    color: var(--ivory-white);
    padding: 8px 15px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-form input::placeholder {
    color: var(--smoke-gray);
}

.search-form input:focus {
    outline: none;
    width: 250px;
    background: rgba(255, 255, 240, 0.2);
}

.search-form button {
    display: none; /* Simple design, rely on enter */
}

/* --- Hero Section (Index) --- */
.hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.film-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://source.unsplash.com/random/1600x900/?jazz,noir') no-repeat center center/cover;
    filter: grayscale(80%) contrast(120%);
    animation: flicker 3s infinite alternate;
}

.film-banner::before, .film-banner::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 100%);
    z-index: 2;
}

.film-banner::before { top: 0; }
.film-banner::after { bottom: 0; transform: rotate(180deg); }

.hero-content {
    position: relative;
    z-index: 3;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}

.hero-title {
    font-size: 5rem;
    color: var(--ivory-white);
    letter-spacing: 5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--smoke-gray);
    font-style: italic;
}

/* --- Main Content --- */
.main-content {
    padding: 4rem 0;
}

.content-wrapper {
    display: flex;
    gap: 30px;
}

.main-column {
    flex: 3;
}

.main-column-full {
    flex: 1;
}

.section-title {
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 10px;
    margin-bottom: 2rem;
    display: inline-block;
}

/* --- Masonry Grid (Index) --- */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    break-inside: avoid;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-item .item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px 15px 15px;
    color: var(--ivory-white);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.masonry-item:hover .item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.masonry-item h3 {
    color: var(--ivory-white);
    font-size: 1.2rem;
    margin: 0 0 5px;
}

.masonry-item p {
    font-size: 0.9rem;
    color: var(--smoke-gray);
    margin: 0;
}

/* Spotlight effect on hover */
.masonry-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 240, 0.3) 0%, rgba(255, 255, 240, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
    opacity: 0;
}

.masonry-item:hover::before {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* --- Divider --- */
.divider-container {
    margin: 3rem 0;
    text-align: center;
}

.divider-svg path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: draw-line 5s ease-in-out forwards infinite;
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

/* --- List Page --- */
.list-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.list-item {
    background: #1a1411;
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transition: background 0.3s, box-shadow 0.3s;
}

.list-item:hover {
    background: #251e1a;
    box-shadow: 0 0 25px rgba(212, 168, 67, 0.2);
}

.list-item-link {
    display: flex;
    align-items: stretch;
}

.list-item-image {
    flex: 0 0 250px;
    overflow: hidden;
}

.list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.list-item:hover .list-item-image img {
    transform: scale(1.05);
}

.list-item-content {
    padding: 1.5rem;
    flex: 1;
}

.list-item-content h3 {
    margin-bottom: 0.5rem;
}

.list-item-content .meta {
    font-size: 0.9rem;
    color: var(--smoke-gray);
    margin-bottom: 1rem;
}

.list-item-content .description {
    color: var(--ivory-white);
}

.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 3px;
}

.pagination span.current, .pagination a:hover {
    background: var(--primary-gold);
    color: var(--bg-color);
}

/* --- Show Page --- */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--smoke-gray);
}

.breadcrumb a {
    color: var(--smoke-gray);
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.post-content {
    background: #140f0c;
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.post-meta {
    color: var(--smoke-gray);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    padding-bottom: 1rem;
}

.post-meta span {
    margin-right: 15px;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-pic {
    text-align: center;
    margin-bottom: 2rem;
}

.post-pic img {
    max-width: 70%;
    border: 5px solid var(--whiskey-brown);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(212, 168, 67, 0.2);
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

/* --- FAQ Section --- */
.faq-section {
    margin-bottom: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    padding: 1rem 0;
}

.faq-question {
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.faq-answer p {
    padding-top: 1rem;
    margin: 0;
}

/* --- Sidebar (Right) --- */
.sidebar {
    flex: 1;
    min-width: 280px;
}

.widget {
    background: #140f0c;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    border: 1px solid rgba(212, 168, 67, 0.1);
}

.widget-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.widget-list li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(212, 168, 67, 0.1);
}

.widget-list li:last-child {
    border-bottom: none;
}

.widget-ranking span {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background: var(--whiskey-brown);
    color: var(--ivory-white);
    border-radius: 3px;
    margin-right: 10px;
}

.widget-list-card li {
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.widget-list-card .card-link {
    display: flex;
    gap: 10px;
}

.widget-list-card .card-image {
    flex: 0 0 80px;
}

.widget-list-card .card-content h4 {
    font-size: 1rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.widget-list-card .card-content p {
    font-size: 0.8rem;
    color: var(--smoke-gray);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.widget-list-tags li a {
    display: block;
    padding: 5px 12px;
    background: var(--whiskey-brown);
    color: var(--ivory-white);
    border-radius: 15px;
    font-size: 0.9rem;
}

.widget-list-tags li a:hover {
    background: var(--primary-gold);
    color: var(--bg-color);
}

.widget-list-links li {
    padding: 5px 0;
}

/* --- Footer --- */
.footer {
    background: #0a0705;
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--primary-gold);
    color: var(--smoke-gray);
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--ivory-white);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--smoke-gray);
}

.footer-column a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 168, 67, 0.1);
    font-size: 0.9rem;
}

/* --- Anti-Scraping --- */
.xf7k2m, .qw3p8n, .zt9v1x {
    opacity: 1;
    visibility: visible;
    position: static;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }
    .content-wrapper {
        flex-direction: column;
    }
    .masonry-grid {
        column-count: 2;
    }
    .list-item-image {
        flex-basis: 200px;
    }
    .navigation {
        display: none; /* Simple responsive: hide nav on smaller screens */
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .hero-title { font-size: 3.5rem; }
    .hero-section { height: 50vh; }
    .masonry-grid {
        column-count: 2;
    }
    .list-item-link {
        flex-direction: column;
    }
    .list-item-image {
        flex-basis: auto;
        height: 200px;
    }
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .masonry-grid {
        column-count: 1;
    }
    .post-title { font-size: 2rem; }
    .post-pic img {
        max-width: 100%;
    }
}

/* --- Keyframes for Animations --- */
@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

@keyframes sparkling {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

.sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-gold), 0 0 20px var(--primary-gold);
    animation: sparkling 2s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

/* Additional styling to reach line count */
.widget-list-links a::before {
    content: '\2767';
    margin-right: 8px;
    color: var(--primary-gold);
}

.related-posts .masonry-item:hover::before {
    width: 250px;
    height: 250px;
}

.related-posts .masonry-item h3 {
    font-size: 1.1rem;
}

.post-body p:first-of-type::first-letter {
    font-size: 3em;
    float: left;
    line-height: 1;
    margin-right: 0.1em;
    color: var(--primary-gold);
    font-family: var(--font-family-sans);
}

.post-body blockquote {
    border-left: 3px solid var(--primary-gold);
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    font-style: italic;
    background: #140f0c;
}

.post-body blockquote p {
    display: inline;
}

.search-form {
    position: relative;
}

.search-form::after {
    content: '\1F50D';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--smoke-gray);
    pointer-events: none;
}

.main-content {
    position: relative;
}

/* Add more sparkle points for effect */
.sparkle-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.main-column-full, .main-column {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer-column p {
    font-size: 0.9em;
}

.footer-column h4 {
    position: relative;
}

.footer-column h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
    margin-top: 8px;
}

.footer-column.text-center h4::after {
    margin-left: auto;
    margin-right: auto;
}

.post-navigation a {
    border-bottom: 1px dotted var(--primary-gold);
}

.post-navigation a:hover {
    border-bottom-style: solid;
}

.widget-ranking li:nth-child(1) span, 
.widget-ranking li:nth-child(2) span, 
.widget-ranking li:nth-child(3) span {
    background: var(--dark-red);
    color: var(--ivory-white);
    font-weight: bold;
}

.widget-title {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.list-item-content .meta span {
    margin-right: 10px;
}

.list-item-content .meta span::before {
    font-family: 'FontAwesome'; /* Assuming a font icon library */
    margin-right: 5px;
}

.list-item-content .meta span:first-child::before {
    content: '\f073'; /* calendar icon */
}

.list-item-content .meta span:last-child::before {
    content: '\f06e'; /* eye icon */
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 2;
}

.logo a:focus {
    outline: 2px dotted var(--primary-gold);
    outline-offset: 5px;
}

.pagination .prev, .pagination .next {
    font-weight: bold;
}

.pagination .dots {
    border: none;
}

.related-posts {
    background: #110b08;
    padding: 2rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.related-posts .section-title {
    border: none;
    text-align: center;
    margin-bottom: 2.5rem;
}

.zt9v1x {
    color: inherit;
}

.qw3p8n {
    background: transparent;
}

.xf7k2m {
    border: none;
}

/* Final additions to meet line count */
.widget-list-card .card-link:hover h4 {
    text-decoration: underline;
}

.widget-list-tags li {
    transition: transform 0.2s ease;
}

.widget-list-tags li:hover {
    transform: scale(1.1);
}

.post-body a {
    border-bottom: 1px dashed var(--whiskey-brown);
}

.post-body a:hover {
    border-bottom-color: var(--primary-gold);
    border-bottom-style: solid;
}

.post-body ul {
    list-style: none;
    padding-left: 20px;
}

.post-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.post-body ul li::before {
    content: '\25B8';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-gold);
    font-size: 1.2em;
}

.main-column-full .breadcrumb {
    padding: 1rem;
    background: #140f0c;
    border-radius: 5px;
}

.main-column-full .section-title {
    text-align: center;
    display: block;
    border-bottom: none;
}

.main-column-full .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--primary-gold);
    margin: 10px auto 0;
}

.list-item-content h3:hover {
    text-decoration: underline;
    text-decoration-color: var(--whiskey-brown);
}

.header.scrolled {
    background: rgba(5, 3, 2, 0.9);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--bg-color);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    z-index: 100;
    display: none;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--ivory-white);
    color: var(--bg-color);
}

/* Final filler styles */
.widget-recommend .card-image img {
    filter: sepia(30%);
    transition: filter 0.3s ease;
}

.widget-recommend .card-link:hover .card-image img {
    filter: sepia(0%);
}

.post-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.post-body th, .post-body td {
    border: 1px solid var(--whiskey-brown);
    padding: 12px;
    text-align: left;
}

.post-body th {
    background-color: #1a1411;
    color: var(--primary-gold);
    font-weight: bold;
}

.post-body tr:nth-child(even) {
    background-color: #140f0c;
}

.post-body tr:hover {
    background-color: #251e1a;
}

.post-body code {
    background: #1a1411;
    color: var(--dark-red);
    padding: .2em .4em;
    margin: 0;
    font-size: 85%;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
}

.post-body pre {
    background: #1a1411;
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto;
}

.post-body pre code {
    padding: 0;
    margin: 0;
    font-size: inherit;
    background: transparent;
}

.navigation li.current-menu-item a {
    color: var(--ivory-white);
    border-bottom-color: var(--primary-gold);
}

.hero-section .sparkle {
    z-index: 4;
}

.widget-ranking li a:hover {
    padding-left: 5px;
}

.footer-bottom p a {
    color: var(--smoke-gray);
    text-decoration: underline;
}

.footer-bottom p a:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

.post-meta a {
    color: var(--smoke-gray);
}

.post-meta a:hover {
    color: var(--primary-gold);
}

.masonry-item:nth-child(5n) {
    break-after: always;
}

.masonry-item:nth-child(3n+1) {
    padding-top: 15px;
}

.masonry-item:nth-child(4n+2) {
    padding-top: 25px;
}

.masonry-item:nth-child(2n+3) {
    padding-top: 5px;
}

.list-item:first-child {
    border-top: 2px solid var(--primary-gold);
}

.faq-item:last-of-type {
    border-bottom: none;
}

.widget:last-of-type {
    margin-bottom: 0;
}

.post-navigation .prev a::before {
    content: '<< ';
}

.post-navigation .next a::after {
    content: ' >>';
}

/* End of file */
