/* Custom Contact Button Styles */
.contact-btn-solid {
    background-color: var(--color-bg);
    color: var(--color-ink);
    border-color: transparent;
}
.contact-btn-solid:hover {
    background-color: var(--color-accent-200);
    color: var(--color-ink); /* Forces text to stay the ink color */
}
.contact-btn-outline {
    border-color: #191110;
    color: #191110;
}
.contact-btn-outline:hover {
    background-color: color-mix(in srgb, #191110 18%, transparent);
    color: #191110; /* Forces text to stay the dark color */
}

/* Blog Post Content Styles */
.post-content p {
    margin-bottom: 1rem; /* Tightened up from 1.5rem */
}
.post-content p:empty, 
.post-content br {
    display: none !important; /* Hides WordPress's automatic empty spaces and line breaks */
}
.post-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.post-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.post-content li {
    margin-bottom: 0.5rem;
}
.post-content hr {
    margin: 2rem 0;
    border-color: var(--color-divider);
    border-top-width: 2px;
}

/* WordPress Comment Form Styles */
#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    background-color: var(--color-surface); /* Uses your slightly lighter dark shade */
    border: 1px solid var(--color-divider); /* Uses your theme's divider color */
    color: var(--color-ink);
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 16px;
    border-radius: 0;
}

#respond textarea:focus,
#respond input:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Style the Submit Button to match your other primary buttons */
#respond .form-submit input[type="submit"] {
    background-color: var(--color-accent);
    color: #191110 !important;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

#respond .form-submit input[type="submit"]:hover {
    background-color: var(--color-accent-600);
}

/* Custom Spacing */
.mb-12 { margin-bottom: 3rem !important; }
.mb-16 { margin-bottom: 4rem !important; }

