/* ===================================================================
   TECHNO AIRLINES — Article Inner Page Redesign v2
   Premium UI/UX with Full Mobile Responsiveness
   Design System: Chivo font, #0AF8C5 accent, Black/White contrast
   =================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --color-bg: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-secondary: #555555;
    --color-text-muted: #999999;
    --color-accent: #0AF8C5;
    --color-accent-dark: #08D4AA;
    --color-accent-glow: rgba(10, 248, 197, 0.12);
    --color-accent-glow-strong: rgba(10, 248, 197, 0.25);
    --color-border: #E8E8E8;
    --color-border-light: #F0F0F0;
    --color-surface: #F8F9FA;
    --color-surface-alt: #F3F4F6;
    --color-card: #FFFFFF;
    --color-footer-bg: #0A0A0A;
    --color-footer-text: #FFFFFF;
    --font-primary: 'Chivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-accent: 0 6px 24px rgba(10, 248, 197, 0.3);
    --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.1);
    --transition-micro: 0.15s ease;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --container-max: 1200px;
    --article-max: 100%;
    --header-height: 64px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    min-width: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ta-article-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TOP PROGRESS BAR ===== */
.top-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), #06E8B8, #00D4FF, var(--color-accent));
    background-size: 300% 100%;
    animation: progressGradient 3s linear infinite;
    z-index: 10000;
    transition: width 0.15s linear;
    box-shadow: 0 0 12px rgba(10, 248, 197, 0.5);
}

@keyframes progressGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
    border-bottom-color: transparent;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header-logo {
    flex-shrink: 0;
    z-index: 10;
}

.logo-img {
    height: 36px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.logo-img:hover {
    opacity: 0.8;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 6px;
}

.nav-list a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: transform var(--transition-normal);
}

.nav-list a:hover {
    color: var(--color-text);
    background: var(--color-surface);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-list a.active {
    font-weight: 700;
}

.header-actions {
    display: flex;
    gap: 4px;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.icon-btn:hover {
    background: var(--color-surface);
    color: var(--color-accent-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-normal);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== BREADCRUMB BAR ===== */
.article-breadcrumb-bar,
.rank-math-breadcrumb-wrapper {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-light);
    background: transparent;
}

/* Rank Math uses a p tag inside nav */
.breadcrumb,
.rank-math-breadcrumb p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
    padding: 0;
}

/* Eliminate Elementor box styling that ruins rank math */
.elementor-widget-theme-breadcrumbs .elementor-widget-container,
.rank-math-breadcrumb {
    display: block !important;
    width: 100%;
    max-width: 100% !important;
    margin: 0 auto 30px auto !important;
    padding: 0 !important;
    border: none !important;
    border-bottom: 1px solid var(--color-border-light, #2B2B2B) !important;
    background: transparent !important;
    background-color: transparent !important;
}

.rank-math-breadcrumb p,
.elementor-widget-theme-breadcrumbs p {
    padding: 14px 0 !important;
    border: none !important;
    margin: 0 !important;
    width: 100%;
    max-width: 100%;
}

.breadcrumb a,
.rank-math-breadcrumb a {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.breadcrumb a:hover,
.rank-math-breadcrumb a:hover {
    color: var(--color-accent-dark);
}

.breadcrumb .sep,
.rank-math-breadcrumb .separator {
    font-size: 9px;
    opacity: 0.4;
    display: flex;
    align-items: center;
}

.breadcrumb .current,
.rank-math-breadcrumb .last {
    color: var(--color-text);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 400px;
}

/* ===== ARTICLE HERO ===== */
.article-hero {
    padding: 40px 0 36px;
}

.article-hero-inner {
    max-width: 100% !important;
}

.article-category-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: var(--radius-full);
    background: var(--color-text);
    color: #fff;
    transition: all var(--transition-fast);
}

.category-badge:hover {
    background: var(--color-accent);
    color: var(--color-text);
    transform: translateY(-1px);
}

.category-badge--alt {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1.5px solid var(--color-border);
}

.category-badge--alt:hover {
    border-color: var(--color-accent);
    background: var(--color-accent-glow);
    color: var(--color-text);
}

.article-title {
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 900;
    line-height: 1.12;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-excerpt {
    font-size: clamp(16px, 2.5vw, 19px);
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border-light);
    font-weight: 400;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.article-meta-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.meta-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}

.author-name:hover {
    color: var(--color-accent-dark);
}

.article-meta-details {
    display: flex;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    font-size: 15px;
    color: var(--color-accent);
}

.meta-item div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.meta-item span,
.meta-item time {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

/* Share Buttons */
.article-meta-share {
    display: flex;
    gap: 6px;
}

.share-btn {
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.share-btn:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.share-btn:active {
    transform: translateY(0);
}

/* ===== FEATURED IMAGE ===== */
.article-featured-image {
    margin-bottom: 40px;
}

.featured-figure {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-figure img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-figure:hover img {
    transform: scale(1.03);
}

.img-credit {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.img-credit i {
    font-size: 10px;
    color: var(--color-accent);
}

/* ===== ARTICLE BODY LAYOUT ===== */
.article-body {
    padding: 0 0 48px;
}

.article-content-wrapper {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

/* Sticky Left Sidebar (Share) */
.article-sidebar-left {
    position: absolute;
    left: -70px;
    top: 0;
    height: 100%;
    z-index: 10;
}

.article-content-wrapper > p {
    display: none;
}

.sticky-share {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sticky-share-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-bottom: 4px;
}

.sticky-share-btn {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: all var(--transition-normal);
}

.sticky-share-btn:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--shadow-accent);
}

/* Article Content */
.article-content {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.article-content p {
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.85;
    color: var(--color-text);
    margin-bottom: 24px;
    font-weight: 400;
}

.article-content a {
    display: inline !important;
    color: var(--color-accent-dark);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(10, 248, 197, 0.3);
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.article-content a:hover {
    color: var(--color-accent);
    text-decoration-color: var(--color-accent);
}

.article-content strong {
    font-weight: 700;
    color: var(--color-text);
}

/* Drop Cap */
.article-dropcap::first-letter {
    float: left;
    font-size: 3.8em;
    line-height: 0.85;
    font-weight: 900;
    margin-right: 10px;
    margin-top: 6px;
    color: var(--color-accent);
    font-family: var(--font-primary);
}

/* Blockquote */
.article-quote {
    position: relative;
    margin: 36px 0;
    padding: 28px 28px 28px 32px;
    background: linear-gradient(135deg, var(--color-accent-glow), rgba(10, 248, 197, 0.03));
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-quote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 10px;
    font-size: 64px;
    font-weight: 900;
    color: var(--color-accent);
    opacity: 0.25;
    line-height: 1;
    font-family: Georgia, serif;
}

.article-quote p {
    font-size: clamp(17px, 2.5vw, 20px) !important;
    font-style: italic;
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 0 !important;
}

/* ===== LINEUP HIGHLIGHT BOX ===== */
.lineup-highlight {
    margin: 36px 0;
    background: var(--color-text);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lineup-highlight-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px 0;
}

.lineup-highlight-header i {
    font-size: 20px;
    color: var(--color-accent);
}

.lineup-highlight-header h3 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.lineup-artist-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 24px 24px;
}

.lineup-artist {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: all var(--transition-fast);
    cursor: default;
}

.lineup-artist:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(10, 248, 197, 0.08);
}

.lineup-artist.headliner {
    background: rgba(10, 248, 197, 0.12);
    border-color: var(--color-accent);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 14px;
}

.lineup-artist.headliner:hover {
    background: var(--color-accent);
    color: var(--color-text);
}

/* ===== SECRET STAGE CALLOUT ===== */
.secret-stage-callout {
    margin: 36px 0;
    display: flex;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.secret-stage-callout::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(10, 248, 197, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.secret-stage-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(10, 248, 197, 0.12);
    border: 1px solid rgba(10, 248, 197, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-accent);
}

.secret-stage-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.secret-stage-content p {
    font-size: 15px !important;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0 !important;
}

/* ===== FESTIVAL INFO CARD ===== */
.festival-info-card .release-card-content {
    padding: 0;
}

.festival-info-card .release-card-header {
    padding: 24px 28px 0;
}

.festival-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 16px 28px 28px;
}

.festival-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.festival-info-item i {
    font-size: 16px;
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.festival-info-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text-muted);
}

.info-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
}

/* Embed Container & WordPress iframe centering */
.embed-container {
    margin: 32px 0;
}

.article-content figure.aligncenter,
.article-content .wp-block-embed,
.article-content figure.wp-block-embed-youtube,
figure.aligncenter,
.wp-block-embed,
figure.wp-block-embed-youtube {
    text-align: center;
    margin: 32px auto;
    max-width: 100%;
}

.article-content figure.aligncenter iframe,
.article-content .wp-block-embed iframe,
.article-content figure iframe,
.article-content iframe,
figure.aligncenter iframe,
.wp-block-embed iframe,
.entry-content iframe,
.elementor-widget-theme-post-content iframe {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    border-radius: var(--radius-md, 12px);
}

.article-content .wp-block-embed__wrapper,
.wp-block-embed__wrapper {
    display: flex;
    justify-content: center;
}

.embed-placeholder {
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.embed-placeholder-inner {
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
}

.embed-placeholder-inner i {
    font-size: 32px;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.embed-placeholder-inner span {
    font-size: 13px;
    font-weight: 500;
}

/* Release Card / Festival Info Card */
.release-card {
    position: relative;
    margin: 36px 0;
    background: var(--color-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.release-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #00D4FF, var(--color-accent));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.release-card-content {
    padding: 24px 28px;
}

.release-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.release-card-icon {
    font-size: 20px;
    color: var(--color-accent);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.release-card-header h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.release-card-content p {
    font-size: 15px !important;
    line-height: 1.7;
    margin-bottom: 0 !important;
}

/* Artist Links */
.artist-links-section {
    margin: 40px 0;
}

.artist-links-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.title-accent-line {
    width: 24px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}

.artist-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.artist-link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-card);
    transition: all var(--transition-normal);
    font-weight: 600;
    font-size: 14px;
    -webkit-tap-highlight-color: transparent;
}

.artist-link-card i {
    font-size: 20px;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.artist-link-card:hover {
    border-color: var(--color-accent);
    background: var(--color-accent-glow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.artist-link-card:hover i {
    color: var(--color-accent);
}

/* Tags */
.article-tags {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border-light);
}

.tags-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tags-title i {
    color: var(--color-accent);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: inline-block;
    padding: 7px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.tag-item:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-1px);
}

/* Right Sidebar (Progress) */
.article-sidebar-right {
    position: absolute;
    right: -70px;
    top: 0;
    height: 100%;
}

.reading-progress-container {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.reading-progress-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-bottom: 4px;
}

.reading-progress-bar {
    width: 3px;
    height: 100px;
    background: var(--color-surface-alt);
    border-radius: 3px;
    overflow: hidden;
}

.reading-progress-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--color-accent), #00D4FF);
    border-radius: 3px;
    transition: height 0.15s linear;
}

.reading-progress-pct {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-accent);
    font-variant-numeric: tabular-nums;
}

/* ===== POST NAVIGATION ===== */
.post-nav-section {
    padding: 0 0 48px;
    border-top: 1px solid var(--color-border-light);
}

.post-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 32px;
}

.post-nav-card {
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 10px;
    -webkit-tap-highlight-color: transparent;
}

.post-nav-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.post-nav-direction {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-nav-card--next .post-nav-direction {
    justify-content: flex-end;
}

.post-nav-card--next {
    text-align: right;
}

.post-nav-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== RELATED POSTS ===== */
.related-posts-section {
    padding: 48px 0 64px;
    background: var(--color-surface);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.section-header-accent {
    width: 28px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 3px;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-post-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-card);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-normal);
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.related-post-link {
    display: block;
}

.related-post-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-thumb img {
    transform: scale(1.06);
}

.related-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.related-post-card:hover .related-post-overlay {
    opacity: 1;
}

.related-post-content {
    padding: 16px 16px 20px;
}

.related-post-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-dark);
    margin-bottom: 6px;
}

.related-post-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
}

.footer-top {
    padding: 48px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 36px;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
    margin-bottom: 14px;
}

.footer-description {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 14px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
}

.footer-socials a:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #000;
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-newsletter-text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.newsletter-input:focus {
    border-color: var(--color-accent);
}

.newsletter-btn {
    padding: 10px 20px;
    background: var(--color-accent);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #000;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: var(--color-accent-dark);
}

.footer-disclaimer {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright-text {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--color-accent);
    color: #000;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-accent);
    z-index: 999;
    -webkit-tap-highlight-color: transparent;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

/* ===== MOBILE SHARE BAR ===== */
.mobile-share-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border-light);
    padding: 10px 0;
    z-index: 998;
    justify-content: center;
    gap: 16px;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.mobile-share-bar.visible {
    transform: translateY(0);
}

.mobile-share-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.mobile-share-btn:active {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-hero-inner .category-badge {
    animation: fadeInUp 0.5s ease both;
    animation-delay: 0.05s;
}

.article-title {
    animation: fadeInUp 0.5s ease both;
    animation-delay: 0.1s;
}

.article-excerpt {
    animation: fadeInUp 0.5s ease both;
    animation-delay: 0.15s;
}

.article-meta {
    animation: fadeInUp 0.5s ease both;
    animation-delay: 0.2s;
}

.featured-figure {
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.25s;
}

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media (max-width: 1024px) {
    .article-content-wrapper {
        display: block !important;
        width: 100% !important;
    }

    .article-sidebar-left,
    .article-sidebar-right {
        display: none;
    }

    .article-content {
        max-width: 100%;
        grid-column: 1;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .festival-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== RESPONSIVE — MOBILE (768px) ===== */
@media (max-width: 768px) {
    :root {
        --header-height: 56px;
    }

    .ta-article-container {
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
    }

    .article-hero-inner,
    .article-content-wrapper,
    .article-content {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Header */
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 5;
    }

    .header-nav.mobile-open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .nav-list a {
        font-size: 20px;
        font-weight: 600;
        padding: 12px 24px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .header-container {
        padding: 0 16px;
    }

    /* Breadcrumb */
    .article-breadcrumb-bar {
        padding: 10px 0;
    }

    .breadcrumb .current {
        max-width: 180px;
        font-size: 12px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    /* Hero */
    .article-hero {
        padding: 28px 0 24px;
    }

    .article-title {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 16px;
    }

    .article-excerpt {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .article-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
        width: 100%;
    }

    .article-meta-author {
        padding-bottom: 16px;
        border-bottom: 1px solid var(--color-border-light);
        width: 100%;
    }

    .article-meta-details {
        display: flex;
        flex-direction: row !important;
        justify-content: flex-start;
        gap: 32px;
        width: 100%;
    }

    .article-meta-share {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding-top: 16px;
        border-top: 1px solid var(--color-border-light);
        width: 100%;
    }

    /* Featured Image — full-width on mobile */
    .article-featured-image {
        margin-bottom: 28px;
        margin-left: -10px;
        margin-right: -10px;
    }

    .featured-figure {
        border-radius: 0;
    }

    .featured-figure img {
        max-height: 280px;
        width: 100%;
    }

    /* Article Content */
    .article-body {
        padding: 0 0 36px;
    }

    .article-content p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 20px;
    }

    .article-dropcap::first-letter {
        font-size: 3em;
        margin-right: 8px;
    }

    /* Blockquote */
    .article-quote {
        margin: 28px 0;
        padding: 20px 16px 20px 20px;
    }

    .article-quote::before {
        font-size: 48px;
        left: 6px;
        top: -4px;
    }

    .article-quote p {
        font-size: 16px !important;
        line-height: 1.65;
    }

    /* Lineup Box */
    .lineup-highlight {
        margin: 28px 0;
    }

    .lineup-highlight-header {
        padding: 16px 16px 0;
    }

    .lineup-highlight-header h3 {
        font-size: 14px;
    }

    .lineup-artist-grid {
        padding: 12px 16px 20px;
        gap: 6px;
    }

    .lineup-artist {
        font-size: 12px;
        padding: 5px 12px;
    }

    .lineup-artist.headliner {
        font-size: 13px;
    }

    /* Secret Stage */
    .secret-stage-callout {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
        margin: 28px 0;
    }

    .secret-stage-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .secret-stage-content h3 {
        font-size: 16px;
    }

    .secret-stage-content p {
        font-size: 14px !important;
    }

    /* Festival Info */
    .festival-info-grid {
        grid-template-columns: 1fr;
        padding: 12px 16px 20px;
    }

    .festival-info-card .release-card-header {
        padding: 16px 16px 0;
    }

    .festival-info-item {
        padding: 8px 0;
    }

    /* Release Card */
    .release-card {
        margin: 28px 0;
    }

    .release-card-content {
        padding: 18px;
    }

    /* Artist Links */
    .artist-links-section {
        margin: 28px 0;
    }

    .artist-links-title {
        font-size: 16px;
    }

    .artist-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .artist-link-card {
        padding: 12px 14px;
        font-size: 13px;
    }

    .artist-link-card i {
        font-size: 18px;
    }

    /* Tags */
    .article-tags {
        margin-top: 28px;
        padding-top: 20px;
    }

    .tag-item {
        padding: 6px 14px;
        font-size: 12px;
    }

    /* Post Navigation */
    .post-nav-section {
        padding: 0 0 36px;
    }

    .post-nav-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 24px;
    }

    .post-nav-card {
        padding: 18px;
        gap: 8px;
    }

    .post-nav-card--next {
        text-align: left;
    }

    .post-nav-card--next .post-nav-direction {
        justify-content: flex-start;
    }

    .post-nav-title {
        font-size: 14px;
    }

    /* Related Posts */
    .related-posts-section {
        padding: 36px 0 48px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .related-post-card {
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .related-post-link {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .related-post-thumb {
        width: 130px;
        min-width: 130px;
        flex-shrink: 0;
        height: auto;
        min-height: unset;
        overflow: hidden;
        position: relative;
    }

    .related-post-thumb img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .related-post-content {
        flex: 1;
        padding: 14px 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
    }

    .related-post-title {
        font-size: 13px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .related-post-category {
        margin-bottom: 4px;
    }

    .section-title {
        font-size: 20px;
    }

    /* Footer */
    .footer-top {
        padding: 36px 0 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .footer-socials {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-legal {
        justify-content: center;
        gap: 16px;
    }

    /* Mobile Share Bar */
    .mobile-share-bar {
        display: flex;
    }

    /* Scroll to top */
    .scroll-to-top {
        bottom: 70px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* ===== RESPONSIVE — SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
    .ta-article-container {
        padding: 0 8px;
    }

    .article-featured-image {
        margin-left: -8px;
        margin-right: -8px;
    }

    .article-title {
        font-size: clamp(22px, 6vw, 28px);
    }

    .article-excerpt {
        font-size: 14px;
    }

    .category-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .meta-item {
        gap: 6px;
    }

    .meta-item i {
        font-size: 13px;
    }

    .meta-item span,
    .meta-item time {
        font-size: 12px;
    }

    .meta-label {
        font-size: 9px;
    }

    .author-avatar {
        width: 38px;
        height: 38px;
    }

    .author-name {
        font-size: 13px;
    }

    .featured-figure img {
        max-height: 220px;
    }

    .article-content p {
        font-size: 15px;
        line-height: 1.72;
    }

    .artist-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-input {
        border-right: 1px solid rgba(255,255,255,0.15);
        border-radius: var(--radius-sm);
    }

    .newsletter-btn {
        border-radius: var(--radius-sm);
        padding: 12px 20px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }

    .section-title {
        font-size: 18px;
    }

    .related-post-thumb {
        width: 100px;
        min-width: 100px;
    }
}

/* ===== RESPONSIVE — VERY SMALL (360px) ===== */
@media (max-width: 360px) {
    .ta-article-container {
        padding: 0 6px;
    }

    .article-featured-image {
        margin-left: -6px;
        margin-right: -6px;
    }

    .article-title {
        font-size: 20px;
    }

    .lineup-artist {
        font-size: 11px;
        padding: 4px 10px;
    }

    .lineup-artist.headliner {
        font-size: 12px;
    }

    .secret-stage-callout {
        padding: 16px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,
    .article-sidebar-left,
    .article-sidebar-right,
    .scroll-to-top,
    .mobile-share-bar,
    .top-progress-bar,
    .post-nav-section,
    .related-posts-section,
    .site-footer {
        display: none !important;
    }

    .article-content-wrapper {
        grid-template-columns: 1fr;
    }

    .article-content {
        max-width: 100%;
    }
}

/* ===== ACCESSIBILITY: REDUCE MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ===== FOCUS STYLES ===== */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

button:focus:not(:focus-visible) {
    outline: none;
}

/* ===== FONT AWESOME - GLOBAL ICON FIX =====
   WordPress'teki "body * { font-family: Chivo !important }" kuralinin
   Font Awesome ikonlarini bozmasini onler. Tum icon siniflarini kapsar.
   ============================================ */

/* Solid icons (.fas) */
i.fas,
i.fas::before,
.fas::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

/* Regular icons (.far) */
i.far,
i.far::before,
.far::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* Brand icons (.fab) */
i.fab,
i.fab::before,
.fab::before {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* Light icons (.fal) */
i.fal,
i.fal::before,
.fal::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 300 !important;
    font-style: normal !important;
}

/* Duotone / general .fa */
i.fa,
i.fa::before,
.fa::before {
    font-family: "Font Awesome 6 Free" !important;
    font-style: normal !important;
}

/* Ensure display: inline-block so ::before renders */
i.fas, i.far, i.fab, i.fal, i.fa {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}
