/*
Theme Name: HellSlash
Theme URI: https://gigdq.xyz
Author: gigdq
Author URI: https://gigdq.xyz
Description: A deep sea reading & review theme.
Version: 1.0
text-domain: hellslash
*/

/* ==========================================================================
   HELLSLASH COLOR SYSTEM — Deep Sea & Review Theme
   Identical Hex codes to fsiwc.com, different semantics.
   ========================================================================== */
:root {
    --abyss-deep: #01060e;
    /* The deep sea background. Stillness. */
    --golden-whale: #ffb000;
    /* Accent color, the Golden Whale / Gold Fish. */
    --golden-whale-muted: #cda036;
    /* Muted gold for softer accents. */
    --iceberg-white: #fff8e7;
    /* Body text, average color of the universe, but here serving as the illuminated ice. */
    
    /* Legacy variables for compatibility from fsiwc (if needed) */
    --text-muted: #8a9bb2;
    --blood-moon: #bc002d;
    --earth-green: #27c93f;
    --ocean-glow: rgba(255, 176, 0, 0.2); /* golden glow */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--abyss-deep);
    color: var(--iceberg-white);
    font-family: 'Shippori Mincho', 'Noto Serif JP', 'Georgia', serif;
    font-size: 18px;
    line-height: 2.1;
    overflow-x: hidden;
    letter-spacing: 0.03em;
}

a {
    color: var(--golden-whale);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--iceberg-white);
    text-shadow: 0 0 10px var(--ocean-glow);
}

.iceberg-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.deep-header {
    border-bottom: 1px solid rgba(255, 248, 231, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    letter-spacing: 0.1em;
}

.site-title a {
    color: var(--iceberg-white);
}

.site-title a:hover {
    color: var(--golden-whale);
    text-shadow: none;
}

.site-description {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    /* Removed card attributes to let the text float in the deep sea */
}

.desc-line {
    margin: 0.8rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.desc-line span:first-child {
    font-weight: bold;
    min-width: 100px;
    text-align: right;
    color: var(--golden-whale-muted);
}

.desc-line.surface span:first-child {
    color: var(--iceberg-white);
}

.desc-line.surface {
    color: var(--iceberg-white);
    opacity: 0.9;
}

.desc-line.deep {
    color: var(--golden-whale-muted);
    font-style: italic;
    opacity: 0.8;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.main-nav {
    margin-top: 2rem;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 248, 231, 0.05);
}

.main-nav a {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
    background: var(--golden-whale-muted);
    color: var(--abyss-deep);
    box-shadow: 0 0 15px var(--ocean-glow);
}

/* ==========================================================================
   POSTS STREAM (BOOK REVIEW FORMAT)
   ========================================================================== */
.ocean-stream {
    flex: 1;
}

.stream-intro {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--iceberg-white);
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    position: relative;
    padding-bottom: 1rem;
}

.stream-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--golden-whale-muted);
}

.post-grid {
    display: grid;
    gap: 3rem;
}

.deep-entry {
    background: rgba(255, 248, 231, 0.02);
    border: 1px solid rgba(255, 248, 231, 0.05);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.deep-entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--golden-whale-muted);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.deep-entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 176, 0, 0.15); /* golden-whale glow */
    background: rgba(255, 248, 231, 0.04);
}

.deep-entry:hover::before {
    opacity: 1;
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.entry-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.entry-excerpt {
    color: var(--iceberg-white);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.dive-link {
    display: inline-block;
    border: 1px solid var(--golden-whale-muted);
    padding: 0.4rem 1.5rem;
    font-size: 0.95rem;
    color: var(--golden-whale-muted);
    border-radius: 2px;
}

.dive-link:hover {
    background: var(--golden-whale-muted);
    color: var(--abyss-deep);
}

.entry-thumbnail-wrap {
    margin-bottom: 2rem;
}

.entry-thumbnail-wrap img {
    width: 100%;
    height: auto;
    filter: brightness(0.85) sepia(0.2) hue-rotate(180deg);
    transition: filter 1s ease;
}

.entry-thumbnail-wrap:hover img {
    filter: brightness(1) sepia(0) hue-rotate(0deg);
}

/* ==========================================================================
   SINGLE POST
   ========================================================================== */
.single-stream .deep-entry {
    background: transparent;
    border: none;
    padding: 2rem 0;
    box-shadow: none;
    transform: none;
}

.single-stream .deep-entry:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
    background: transparent;
}

.single-stream .deep-entry::before {
    display: none;
}

.single-full-content {
    margin-top: 3rem;
    font-size: 1.15rem;
    line-height: 2.2;
}



.single-full-content p {
    margin-bottom: 2.5rem;
}

.single-full-content h2,
.single-full-content h3 {
    color: var(--golden-whale);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 176, 0, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.single-full-content blockquote {
    background: rgba(255, 248, 231, 0.03);
    border-left: 3px solid var(--golden-whale-muted);
    padding: 2rem;
    margin: 3rem 0;
    color: var(--text-muted);
    font-style: italic;
    border-radius: 0 4px 4px 0;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.single-full-content blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: 5px;
    left: 10px;
    color: rgba(255, 176, 0, 0.1);
    font-family: Georgia, serif;
}

/* ==========================================================================
   AUTHOR PROFILE (OBSERVER)
   ========================================================================== */
.author-abyss {
    margin-top: 4rem;
    padding: 2.5rem;
    border: 1px solid rgba(205, 160, 54, 0.2);
    background: linear-gradient(145deg, rgba(1, 6, 14, 0.95), rgba(1, 10, 25, 0.8));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(205, 160, 54, 0.05);
    border-left: 4px solid var(--golden-whale);
    border-radius: 6px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.author-abyss::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 176, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.author-title {
    color: var(--golden-whale);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    font-family: 'Shippori Mincho', serif;
    border-bottom: 1px solid rgba(255, 176, 0, 0.2);
    padding-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.author-title::before {
    content: '◇';
    margin-right: 10px;
    font-size: 0.8rem;
}

.author-info {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-avatar img {
    border-radius: 50% !important;
    border: 3px solid rgba(205, 160, 54, 0.3) !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.author-abyss:hover .author-avatar img {
    border-color: var(--golden-whale);
    box-shadow: 0 0 30px var(--ocean-glow);
    transform: rotate(-5deg) scale(1.08);
}

.author-name {
    font-size: 1.6rem;
    color: var(--iceberg-white);
    margin-bottom: 0.6rem;
    font-family: 'Shippori Mincho', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 8px rgba(205, 160, 54, 0.2);
    letter-spacing: 0.05em;
}

.author-bio {
    color: rgba(255, 248, 231, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.author-stats {
    display: inline-block;
    color: var(--abyss-deep);
    background: var(--golden-whale-muted);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(205, 160, 54, 0.2);
}

@media (max-width: 768px) {
    .author-info {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   COMMENTS (RESEARCH LOGS)
   ========================================================================== */
.comments-area {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(205, 160, 54, 0.3);
    position: relative;
}

.comments-area::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--golden-whale);
    box-shadow: 0 0 15px var(--ocean-glow);
}

.comments-title {
    font-size: 1.8rem;
    color: var(--golden-whale);
    margin-bottom: 3rem;
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    letter-spacing: 0.15em;
    text-shadow: 0 0 10px rgba(205, 160, 54, 0.2);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    background: linear-gradient(to right, rgba(255, 248, 231, 0.04), rgba(255, 248, 231, 0.01));
    border: 1px solid rgba(255, 248, 231, 0.08);
    border-left: 3px solid rgba(255, 248, 231, 0.2);
    padding: 2.5rem 3rem;
    margin-bottom: 2.5rem;
    border-radius: 2px 8px 8px 2px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.comment:hover {
    border-left-color: var(--golden-whale-muted);
    background: linear-gradient(to right, rgba(255, 248, 231, 0.06), rgba(255, 248, 231, 0.02));
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(205, 160, 54, 0.03);
}

.comment::before {
    content: '¶';
    position: absolute;
    top: -18px;
    left: 30px;
    background: var(--abyss-deep);
    padding: 0 15px;
    color: var(--golden-whale-muted);
    font-family: Georgia, serif;
    font-size: 1.5rem;
    border-radius: 50%;
    border: 1px solid rgba(205, 160, 54, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.comment:hover::before {
    color: var(--golden-whale);
    border-color: var(--golden-whale);
    text-shadow: 0 0 10px var(--ocean-glow);
}

.comment-author {
    color: var(--iceberg-white);
    font-size: 1.2rem;
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-author img {
    border-radius: 50%;
    border: 2px solid rgba(205, 160, 54, 0.4);
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--golden-whale-muted);
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(255, 248, 231, 0.1);
    padding-bottom: 1rem;
    letter-spacing: 0.05em;
    font-family: 'JetBrains Mono', monospace;
}

.comment-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 248, 231, 0.9);
    font-family: 'Noto Serif JP', serif;
}

/* --------------------------------------------------------------------------
   COMMENT FORM
   -------------------------------------------------------------------------- */
.comment-respond {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(1, 6, 14, 0.8), rgba(1, 10, 25, 0.6));
    border: 1px solid rgba(205, 160, 54, 0.2);
    border-radius: 4px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.comment-reply-title {
    font-size: 1.5rem;
    color: var(--golden-whale);
    margin-bottom: 2rem;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.1em;
    border-bottom: 1px dashed rgba(205, 160, 54, 0.3);
    padding-bottom: 0.8rem;
    display: inline-block;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    color: var(--golden-whale-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 248, 231, 0.1);
    color: var(--iceberg-white);
    padding: 1rem;
    border-radius: 2px;
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--golden-whale);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(205, 160, 54, 0.1);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form .submit {
    background: var(--abyss-deep);
    color: var(--golden-whale);
    border: 1px solid var(--golden-whale);
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-family: 'Shippori Mincho', serif;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.comment-form .submit:hover {
    background: var(--golden-whale);
    color: var(--abyss-deep);
    box-shadow: 0 0 20px var(--ocean-glow);
    transform: translateY(-2px);
}

.comment-notes,
.logged-in-as {
    color: rgba(255, 248, 231, 0.6);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.comment-notes .required {
    color: var(--golden-whale);
}

/* Custom Checkbox for Comment Cookies Consent */
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    color: rgba(255, 248, 231, 0.7);
    font-size: 0.9rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 176, 0, 0.4);
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    cursor: pointer;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    margin: 0;
    flex-shrink: 0;
    padding: 0;
}

.comment-form-cookies-consent input[type="checkbox"]:hover {
    border-color: var(--golden-whale);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(205, 160, 54, 0.2);
}

.comment-form-cookies-consent input[type="checkbox"]:checked {
    background: rgba(255, 176, 0, 0.15);
    border-color: var(--golden-whale);
    box-shadow: 0 0 10px rgba(255, 176, 0, 0.3);
}

.comment-form-cookies-consent input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--golden-whale);
    font-size: 14px;
    text-shadow: 0 0 5px var(--golden-whale);
}

.comment-form-cookies-consent label {
    display: inline;
    margin: 0;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.comment-form-cookies-consent:hover label {
    color: var(--iceberg-white);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination {
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255, 248, 231, 0.1);
    padding-top: 2rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.page-numbers {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 248, 231, 0.2);
    color: var(--text-muted);
}

.page-numbers.current,
.page-numbers:hover {
    border-color: var(--golden-whale-muted);
    color: var(--golden-whale);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.deep-footer {
    text-align: center;
    padding: 3rem 1rem;
    border-top: 1px dashed rgba(255, 248, 231, 0.2);
    margin-top: auto;
    background: linear-gradient(to top, rgba(1, 6, 14, 1), rgba(1, 6, 14, 0));
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--iceberg-white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-nav a:hover {
    color: var(--golden-whale);
    text-shadow: 0 0 8px rgba(205, 160, 54, 0.5);
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 248, 231, 0.6);
    letter-spacing: 0.1em;
}

.mythos-subtext {
    font-family: 'Shippori Mincho', serif;
    font-style: italic;
    color: var(--golden-whale-muted) !important;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.deep-breadcrumbs {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: rgba(255, 248, 231, 0.6);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 248, 231, 0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
}

.deep-breadcrumbs a {
    color: var(--golden-whale-muted);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.deep-breadcrumbs a:hover {
    color: var(--golden-whale);
    text-shadow: 0 0 8px rgba(205, 160, 54, 0.6);
}

.deep-breadcrumbs .sep {
    margin: 0 0.8rem;
    color: rgba(255, 248, 231, 0.3);
    font-size: 0.8rem;
}

.deep-breadcrumbs .bc-current {
    color: var(--iceberg-white);
}

/* ==========================================================================
   SITEMAP
   ========================================================================== */
.sitemap-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid var(--golden-whale-muted);
    border-radius: 0 4px 4px 0;
}

.sitemap-title {
    font-size: 1.5rem;
    color: var(--golden-whale);
    margin-bottom: 1.5rem;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.1em;
    border-bottom: 1px dashed rgba(205, 160, 54, 0.3);
    padding-bottom: 0.8rem;
    display: inline-block;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.sitemap-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--golden-whale-muted);
    font-family: monospace;
}

.sitemap-list a {
    color: var(--iceberg-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.sitemap-list a:hover {
    color: var(--golden-whale);
    border-bottom-color: var(--golden-whale);
    text-shadow: 0 0 5px rgba(205, 160, 54, 0.4);
}

.sitemap-list .children {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.8rem;
}

/* ==========================================================================
   BACKGROUND (MARINE SNOW / DEEP SEA GRADIENT)
   ========================================================================== */
.marine-snow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(1, 6, 14, 0.8) 0%, var(--abyss-deep) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Canvas styling generated by JS for marine snow */
#marine-snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }
    
    .deep-entry {
        padding: 1.5rem;
    }

    .single-stream .deep-entry {
        padding: 2rem;
    }

    .single-full-content > p:first-of-type::first-letter {
        font-size: 2.5rem;
    }
}
