/* Existing logo spacing fix */
.header__logo::after {
    margin-left: 10px;
}

/* Remove yellow background from logo */
.logo {
    background: transparent !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Thinner image borders */
img {
    border-width: 2px !important;
}

/* Change background from brown to lighter grey */
body,
html {
    background-color: #2a2826 !important;
}

/* Style post cards */
.post.on-list {
    background: #363636;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Larger post titles */
.post-title a {
    font-size: 1.4rem !important;
}

/* Remove dotted lines under post titles */
.post-title {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.post-title::after {
    display: none !important;
}

/* Style Read More button like NetworkChuck */
.read-more.button {
    display: inline-block !important;
    background-color: #4a9eff !important; /* Light blue */
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    font-size: 0 !important; /* Hide the original text including brackets */
}

.read-more.button::after {
    content: "Read More →" !important;
    font-size: 0.95rem !important;
    display: inline-block;
}

.read-more.button:hover {
    background-color: #6bb0ff !important; /* Lighter blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Change post title color to match button blue */
.post-title,
.post-title a {
    color: #4a9eff !important;
}

/* Change tag colors to match theme */
.post-tags a {
    color: #4a9eff !important; /* Same blue as button and title */
}

.post-tags a:hover {
    color: #6bb0ff !important; /* Lighter blue on hover */
}

/* Fix the # symbol color in tags */
.post-tags {
    color: #4a9eff !important;
}

/* Change bullet points to blue */
.post-content ul li::marker,
.post-content ol li::marker {
    color: #4a9eff !important;
}

/* Force bullet points to blue */
.post-content ul li::before {
    color: #4a9eff !important;
}

.post-content ul {
    list-style: none;
}

.post-content ul li {
    position: relative;
    padding-left: 20px;
    color: #ffffff !important;
}

.post-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a9eff !important;
    font-weight: bold;
}

/* Change navigation menu links to blue */
.navigation-menu a {
    color: #4a9eff !important;
}

.navigation-menu a:hover {
    color: #6bb0ff !important;
}

/* Change vertical decorative lines to blue */
.header__logo::after {
    background: repeating-linear-gradient(90deg, #4a9eff, #4a9eff 2px, transparent 0, transparent 10px) !important;
}