/*
 Theme Name:     IndieWeb Twenty Fifteen Child
 Theme URI:      https://www.crystaltouchton.com
 Description:    IndieWeb Twenty Fifteen Child theme created from Chris Aldrich's Forked version of the Twenty Fifteen Theme.
 Author:         Chris Aldrich/Crystal Touchton
 Author URI:     https://boffosocko.com and https://www.crystaltouchton.com
 Template:       iwtwentyfifteen
 Version:        1.0.0
*/
 
/* =Theme customization starts here
------------------------------------------------------- */

 
.widget {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    word-wrap: normal;
}
 
.entry-content,
.entry-summary,
.page-content,
.comment-content {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    word-wrap: normal;
}
 
.type-attachment .entry-title {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    word-wrap: normal;
}
 
.entry-caption {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    word-wrap: normal;
-----------------------------
	/* Add an icon before Note titles */
.kind-note .entry-title:before {
	content: "\f304"; /* Dashicon: edit/pencil */
	font-family: dashicons;
	margin-right: 6px;
	color: var(--accent-color, #666);
}

/* Optional: style poetry notes a bit softer */
.category-poetry.kind-note .entry-content {
	text-align: center;
	font-style: italic;
	margin: 2em auto;
	max-width: 40ch;
}

.kind-header {
	display: flex;
	flex-direction: column;
	margin-bottom: 1em;
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.5em;
}

.kind-meta {
	display: flex;
	align-items: center;
	gap: 0.4em;
	font-weight: bold;
	text-transform: uppercase;
	color: #444;
	font-size: 0.9em;
	margin-bottom: 0.3em;
}

.kind-icon i {
	font-size: 1.1em;
	color: #777;
}

/* Poem kind header styling */
.kind-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5em;
}
.kind-meta {
    display: flex;
    align-items: center;
    gap: 0.4em;
    font-weight: bold;
    text-transform: uppercase;
    color: #444;
    font-size: 0.9em;
    margin-bottom: 0.3em;
}
.kind-icon i {
    font-size: 1.1em;
    color: #777;
}

/* Hide Post Kinds footer on Poem posts */
body.kind-poem .entry-footer,
body.kind-poem .entry-meta .post-kind,
body.kind-poem .entry-meta .kind-display {
    display: none !important;
}



	