/* Base typography enhancements for single posts/pages */
body.single,
body.page {
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    color: #111827;
}

/* Styling for h2 elements inside post content */
h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0078d7; /* Technology-inspired blue */
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-bottom: 2px solid #0078d7;
    padding-bottom: 0.5rem;
}

/* Styling for h3 elements */
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0056a3; /* Slightly darker blue */
    margin-bottom: 0.75rem;
    text-transform: capitalize;
}


/* Add spacing between sections */
section {
    margin-bottom: 2rem;
}

/* Additional styling for a tech-inspired look */
h2, h3 {
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

p code {
    background-color: #f4f4f4;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #d63384; /* Highlighted code color */
}

/* Styling for links */
a {
    color: #0078d7;
    text-decoration: none;
}

a:hover {
    color: #0056a3;
    border-bottom: 1px solid #0056a3;
}

/* Styling for wp-block-list class */
.wp-block-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.wp-block-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.wp-block-list li::marker {
    color: #0078d7; /* Technology-inspired blue for list markers */
    font-size: 1.2rem;
}

.wp-block-list li a {
    color: #0078d7;
    text-decoration: underline;
}

.wp-block-list li a:hover {
    color: #0056a3;
    text-decoration: none;
}