/*
Theme Name: Cornical Hub Theme
Theme URI: https://cornicalhub.com
Author: Cornical Hub
Author URI: https://cornicalhub.com
Description: A premium AI-focused theme converted from React.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cornical-hub
Tags: dark, ai, tech, modern
*/

/* ==========================================================================
   Basic Typography & Formatting for Content (.entry-content)
   since Tailwind removes default styles.
   ========================================================================== */

.entry-content {
    color: #d1d5db; /* gray-300 */
    line-height: 1.75;
}

.entry-content h1, 
.entry-content h2, 
.entry-content h3, 
.entry-content h4, 
.entry-content h5, 
.entry-content h6 {
    color: #ffffff;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 0.75em;
    line-height: 1.3;
}

.entry-content h1 { font-size: 2.25rem; }
.entry-content h2 { font-size: 1.875rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.3em; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content ul, 
.entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.6em;
}

.entry-content ul {
    list-style-type: disc;
}
.entry-content ul ul {
    list-style-type: circle;
    margin-top: 0.5em;
}

.entry-content ol {
    list-style-type: decimal;
}

.entry-content a {
    color: #22d3ee; /* cyan-400 */
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.entry-content a:hover {
    border-bottom-color: #22d3ee;
}

.entry-content blockquote {
    border-left: 4px solid #22d3ee;
    background: rgba(34, 211, 238, 0.05); /* very light cyan tint */
    padding: 1em 1.5em;
    margin: 1.5em 0;
    font-style: italic;
    color: #9ca3af; /* gray-400 */
    border-radius: 0 0.5rem 0.5rem 0;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.5em 0;
    display: block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.entry-content figure {
    margin: 1.5em 0;
}

.entry-content figcaption {
    font-size: 0.875rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 0.5em;
}

.entry-content hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 3em 0;
}

.entry-content pre {
    background: #111827; /* gray-900 */
    padding: 1.25em;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1.5em;
    border: 1px solid rgba(255,255,255,0.1);
}

.entry-content code {
    background: rgba(255,255,255,0.1);
    padding: 0.2em 0.4em;
    border-radius: 0.25em;
    font-family: monospace;
    font-size: 0.9em;
    color: #e5e7eb;
}

.entry-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: 0.875rem;
}

/* Alignments */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}
.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}