/**
 * Post Title & Hero Widget Styles
 * 
 * @package Bith_Core
 * @version 1.0.0
 */

/* ==========================================================================
   CSS Variables & Base Styles
   ========================================================================== */
.bith-post-title-hero {
    --_hero-primary: var(--bith-widget-primary, #4FD1C5);
    --_hero-secondary: var(--bith-widget-secondary, #805AD5);
    --_hero-accent: var(--bith-widget-accent, #F56565);
    --_hero-text: var(--bith-widget-text-body, #4A5568);
    --_hero-heading: var(--bith-widget-text-heading, #1A202C);
    --_hero-muted: var(--bith-widget-text-muted, #718096);
    --_hero-bg: var(--bith-widget-bg-primary, #FFFFFF);
    --_hero-bg-dark: var(--bith-widget-bg-secondary, #0F172A);
    --_hero-overlay: rgba(15, 23, 42, 0.7);
    --_hero-radius: var(--bith-widget-radius-lg, 16px);
    --_hero-radius-sm: var(--bith-widget-radius-sm, 8px);
    --_hero-transition: var(--bith-widget-transition-normal, 0.3s ease);
    --_hero-shadow: var(--bith-widget-shadow-lg, 0 10px 40px rgba(0, 0, 0, 0.15));
    --_hero-font-heading: var(--bith-widget-font-heading, 'Inter', sans-serif);
    --_hero-font-body: var(--bith-widget-font-body, 'Inter', sans-serif);

    position: relative;
    width: 100%;
    font-family: var(--_hero-font-body);
}

.post-hero {
    position: relative;
    width: 100%;
}

/* ==========================================================================
   Common Elements
   ========================================================================== */

/* Title */
.post-hero__title {
    font-family: var(--_hero-font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--_hero-heading);
    letter-spacing: -0.02em;
}

/* Excerpt */
.post-hero__excerpt {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--_hero-muted);
    margin: 0 0 1.5rem;
    max-width: 680px;
}

/* Meta */
.post-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--_hero-muted);
}

.post-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.post-hero__meta-item a {
    color: inherit;
    text-decoration: none;
    transition: color var(--_hero-transition);
}

.post-hero__meta-item a:hover {
    color: var(--_hero-primary);
}

.post-hero__meta-separator {
    opacity: 0.4;
}

.meta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Category Badges */
.post-hero__category-badge,
.post-hero__category-pill,
.post-hero__category-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    background: var(--_hero-primary);
    color: #fff;
    text-decoration: none;
    transition: all var(--_hero-transition);
}

.post-hero__category-badge:hover,
.post-hero__category-pill:hover,
.post-hero__category-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 209, 197, 0.3);
}

/* Author Avatar */
.post-hero__author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--_hero-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-hero__author-name {
    font-weight: 600;
    color: var(--_hero-heading);
}

.post-hero__author-role,
.post-hero__author-bio,
.post-hero__author-title {
    font-size: 0.8125rem;
    color: var(--_hero-muted);
}

/* Breadcrumbs */
.post-hero__breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
}

.post-hero__breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-hero__breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--_hero-muted);
}

.post-hero__breadcrumbs li:not(:last-child)::after {
    content: '/';
    opacity: 0.5;
}

.post-hero__breadcrumbs a {
    color: var(--_hero-muted);
    text-decoration: none;
    transition: color var(--_hero-transition);
}

.post-hero__breadcrumbs a:hover {
    color: var(--_hero-primary);
}

/* Dividers */
.post-hero__divider,
.post-hero__card-divider,
.post-hero__minimal-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--_hero-primary), transparent);
    margin: 1.5rem 0;
}

/* Image Wrapper */
.post-hero__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--_hero-radius);
}

.post-hero__image-wrapper img,
.post-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-hero__image-wrapper:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   SKIN 1: Standard Blog
   ========================================================================== */
.skin-standard .post-hero__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.skin-standard .post-hero__image-wrapper {
    margin-bottom: 2rem;
    min-height: 400px;
}

.skin-standard .post-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.skin-standard .post-hero__meta {
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   SKIN 2: Full Background Overlay
   ========================================================================== */
.skin-overlay .post-hero__background {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.skin-overlay .post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
    pointer-events: none;
}

.skin-overlay .post-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: #fff;
}

.skin-overlay .post-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    max-width: 900px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.skin-overlay .post-hero__excerpt {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
}

.skin-overlay .post-hero__meta {
    color: rgba(255, 255, 255, 0.8);
}

.skin-overlay .post-hero__meta a {
    color: #fff;
}

.skin-overlay .post-hero__breadcrumbs,
.skin-overlay .post-hero__breadcrumbs li,
.skin-overlay .post-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.skin-overlay .post-hero__author-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.skin-overlay .post-hero__author-avatar {
    border-color: rgba(255, 255, 255, 0.3);
}

.skin-overlay .post-hero__author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.skin-overlay .post-hero__author-name {
    color: #fff;
    font-weight: 600;
}

.skin-overlay .post-hero__read-time {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   SKIN 3: Split Screen Editorial
   ========================================================================== */
.skin-split .post-hero__split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    gap: 0;
}

.skin-split .post-hero__split-image {
    position: relative;
    overflow: hidden;
}

.skin-split .post-hero__split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skin-split .post-hero__split-image:hover img {
    transform: scale(1.05);
}

.skin-split .post-hero__image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--_hero-primary), var(--_hero-secondary));
}

.skin-split .post-hero__split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--_hero-bg);
}

.skin-split .post-hero__category-tag {
    align-self: flex-start;
    margin-bottom: 1.5rem;
    background: transparent;
    color: var(--_hero-primary);
    border: 1px solid var(--_hero-primary);
}

.skin-split .post-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.skin-split .post-hero__author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skin-split .post-hero__author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.skin-split .post-hero__meta-group {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

@media (max-width: 991px) {
    .skin-split .post-hero__split-container {
        grid-template-columns: 1fr;
    }

    .skin-split .post-hero__split-image {
        min-height: 50vh;
    }

    .skin-split .post-hero__split-content {
        padding: 2rem;
    }
}

/* ==========================================================================
   SKIN 4: Bottom Gradient Fade
   ========================================================================== */
.skin-gradient-fade .post-hero__gradient-container {
    position: relative;
}

.skin-gradient-fade .post-hero__gradient-image {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
}

.skin-gradient-fade .post-hero__gradient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.skin-gradient-fade .post-hero__gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--_hero-bg-dark) 0%, rgba(15, 23, 42, 0.8) 30%, transparent 60%);
}

.skin-gradient-fade .post-hero__gradient-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem;
    color: #fff;
    max-width: 1000px;
}

.skin-gradient-fade .post-hero__category-pill {
    margin-bottom: 1rem;
}

.skin-gradient-fade .post-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
}

.skin-gradient-fade .post-hero__meta-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.skin-gradient-fade .post-hero__meta-inline .post-hero__author-avatar {
    width: 40px;
    height: 40px;
}

.skin-gradient-fade .post-hero__excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.5rem;
}

.skin-gradient-fade .post-hero__breadcrumbs,
.skin-gradient-fade .post-hero__breadcrumbs li,
.skin-gradient-fade .post-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   SKIN 5: Floating Card
   ========================================================================== */
.skin-floating-card {
    position: relative;
}

.skin-floating-card .post-hero__floating-wrapper {
    position: relative;
    padding: 4rem 2rem 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skin-floating-card .post-hero__floating-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.skin-floating-card .post-hero__floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
    transform: scale(1.1);
}

.skin-floating-card .post-hero__floating-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
}

.skin-floating-card .post-hero__floating-card {
    position: relative;
    z-index: 2;
    background: var(--_hero-bg);
    border-radius: var(--_hero-radius);
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    box-shadow: var(--_hero-shadow), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.skin-floating-card .post-hero__category-wrapper {
    margin-bottom: 1.5rem;
}

.skin-floating-card .post-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.skin-floating-card .post-hero__card-divider {
    background: linear-gradient(90deg, var(--_hero-primary), var(--_hero-secondary), transparent);
    height: 2px;
}

.skin-floating-card .post-hero__author-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skin-floating-card .post-hero__author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.skin-floating-card .post-hero__meta-stats {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.skin-floating-card .post-hero__meta-stats .post-hero__meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(79, 209, 197, 0.08);
    border-radius: var(--_hero-radius-sm);
}

.skin-floating-card .post-hero__meta-stats .meta-icon {
    color: var(--_hero-primary);
}

.skin-floating-card .post-hero__pattern-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(circle at 20% 50%, rgba(79, 209, 197, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(128, 90, 213, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* ==========================================================================
   SKIN 6: Minimalist Typography
   ========================================================================== */
.skin-minimalist .post-hero__minimal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.skin-minimalist .post-hero__title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1.05;
    margin-bottom: 2rem;
}

.skin-minimalist .post-hero__title-line {
    display: block;
}

.skin-minimalist .post-hero__title-line--accent {
    color: var(--_hero-primary);
    font-style: normal;
}

.skin-minimalist .post-hero__title-line--italic {
    font-style: italic;
    font-weight: 400;
}

.skin-minimalist .post-hero__subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--_hero-muted);
}

.skin-minimalist .post-hero__author-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.skin-minimalist .post-hero__author-tiny {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.skin-minimalist .post-hero__author-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.skin-minimalist .post-hero__written-by {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--_hero-muted);
}

.skin-minimalist .post-hero__author-name {
    font-weight: 600;
    color: var(--_hero-heading);
    text-decoration: none;
}

.skin-minimalist .post-hero__meta-minimal {
    display: flex;
    gap: 1rem;
}

.skin-minimalist .post-hero__minimal-line {
    max-width: 200px;
    margin: 3rem auto;
    background: linear-gradient(90deg, transparent, var(--_hero-primary), transparent);
}

.skin-minimalist .post-hero__category-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--_hero-muted);
    font-weight: 500;
}

/* ==========================================================================
   SKIN 7: Glassmorphism Header
   ========================================================================== */
.skin-glass .post-hero__glass-container {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.skin-glass .post-hero__glass-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
}

.skin-glass .post-hero__glass-card {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: calc(var(--_hero-radius) * 1.5);
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.skin-glass .post-hero__glass-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.skin-glass .post-hero__glass-glow--top {
    top: -50px;
    right: -50px;
    background: var(--_hero-primary);
    opacity: 0.4;
}

.skin-glass .post-hero__glass-glow--bottom {
    bottom: -50px;
    left: -50px;
    background: var(--_hero-secondary);
    opacity: 0.4;
}

.skin-glass .post-hero__glass-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.skin-glass .post-hero__glass-category {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.skin-glass .post-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.skin-glass .post-hero__excerpt {
    color: rgba(255, 255, 255, 0.85);
}

.skin-glass .post-hero__breadcrumbs,
.skin-glass .post-hero__breadcrumbs li,
.skin-glass .post-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.skin-glass .post-hero__author-glass {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skin-glass .post-hero__author-avatar {
    border-color: rgba(255, 255, 255, 0.3);
}

.skin-glass .post-hero__author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.skin-glass .post-hero__author-name {
    color: #fff;
}

.skin-glass .post-hero__author-title {
    color: rgba(255, 255, 255, 0.7);
}

.skin-glass .post-hero__meta-pills {
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.skin-glass .post-hero__meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
}

.skin-glass .post-hero__glass-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.skin-glass .post-hero__glass-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

.skin-glass .post-hero__glass-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.skin-glass .post-hero__glass-particles span:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
}

.skin-glass .post-hero__glass-particles span:nth-child(3) {
    left: 60%;
    top: 40%;
    animation-delay: 4s;
}

.skin-glass .post-hero__glass-particles span:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 6s;
}

.skin-glass .post-hero__glass-particles span:nth-child(5) {
    left: 90%;
    top: 30%;
    animation-delay: 8s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-30px) translateX(20px);
        opacity: 1;
    }
}

/* ==========================================================================
   SKIN 8: Parallax Hero
   ========================================================================== */
.skin-parallax .post-hero__parallax-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.skin-parallax .post-hero__parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(79, 209, 197, 0.2) 100%);
}

.skin-parallax .post-hero__parallax-content {
    position: relative;
    z-index: 2;
    padding: 4rem;
    color: #fff;
    max-width: 1000px;
}

.skin-parallax .post-hero__parallax-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.skin-parallax .post-hero__title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    line-height: 1.1;
}

.skin-parallax .post-hero__excerpt {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
}

.skin-parallax .post-hero__breadcrumbs,
.skin-parallax .post-hero__breadcrumbs li,
.skin-parallax .post-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.skin-parallax .post-hero__parallax-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skin-parallax .post-hero__author-avatar {
    border-color: rgba(255, 255, 255, 0.3);
}

.skin-parallax .post-hero__author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.skin-parallax .post-hero__author-name {
    color: #fff;
}

.skin-parallax .post-hero__author-role {
    color: rgba(255, 255, 255, 0.7);
}

.skin-parallax .post-hero__meta-row {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.skin-parallax .post-hero__meta-item {
    color: rgba(255, 255, 255, 0.85);
}

.skin-parallax .post-hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

.skin-parallax .post-hero__scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.skin-parallax .post-hero__scroll-arrow svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==========================================================================
   SKIN 9: Diagonal Cutout
   ========================================================================== */
.skin-diagonal .post-hero__diagonal-container {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 80vh;
    position: relative;
}

.skin-diagonal .post-hero__diagonal-image {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.skin-diagonal .post-hero__diagonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skin-diagonal .post-hero__diagonal-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 70%, rgba(79, 209, 197, 0.3) 100%);
}

.skin-diagonal .post-hero__diagonal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.skin-diagonal .post-hero__diagonal-category {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: var(--_hero-primary);
    color: #fff;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-self: flex-start;
    margin-bottom: 1.5rem;
}

.skin-diagonal .post-hero__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.skin-diagonal .post-hero__diagonal-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(79, 209, 197, 0.1);
    line-height: 1;
    pointer-events: none;
}

.skin-diagonal .post-hero__author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skin-diagonal .post-hero__author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.skin-diagonal .post-hero__meta-group {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

@media (max-width: 991px) {
    .skin-diagonal .post-hero__diagonal-container {
        grid-template-columns: 1fr;
    }

    .skin-diagonal .post-hero__diagonal-image {
        clip-path: none;
        min-height: 50vh;
    }

    .skin-diagonal .post-hero__diagonal-content {
        padding: 2rem;
    }

    .skin-diagonal .post-hero__diagonal-number {
        font-size: 5rem;
    }
}

/* ==========================================================================
   SKIN 10: Cinematic Bars
   ========================================================================== */
.skin-cinematic .post-hero__cinematic-container {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.skin-cinematic .post-hero__cinematic-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.9) 100%);
}

.skin-cinematic .post-hero__cinematic-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: #000;
    z-index: 3;
}

.skin-cinematic .post-hero__cinematic-bar--top {
    top: 0;
}

.skin-cinematic .post-hero__cinematic-bar--bottom {
    bottom: 0;
}

.skin-cinematic .post-hero__cinematic-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 2;
}

.skin-cinematic .post-hero__cinematic-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 4rem 2rem;
}

.skin-cinematic .post-hero__cinematic-category {
    display: inline-block;
    padding: 0.25rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.skin-cinematic .post-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 300;
}

.skin-cinematic .post-hero__excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.skin-cinematic .post-hero__cinematic-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.skin-cinematic .post-hero__author-avatar {
    width: 50px;
    height: 50px;
    border-color: var(--_hero-accent);
}

.skin-cinematic .post-hero__meta-text {
    text-align: left;
}

.skin-cinematic .post-hero__author-name {
    color: #fff;
    font-weight: 500;
}

.skin-cinematic .post-hero__meta-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.skin-cinematic .post-hero__meta-dot {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.skin-cinematic .post-hero__cinematic-play {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--_hero-accent);
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: all var(--_hero-transition);
    box-shadow: 0 0 30px rgba(245, 101, 101, 0.4);
}

.skin-cinematic .post-hero__cinematic-play:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 50px rgba(245, 101, 101, 0.6);
}

.skin-cinematic .post-hero__cinematic-play svg {
    width: 20px;
    height: 20px;
    color: #fff;
    margin-left: 3px;
}

/* ==========================================================================
   SKIN 11: Neon Glow
   ========================================================================== */
.skin-neon .post-hero__neon-container {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0f;
    overflow: hidden;
}

.skin-neon .post-hero__neon-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: saturate(0.5);
}

.skin-neon .post-hero__neon-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 209, 197, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 209, 197, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 500px;
    transform: rotateX(60deg) translateY(-50%);
    transform-origin: center bottom;
}

.skin-neon .post-hero__neon-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: neon-pulse 8s infinite ease-in-out;
}

.skin-neon .post-hero__neon-orb--1 {
    width: 400px;
    height: 400px;
    background: var(--_hero-primary);
    opacity: 0.3;
    top: -100px;
    left: -100px;
}

.skin-neon .post-hero__neon-orb--2 {
    width: 300px;
    height: 300px;
    background: var(--_hero-secondary);
    opacity: 0.3;
    bottom: -50px;
    right: -50px;
    animation-delay: 4s;
}

@keyframes neon-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.skin-neon .post-hero__neon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 4rem 2rem;
}

.skin-neon .post-hero__neon-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--_hero-primary);
    color: var(--_hero-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 0 10px var(--_hero-primary);
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.3), inset 0 0 20px rgba(79, 209, 197, 0.1);
}

.skin-neon .post-hero__title--neon {
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: #fff;
    line-height: 1.1;
}

.skin-neon .post-hero__neon-line {
    display: block;
}

.skin-neon .post-hero__neon-line--glow {
    color: var(--_hero-primary);
    text-shadow: 0 0 30px var(--_hero-primary), 0 0 60px var(--_hero-primary);
}

.skin-neon .post-hero__excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin: 2rem auto;
}

.skin-neon .post-hero__neon-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.skin-neon .post-hero__neon-avatar-ring {
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--_hero-primary), var(--_hero-secondary));
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.5);
}

.skin-neon .post-hero__neon-avatar-ring .post-hero__author-avatar {
    border: 2px solid #0a0a0f;
}

.skin-neon .post-hero__author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.skin-neon .post-hero__author-name {
    color: #fff;
}

.skin-neon .post-hero__author-role {
    color: rgba(255, 255, 255, 0.6);
}

.skin-neon .post-hero__neon-stats {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.skin-neon .post-hero__neon-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(79, 209, 197, 0.1);
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: 4px;
    font-size: 0.8125rem;
    color: var(--_hero-primary);
}

.skin-neon .post-hero__neon-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1) 1px,
            transparent 1px,
            transparent 2px);
    pointer-events: none;
    z-index: 10;
}

/* ==========================================================================
   SKIN 12: Magazine Cover
   ========================================================================== */
.skin-magazine .post-hero__magazine-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    background: var(--_hero-bg);
}

.skin-magazine .post-hero__magazine-image {
    position: relative;
    overflow: hidden;
}

.skin-magazine .post-hero__magazine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skin-magazine .post-hero__magazine-content {
    display: flex;
    flex-direction: column;
    padding: 3rem;
    position: relative;
}

.skin-magazine .post-hero__magazine-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--_hero-heading);
    margin-bottom: 2rem;
}

.skin-magazine .post-hero__magazine-issue {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--_hero-accent);
}

.skin-magazine .post-hero__magazine-date {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--_hero-muted);
}

.skin-magazine .post-hero__magazine-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skin-magazine .post-hero__magazine-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--_hero-primary);
    margin-bottom: 1rem;
}

.skin-magazine .post-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.skin-magazine .post-hero__magazine-title-top {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.skin-magazine .post-hero__magazine-title-big {
    display: block;
    font-size: 1.5em;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.skin-magazine .post-hero__magazine-title-bottom {
    display: block;
    font-size: 0.6em;
    font-weight: 300;
    font-style: italic;
    margin-top: 0.5rem;
}

.skin-magazine .post-hero__meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.skin-magazine .post-hero__magazine-author {
    font-weight: 600;
    color: var(--_hero-heading);
}

.skin-magazine .post-hero__magazine-readtime {
    color: var(--_hero-muted);
}

.skin-magazine .post-hero__magazine-side {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--_hero-muted);
}

@media (max-width: 991px) {
    .skin-magazine .post-hero__magazine-container {
        grid-template-columns: 1fr;
    }

    .skin-magazine .post-hero__magazine-image {
        min-height: 50vh;
    }

    .skin-magazine .post-hero__magazine-side {
        display: none;
    }
}

/* ==========================================================================
   SKIN 13: Brutalist Bold
   ========================================================================== */
.skin-brutalist .post-hero__brutalist-container {
    position: relative;
    min-height: 80vh;
    background: #fff;
    padding: 4rem;
    overflow: hidden;
}

.skin-brutalist .post-hero__brutalist-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.skin-brutalist .post-hero__brutalist-shape {
    position: absolute;
    pointer-events: none;
}

.skin-brutalist .post-hero__brutalist-shape--1 {
    top: 5%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: var(--_hero-accent);
    transform: rotate(12deg);
}

.skin-brutalist .post-hero__brutalist-shape--2 {
    bottom: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    border: 8px solid var(--_hero-primary);
    transform: rotate(-8deg);
}

.skin-brutalist .post-hero__brutalist-shape--3 {
    top: 20%;
    left: 15%;
    width: 50px;
    height: 50px;
    background: var(--_hero-heading);
    border-radius: 50%;
}

.skin-brutalist .post-hero__brutalist-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.skin-brutalist .post-hero__brutalist-category {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.skin-brutalist .post-hero__brutalist-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--_hero-muted);
}

.skin-brutalist .post-hero__brutalist-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--_hero-heading);
}

.skin-brutalist .post-hero__title--brutalist {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--_hero-heading);
}

.skin-brutalist .post-hero__brutalist-line {
    width: 100%;
    height: 8px;
    background: var(--_hero-heading);
    margin: 2rem 0;
}

.skin-brutalist .post-hero__brutalist-meta {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.skin-brutalist .post-hero__brutalist-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.skin-brutalist .post-hero__excerpt {
    margin-top: 2rem;
    max-width: 500px;
    font-size: 1rem;
    line-height: 1.6;
}

.skin-brutalist .post-hero__brutalist-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 60%;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.skin-brutalist .post-hero__brutalist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

/* ==========================================================================
   SKIN 14: Aurora Gradient
   ========================================================================== */
.skin-aurora .post-hero__aurora-container {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.skin-aurora .post-hero__aurora-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.skin-aurora .post-hero__aurora-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    filter: blur(100px);
    animation: aurora-drift 20s infinite ease-in-out;
}

.skin-aurora .post-hero__aurora-layer--1 {
    background: linear-gradient(45deg, rgba(79, 209, 197, 0.4), transparent);
    top: -50%;
    left: -50%;
}

.skin-aurora .post-hero__aurora-layer--2 {
    background: linear-gradient(135deg, rgba(128, 90, 213, 0.3), transparent);
    top: -30%;
    right: -50%;
    animation-delay: -7s;
}

.skin-aurora .post-hero__aurora-layer--3 {
    background: linear-gradient(225deg, rgba(245, 101, 101, 0.2), transparent);
    bottom: -50%;
    left: -30%;
    animation-delay: -14s;
}

@keyframes aurora-drift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(5%, 5%) rotate(5deg);
    }

    66% {
        transform: translate(-5%, 3%) rotate(-5deg);
    }
}

.skin-aurora .post-hero__aurora-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.skin-aurora .post-hero__aurora-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float-star 10s infinite ease-in-out;
}

.skin-aurora .post-hero__aurora-particles span:nth-child(1) {
    left: 5%;
    top: 10%;
    animation-duration: 8s;
}

.skin-aurora .post-hero__aurora-particles span:nth-child(2) {
    left: 15%;
    top: 80%;
    animation-duration: 12s;
}

.skin-aurora .post-hero__aurora-particles span:nth-child(3) {
    left: 25%;
    top: 30%;
    animation-duration: 10s;
}

.skin-aurora .post-hero__aurora-particles span:nth-child(4) {
    left: 35%;
    top: 60%;
    animation-duration: 14s;
}

.skin-aurora .post-hero__aurora-particles span:nth-child(5) {
    left: 50%;
    top: 20%;
    animation-duration: 9s;
}

.skin-aurora .post-hero__aurora-particles span:nth-child(6) {
    left: 60%;
    top: 70%;
    animation-duration: 11s;
}

.skin-aurora .post-hero__aurora-particles span:nth-child(7) {
    left: 70%;
    top: 40%;
    animation-duration: 13s;
}

.skin-aurora .post-hero__aurora-particles span:nth-child(8) {
    left: 80%;
    top: 90%;
    animation-duration: 7s;
}

.skin-aurora .post-hero__aurora-particles span:nth-child(9) {
    left: 88%;
    top: 15%;
    animation-duration: 15s;
}

.skin-aurora .post-hero__aurora-particles span:nth-child(10) {
    left: 95%;
    top: 50%;
    animation-duration: 10s;
}

@keyframes float-star {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

.skin-aurora .post-hero__aurora-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 4rem 2rem;
}

.skin-aurora .post-hero__aurora-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.2), rgba(128, 90, 213, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.skin-aurora .post-hero__aurora-category .meta-icon {
    color: var(--_hero-primary);
}

.skin-aurora .post-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    background: linear-gradient(135deg, #fff, rgba(79, 209, 197, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skin-aurora .post-hero__excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 2rem;
}

.skin-aurora .post-hero__breadcrumbs,
.skin-aurora .post-hero__breadcrumbs li,
.skin-aurora .post-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.skin-aurora .post-hero__aurora-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.skin-aurora .post-hero__author-avatar {
    border-color: rgba(79, 209, 197, 0.5);
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.3);
}

.skin-aurora .post-hero__author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.skin-aurora .post-hero__author-name {
    color: #fff;
}

.skin-aurora .post-hero__author-role {
    color: rgba(255, 255, 255, 0.6);
}

.skin-aurora .post-hero__aurora-meta {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.skin-aurora .post-hero__meta-item {
    color: rgba(255, 255, 255, 0.8);
}

.skin-aurora .post-hero__aurora-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.skin-aurora .post-hero__aurora-wave svg {
    width: 100%;
    height: 120px;
    fill: rgba(79, 209, 197, 0.15);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 767px) {
    .post-hero__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .post-hero__excerpt {
        font-size: 1rem;
    }

    .post-hero__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .post-hero__author-avatar {
        width: 40px;
        height: 40px;
    }

    .skin-overlay .post-hero__content,
    .skin-parallax .post-hero__parallax-content,
    .skin-gradient-fade .post-hero__gradient-content {
        padding: 2rem 1rem;
    }

    .skin-glass .post-hero__glass-card {
        padding: 2rem;
    }

    .skin-floating-card .post-hero__floating-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .skin-floating-card .post-hero__meta-stats {
        flex-direction: column;
        margin-left: 0;
        margin-top: 1rem;
    }

    .skin-minimalist .post-hero__minimal-container {
        padding: 3rem 1.5rem;
    }

    .skin-brutalist .post-hero__brutalist-container {
        padding: 2rem;
    }

    .skin-brutalist .post-hero__brutalist-image {
        display: none;
    }

    .skin-neon .post-hero__neon-stats {
        flex-direction: column;
        margin-left: 0;
        margin-top: 1rem;
    }

    .skin-magazine .post-hero__magazine-content {
        padding: 2rem;
    }

    .skin-cinematic .post-hero__cinematic-bar {
        height: 40px;
    }

    .skin-cinematic .post-hero__cinematic-play {
        bottom: 70px;
        width: 50px;
        height: 50px;
    }

    .skin-aurora .post-hero__aurora-meta {
        flex-direction: column;
        margin-left: 0;
        align-items: center;
        margin-top: 1rem;
    }

    .skin-diagonal .post-hero__diagonal-content {
        padding: 2rem;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .skin-parallax .post-hero__parallax-wrapper {
        background-attachment: scroll;
    }

    .skin-glass .post-hero__glass-particles span,
    .skin-aurora .post-hero__aurora-particles span,
    .skin-aurora .post-hero__aurora-layer,
    .skin-neon .post-hero__neon-orb,
    .skin-parallax .post-hero__scroll-indicator {
        animation: none;
    }

    .post-hero__image-wrapper:hover img {
        transform: none;
    }
}