/*
Theme Name: Krafty Sprouts Media, LLC - Holding Theme
Theme URI: https://kraftysprouts.com/themes/holding
Author: Krafty Sprouts Media, LLC
Author URI: https://kraftysprouts.com
Description: Industrial, brutalist WordPress theme for media holdings and portfolio showcase. Features monospace typography, generous spacing, and a data-driven aesthetic.
Version: 1.9.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: holding-theme
Tags: portfolio, business, blog, custom-post-types, custom-menu, featured-images, threaded-comments, translation-ready

Krafty Sprouts Media, LLC - Holding Theme, Copyright 2025 Krafty Sprouts Media, LLC
Krafty Sprouts Media, LLC - Holding Theme is distributed under the terms of the GNU GPL
*/

/**
 * Theme uses Tailwind CSS via CDN
 * Main styles are handled by Tailwind utility classes
 * This file contains theme header and custom typography
 */

/**
 * Article Body Typography
 * Custom styles for single post content
 *
 * @since 1.7.0
 */

/* Paragraphs */
.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Headings */
.article-body h1 {
    font-family: monospace;
    font-weight: bold;
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.article-body h2 {
    font-family: monospace;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.article-body h3 {
    font-family: monospace;
    font-weight: bold;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.article-body h4 {
    font-family: monospace;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.article-body h5,
.article-body h6 {
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Blockquotes */
.article-body blockquote {
    border-left: 3px solid black;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-weight: bold;
    font-size: 1.1rem;
}

.article-body blockquote p {
    margin-bottom: 0;
}

.article-body blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: normal;
    font-style: normal;
    color: #666;
}

/* Lists */
.article-body ul {
    list-style-type: disc;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body ol {
    list-style-type: decimal;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.article-body li ul,
.article-body li ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Links */
.article-body a {
    text-decoration: underline;
    color: inherit;
}

.article-body a:hover {
    opacity: 0.7;
}

/* Images */
.article-body img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border: 1px solid #e5e5e5;
}

/* Figures and Captions */
.article-body figure {
    margin: 2rem 0;
}

.article-body figcaption,
.article-body .wp-caption-text {
    font-family: monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e5e5;
}

/* Code */
.article-body code {
    font-family: monospace;
    background-color: #f5f5f5;
    padding: 0.125rem 0.375rem;
    font-size: 0.875em;
    border: 1px solid #e5e5e5;
}

.article-body pre {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid black;
}

.article-body pre code {
    background: none;
    padding: 0;
    border: none;
    color: inherit;
}

/* Tables */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.article-body th,
.article-body td {
    border: 1px solid black;
    padding: 0.75rem;
    text-align: left;
}

.article-body th {
    background-color: #f0f0f0;
    font-family: monospace;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.article-body tr:hover {
    background-color: #fafafa;
}

/* Horizontal Rule */
.article-body hr {
    border: none;
    border-top: 1px solid black;
    margin: 2rem 0;
}

/* Definition Lists */
.article-body dl {
    margin-bottom: 1.5rem;
}

.article-body dt {
    font-family: monospace;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.article-body dd {
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* WordPress Alignment Classes */
.article-body .alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.article-body .alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.article-body .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.article-body .alignwide {
    margin-left: -2rem;
    margin-right: -2rem;
    max-width: calc(100% + 4rem);
}

.article-body .alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
}

/* WordPress Gallery */
.article-body .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.article-body .gallery-item {
    margin: 0;
}

.article-body .gallery-icon img {
    margin: 0;
    border: 1px solid black;
}

/* Embed and Video */
.article-body iframe,
.article-body video,
.article-body embed,
.article-body object {
    max-width: 100%;
    margin: 1.5rem 0;
}

.article-body .wp-block-embed {
    margin: 2rem 0;
}

/* Pull Quotes */
.article-body .wp-block-pullquote {
    border-top: 3px solid black;
    border-bottom: 3px solid black;
    padding: 1.5rem 0;
    margin: 2rem 0;
    text-align: center;
}

.article-body .wp-block-pullquote blockquote {
    border: none;
    padding: 0;
    margin: 0;
}

.article-body .wp-block-pullquote p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Separator */
.article-body .wp-block-separator {
    border: none;
    border-top: 2px solid black;
    margin: 2.5rem auto;
    width: 100px;
}

.article-body .wp-block-separator.is-style-wide {
    width: 100%;
}

.article-body .wp-block-separator.is-style-dots {
    border: none;
    text-align: center;
}

.article-body .wp-block-separator.is-style-dots::before {
    content: "···";
    font-size: 1.5rem;
    letter-spacing: 1rem;
}