/* ===============================================

THE INDIAN ALPHA - COMPLETE OPTIMIZED CSS

With Ultra-Compact Podcast Cards

=============================================== */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary: #4a9eff;
--primary-dark: #2d7dd2;
--secondary: #6bb3ff;
--bg-primary: #0f0f0f;
--bg-secondary: #1a1a1a;
--bg-tertiary: #252525;
--text-primary: #ffffff;
--text-secondary: #aaaaaa;
--text-muted: #888888;
--border-color: rgba(255, 255, 255, 0.1);
--success: #10b981;
--warning: #f59e0b;
--danger: #ef4444;
}

html {
scroll-behavior: smooth;
}

body {
background: var(--bg-primary);
color: var(--text-primary);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
padding-top: 65px;
overflow-x: hidden;
line-height: 1.6;
}

::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
background: var(--primary);
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
background: var(--secondary);
}

/* ===============================================
HEADER & NAVIGATION
=============================================== */

.site-header {
background: rgba(26, 26, 26, 0.95);
backdrop-filter: blur(10px);
padding: 0.8rem 1.5rem;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
border-bottom: 1px solid var(--border-color);
}

.header-container {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1.5rem;
}

.logo {
display: flex;
align-items: center;
}

.logo a {
color: var(--text-primary);
text-decoration: none;
font-size: 1.3rem;
font-weight: 800;
display: flex;
align-items: center;
letter-spacing: -0.5px;
transition: color 0.3s;
}

.logo a:hover {
color: var(--primary);
}

.logo-full {
display: inline;
}

.logo-icon {
display: none;
height: 36px;
width: 36px;
object-fit: cover;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(74, 158, 255, 0.3);
}

.top-language {
display: flex;
gap: 0.4rem;
align-items: center;
}

.top-language a {
color: var(--text-primary);
text-decoration: none;
padding: 0.4rem 0.8rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 6px;
font-size: 0.85rem;
font-weight: 600;
transition: all 0.3s;
border: 1px solid transparent;
}

.top-language a:hover {
background: var(--primary);
border-color: var(--primary);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(74, 158, 255, 0.4);
}

.hamburger {
display: flex;
flex-direction: column;
justify-content: space-around;
width: 28px;
height: 23px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 1001;
}

.hamburger span {
width: 100%;
height: 2.5px;
background: var(--text-primary);
transition: all 0.3s;
border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

.sidebar {
position: fixed;
top: 0;
right: -320px;
width: 300px;
height: 100vh;
background: var(--bg-secondary);
padding: 1.5rem;
overflow-y: auto;
transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 1002;
box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
right: 0;
}

.close-btn {
position: absolute;
top: 0.8rem;
right: 0.8rem;
background: rgba(255, 255, 255, 0.05);
border: none;
color: var(--text-primary);
font-size: 1.8rem;
cursor: pointer;
width: 36px;
height: 36px;
line-height: 32px;
text-align: center;
border-radius: 6px;
transition: all 0.3s;
}

.close-btn:hover {
background: var(--danger);
transform: rotate(90deg);
}

.sidebar-title {
color: var(--text-primary);
margin: 2rem 0 0.6rem 0;
font-size: 1rem;
font-weight: 700;
border-bottom: 2px solid var(--primary);
padding-bottom: 0.4rem;
}

.menu-list {
list-style: none;
padding: 0;
margin: 0.6rem 0;
}

.menu-list li {
margin-bottom: 0.3rem;
}

.menu-list a {
color: var(--text-primary);
text-decoration: none;
font-size: 0.9rem;
display: flex;
align-items: center;
padding: 0.6rem 0.8rem;
border-radius: 6px;
transition: all 0.3s;
border-left: 3px solid transparent;
}

.menu-list a:hover {
background: rgba(74, 158, 255, 0.1);
border-left-color: var(--primary);
padding-left: 1.2rem;
}

.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
opacity: 0;
visibility: hidden;
transition: all 0.3s;
z-index: 999;
pointer-events: none;
backdrop-filter: blur(5px);
cursor: pointer;
}

.overlay.active {
opacity: 1;
visibility: visible;
pointer-events: all;
}

/* ===============================================
HOME PAGE
=============================================== */

.home-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 1.5rem 3rem 1.5rem;
}

.hero-section {
text-align: center;
padding: 1.2rem 0 1rem 0;
margin-bottom: 1rem;
position: relative;
}

.hero-section::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 2px;
background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.hero-section h1 {
font-size: 1.6rem;
margin-bottom: 0;
line-height: 1.2;
font-weight: 800;
background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-section p {
display: none;
}

/* ===============================================
PODCAST DIGEST - ULTRA COMPACT
=============================================== */

.podcast-digest {
background: linear-gradient(135deg, #1a1f35 0%, #1f1f2e 100%);
padding: 1rem 1.2rem 0.8rem 1.2rem;
margin: 1rem 0;
border-radius: 14px;
border: 1px solid rgba(74, 158, 255, 0.2);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
position: relative;
overflow: hidden;
}

.podcast-digest::before {
content: '';
position: absolute;
top: -35%;
right: -6%;
width: 180px;
height: 180px;
background: radial-gradient(circle, rgba(74, 158, 255, 0.06) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
}

.podcast-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.8rem;
position: relative;
z-index: 1;
}

.podcast-header h2 {
font-size: 1.3rem;
margin: 0;
font-weight: 800;
background: linear-gradient(90deg, #fff 0%, var(--primary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.view-all {
color: var(--primary);
text-decoration: none;
font-weight: 700;
transition: all 0.3s;
padding: 0.4rem 0.9rem;
border: 2px solid var(--primary);
border-radius: 18px;
background: rgba(74, 158, 255, 0.08);
font-size: 0.7rem;
display: inline-flex;
align-items: center;
gap: 0.3rem;
}

.view-all::after {
content: '→';
transition: transform 0.3s;
}

.view-all:hover {
background: var(--primary);
color: #fff;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(74, 158, 255, 0.4);
}

.view-all:hover::after {
transform: translateX(4px);
}

/* ULTRA COMPACT PODCAST GRID - 3 EQUAL COLUMNS */

.podcast-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.8rem;
position: relative;
z-index: 1;
}

/* ULTRA COMPACT CARD - ONLY BLUE BOX WITH TITLE */
.podcast-card {
background: linear-gradient(135deg, #1a2f4d 0%, #2d4a6b 100%);
border: 2px solid rgba(74, 158, 255, 0.3);
border-radius: 10px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
min-height: 120px;
display: flex;
}

.podcast-card .card-link {
display: flex;
flex-direction: column;
justify-content: center;
padding: 0.8rem 1rem;
width: 100%;
text-decoration: none;
color: inherit;
}


.podcast-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s;
}

.podcast-card:hover::before {
transform: scaleX(1);
}

.podcast-card:hover {
transform: translateY(-4px);
border-color: var(--primary);
box-shadow: 0 8px 20px rgba(74, 158, 255, 0.3);
background: linear-gradient(135deg, #2d4a6b 0%, #1a2f4d 100%);
}
/* First Sentence - Bold Title */
.podcast-title {
font-size: 0.95rem;
margin: 0 0 0.5rem 0;
padding: 0;
line-height: 1.4;
font-weight: 800;
color: #ffffff;
max-height: 2.8em;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
}

/* Second Sentence - Lighter Subtitle */
.podcast-subtitle {
font-size: 0.78rem;
color: rgba(255, 255, 255, 0.65);
line-height: 1.4;
margin: 0;
font-weight: 400;
max-height: 2.8em;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
}

/* Hover effect on title */
.podcast-card:hover .podcast-title {
color: var(--primary);
}

/* HIDE ALL EXTRA CONTENT - SHOW ONLY TITLE */

.podcast-card .podcast-date {
display: none !important;
}

.podcast-card .podcast-meta {
display: none !important;
}

.podcast-card .podcast-summary {
display: none !important;
}

.podcast-card .read-btn {
display: none !important;
}

.podcast-card .topic-tag {
display: none !important;
}

/* ===============================================
PODCAST LIST PAGE - TWO SENTENCE LAYOUT
=============================================== */

.podcast-list-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.8rem;
margin-top: 1.5rem;
}

.podcast-page .podcast-card {
background: linear-gradient(135deg, #1a2f4d 0%, #2d4a6b 100%);
border: 2px solid rgba(74, 158, 255, 0.3);
border-radius: 10px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
min-height: 120px;
display: flex;
}

.podcast-page .podcast-card .card-link {
display: flex;
flex-direction: column;
justify-content: center;
padding: 0.8rem 1rem;
width: 100%;
text-decoration: none;
color: inherit;
}

.podcast-page .podcast-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s;
}

.podcast-page .podcast-card:hover::before {
transform: scaleX(1);
}

.podcast-page .podcast-card:hover {
transform: translateY(-4px);
border-color: var(--primary);
box-shadow: 0 8px 20px rgba(74, 158, 255, 0.3);
background: linear-gradient(135deg, #2d4a6b 0%, #1a2f4d 100%);
}

.podcast-title {
font-size: 0.95rem;
margin: 0 0 0.5rem 0;
padding: 0;
line-height: 1.4;
font-weight: 800;
color: #ffffff;
max-height: 2.8em;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
}

.podcast-subtitle {
font-size: 0.78rem;
color: rgba(255, 255, 255, 0.65);
line-height: 1.4;
margin: 0;
font-weight: 400;
max-height: 2.8em;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
}

.podcast-page .podcast-card:hover .podcast-title {
color: var(--primary);
}

/* ===============================================
ARTICLES SECTION
=============================================== */

.articles-section {
margin-top: 2rem;
}

.articles-section h2 {
font-size: 1.4rem;
margin: 0 0 1rem 0;
padding-bottom: 0.6rem;
font-weight: 800;
position: relative;
}

.articles-section h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 2.5px;
background: var(--primary);
border-radius: 2px;
}

.articles-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 1.2rem;
}

.article-card {
background: var(--bg-secondary);
border-radius: 12px;
overflow: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid var(--border-color);
position: relative;
}

.article-card::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, transparent 0%, rgba(74, 158, 255, 0.08) 100%);
opacity: 0;
transition: opacity 0.3s;
pointer-events: none;
}

.article-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
border-color: rgba(74, 158, 255, 0.4);
}

.article-card:hover::after {
opacity: 1;
}

.article-card img {
width: 100%;
height: 150px;
object-fit: cover;
transition: transform 0.3s;
}

.article-card:hover img {
transform: scale(1.05);
}

.card-content {
padding: 1rem;
position: relative;
z-index: 1;
}

.category-badge {
background: var(--primary);
color: #fff;
padding: 0.25rem 0.7rem;
border-radius: 12px;
font-size: 0.65rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
display: inline-block;
}

.card-content h2 {
margin: 0.8rem 0 0.5rem 0;
font-size: 1rem;
line-height: 1.3;
font-weight: 700;
}

.card-content h2 a {
color: var(--text-primary);
text-decoration: none;
transition: color 0.3s;
}

.card-content h2 a:hover {
color: var(--primary);
}

.summary {
color: var(--text-secondary);
line-height: 1.5;
margin-bottom: 0.6rem;
font-size: 0.85rem;
}

time {
color: var(--text-muted);
font-size: 0.75rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.3rem;
}

time::before {
content: '📅';
font-size: 0.8rem;
}

/* ===============================================
SINGLE ARTICLE PAGE
=============================================== */

.single-article {
max-width: 900px;
margin: 0 auto;
padding: 2rem 1.5rem;
}

.article-header h1 {
font-size: 2rem;
margin-bottom: 1.2rem;
line-height: 1.2;
font-weight: 800;
}

.meta {
display: flex;
gap: 1.2rem;
color: var(--text-muted);
margin-bottom: 2rem;
flex-wrap: wrap;
padding-bottom: 1.2rem;
border-bottom: 2px solid var(--border-color);
}

.article-cover img {
width: 100%;
border-radius: 12px;
margin-bottom: 2.5rem;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.article-content {
line-height: 1.8;
font-size: 1.05rem;
}

.article-content h2 {
margin: 2rem 0 1rem;
font-size: 1.5rem;
font-weight: 800;
color: var(--text-primary);
position: relative;
padding-left: 1rem;
border-left: 4px solid var(--primary);
background: linear-gradient(90deg, rgba(74, 158, 255, 0.1) 0%, transparent 100%);
padding: 0.8rem 1rem;
border-radius: 4px;
}

.article-content h2::before {
content: '▸';
color: var(--primary);
margin-right: 0.5rem;
font-weight: 900;
}

.article-content h3 {
margin: 1.5rem 0 0.8rem;
font-size: 1.2rem;
font-weight: 700;
color: var(--secondary);
position: relative;
padding-left: 0.8rem;
}

.article-content h3::before {
content: '◆';
color: var(--secondary);
position: absolute;
left: 0;
font-size: 0.7rem;
top: 0.3rem;
}

.article-content h4 {
margin: 1.2rem 0 0.6rem;
font-size: 1.05rem;
font-weight: 700;
color: var(--text-primary);
font-style: italic;
}

.article-content p {
margin-bottom: 1.2rem;
}

.article-content ul, .article-content ol {
margin: 1.2rem 0 1.2rem 1.8rem;
}

.article-content li {
margin-bottom: 0.6rem;
}

.article-content blockquote {
border-left: 4px solid var(--primary);
background: rgba(74, 158, 255, 0.05);
padding: 1rem 1.5rem;
margin: 1.5rem 0;
border-radius: 4px;
font-style: italic;
color: var(--text-secondary);
}

/* ===============================================
CATEGORY/LIST PAGES
=============================================== */

.list-page {
max-width: 1200px;
margin: 0 auto;
padding: 2rem 1.5rem;
}

.list-header {
margin-bottom: 2rem;
padding-bottom: 1.2rem;
border-bottom: 3px solid var(--primary);
position: relative;
background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, transparent 100%);
padding: 1.5rem;
border-radius: 12px;
}

.list-header h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
font-weight: 900;
background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
display: inline-block;
text-transform: uppercase;
letter-spacing: 1px;
}

.list-header h1::before {
content: '◆';
color: var(--primary);
margin-right: 0.8rem;
font-size: 1.5rem;
vertical-align: middle;
}

.list-header h1::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 100px;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
border-radius: 2px;
}

.list-header p {
color: var(--text-secondary);
font-size: 0.95rem;
margin-top: 0.8rem;
}

.articles-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.list-item {
display: flex;
gap: 1.5rem;
background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(74, 158, 255, 0.02) 100%);
border-radius: 14px;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid var(--border-color);
position: relative;
}

.list-item::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
background: linear-gradient(180deg, var(--primary), var(--secondary));
transform: scaleY(0);
transition: transform 0.4s;
}

.list-item:hover::before {
transform: scaleY(1);
}

.list-item:hover {
transform: translateX(10px);
box-shadow: 0 12px 35px rgba(74, 158, 255, 0.2);
border-color: var(--primary);
background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(74, 158, 255, 0.08) 100%);
}

.list-item img {
width: 280px;
height: 170px;
object-fit: cover;
transition: all 0.4s;
border-radius: 8px;
margin: 10px;
}

.list-item:hover img {
transform: scale(1.1);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.item-content {
padding: 1.5rem;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}

.item-content h2 {
font-size: 1.3rem;
margin-bottom: 0.8rem;
font-weight: 700;
line-height: 1.3;
}

.item-content h2 a {
color: var(--text-primary);
text-decoration: none;
transition: all 0.3s;
background: linear-gradient(90deg, var(--primary), var(--secondary));
background-size: 0% 2px;
background-repeat: no-repeat;
background-position: left bottom;
}

.item-content h2 a:hover {
color: var(--primary);
background-size: 100% 2px;
}

.item-content p {
color: var(--text-secondary);
margin-bottom: 1rem;
line-height: 1.6;
font-size: 0.95rem;
}

.item-content time {
font-size: 0.85rem;
}

/* ===============================================
PODCAST LIST PAGE - OLD STYLES (FALLBACK)
=============================================== */

.podcast-page {
max-width: 1200px;
margin: 0 auto;
padding: 1.5rem 1.5rem 3rem 1.5rem;
}

.page-header {
text-align: center;
margin-bottom: 1.5rem;
padding: 1rem 1.5rem 0.8rem 1.5rem;
border-bottom: 2px solid var(--primary);
position: relative;
background: linear-gradient(135deg, rgba(74, 158, 255, 0.08) 0%, transparent 100%);
border-radius: 10px;
}

.page-header h1 {
font-size: 1.4rem;
margin: 0;
font-weight: 900;
background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
white-space: nowrap;
display: inline-block;
}

.page-header p {
display: none;
}

/* ===============================================
PODCAST SINGLE PAGE
=============================================== */

.podcast-single {
max-width: 850px;
margin: 0 auto;
padding: 2rem 1.5rem;
}

.podcast-single .podcast-header {
text-align: left;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 3px solid var(--primary);
}

.podcast-single .podcast-header h1 {
font-size: 1.8rem;
margin: 0;
line-height: 1.3;
font-weight: 900;
color: var(--text-primary);
background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.podcast-single .podcast-meta {
display: none !important;
}

.topics {
background: linear-gradient(135deg, rgba(74, 158, 255, 0.08) 0%, transparent 100%);
padding: 1rem 1.2rem;
border-radius: 10px;
margin-bottom: 1.8rem;
border-left: 3px solid var(--primary);
}

.topics strong {
color: var(--primary);
font-size: 0.9rem;
margin-right: 0.5rem;
}

.topic-tag {
background: rgba(255, 255, 255, 0.06);
padding: 0.2rem 0.5rem;
border-radius: 10px;
font-size: 0.65rem;
color: var(--text-secondary);
border: 1px solid rgba(255, 255, 255, 0.08);
font-weight: 600;
transition: all 0.3s;
display: inline-block;
margin-right: 0.3rem;
margin-bottom: 0.3rem;
}

.topic-tag:hover {
background: rgba(74, 158, 255, 0.15);
color: var(--primary);
border-color: var(--primary);
}

.podcast-content {
line-height: 1.85;
font-size: 1.1rem;
color: var(--text-primary);
}

.podcast-content h2 {
margin: 2.5rem 0 1rem;
font-size: 1.4rem;
font-weight: 900;
color: var(--text-primary);
position: relative;
padding-left: 1rem;
border-left: 4px solid var(--primary);
background: linear-gradient(90deg, rgba(74, 158, 255, 0.12) 0%, transparent 100%);
padding: 0.7rem 1rem;
border-radius: 6px;
}

.podcast-content h2::before {
content: '▸';
color: var(--primary);
margin-right: 0.6rem;
font-weight: 900;
font-size: 1.2rem;
}

.podcast-content h3 {
margin: 1.8rem 0 0.8rem;
font-size: 1.15rem;
font-weight: 800;
color: var(--secondary);
position: relative;
padding-left: 1rem;
}

.podcast-content h3::before {
content: '◆';
color: var(--secondary);
position: absolute;
left: 0;
font-size: 0.7rem;
top: 0.3rem;
}

.podcast-content h4 {
margin: 1.3rem 0 0.6rem;
font-size: 1.05rem;
font-weight: 800;
color: var(--text-primary);
}

.podcast-content p {
margin-bottom: 1.3rem;
color: var(--text-primary);
}

.podcast-content strong {
color: var(--primary);
font-weight: 700;
}

.podcast-content ul, .podcast-content ol {
margin: 1.3rem 0 1.3rem 2rem;
color: var(--text-primary);
}

.podcast-content li {
margin-bottom: 0.7rem;
line-height: 1.7;
}

.podcast-content blockquote {
border-left: 4px solid var(--primary);
background: linear-gradient(90deg, rgba(74, 158, 255, 0.1) 0%, transparent 100%);
padding: 1.2rem 1.5rem;
margin: 1.8rem 0;
border-radius: 6px;
font-style: italic;
color: var(--text-secondary);
font-size: 1.05rem;
}

.podcast-content a {
color: var(--primary);
text-decoration: none;
font-weight: 600;
border-bottom: 1px solid transparent;
transition: all 0.3s;
}

.podcast-content a:hover {
color: var(--secondary);
border-bottom-color: var(--secondary);
}

/* ===============================================
FOOTER
=============================================== */

.site-footer {
background: var(--bg-secondary);
padding: 2.5rem 1.5rem;
margin-top: 4rem;
border-top: 1px solid var(--border-color);
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2.5rem;
}

.footer-section h3 {
color: var(--primary);
margin-bottom: 0.8rem;
font-size: 1.1rem;
font-weight: 700;
}

.footer-section p {
color: var(--text-secondary);
line-height: 1.6;
margin-bottom: 0.8rem;
font-size: 0.9rem;
}

.footer-section ul {
list-style: none;
padding: 0;
}

.footer-section ul li {
margin-bottom: 0.6rem;
}

.footer-section ul li a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s;
font-size: 0.9rem;
}

.footer-section ul li a:hover {
color: var(--primary);
}

.footer-bottom {
max-width: 1400px;
margin: 2.5rem auto 0;
padding-top: 1.5rem;
border-top: 1px solid var(--border-color);
text-align: center;
color: var(--text-muted);
font-size: 0.9rem;
}

.scroll-to-top {
position: fixed;
bottom: 25px;
right: 25px;
background: var(--primary);
color: #fff;
width: 45px;
height: 45px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: all 0.3s;
z-index: 998;
box-shadow: 0 4px 16px rgba(74, 158, 255, 0.4);
}

.scroll-to-top.visible {
opacity: 1;
visibility: visible;
}

.scroll-to-top:hover {
background: var(--secondary);
transform: translateY(-4px);
}

.loading {
display: inline-block;
width: 18px;
height: 18px;
border: 2.5px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: var(--primary);
animation: spin 1s ease-in-out infinite;
}

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

/* ===============================================
RESPONSIVE DESIGN
=============================================== */

@media (max-width: 768px) {
body {
padding-top: 60px;
}

.site-header {
padding: 0.7rem 1rem;
}

.header-container {
gap: 0.8rem;
}

.logo-full {
display: none;
}

.logo-icon {
display: block;
height: 32px;
width: 32px;
}

.top-language {
gap: 0.3rem;
}

.top-language a {
padding: 0.35rem 0.6rem;
font-size: 0.75rem;
}

.hamburger {
width: 26px;
height: 21px;
}

.sidebar {
width: 280px;
right: -280px;
padding: 1.2rem;
}

.home-container {
padding: 0 1rem 2.5rem 1rem;
}

.hero-section {
padding: 1rem 0 0.8rem 0;
}

.hero-section h1 {
font-size: 1.4rem;
}

.podcast-digest {
padding: 0.8rem;
margin: 0.8rem 0;
}

.podcast-header {
flex-direction: column;
align-items: flex-start;
gap: 0.6rem;
}

.podcast-header h2 {
font-size: 1.1rem;
}

.podcast-grid {
grid-template-columns: 1fr;
gap: 0.6rem;
}

.podcast-card {
min-height: 70px;
padding: 0.6rem 0.8rem;
}

.podcast-card h3 {
font-size: 0.85rem !important;
}

.podcast-list-grid {
grid-template-columns: 1fr;
gap: 0.6rem;
}

.podcast-page .podcast-card {
min-height: 100px;
}

.podcast-page .podcast-card .card-link {
padding: 0.7rem 0.9rem;
}

.podcast-title {
font-size: 0.88rem;
}

.podcast-subtitle {
font-size: 0.75rem;
}

.articles-section {
margin-top: 1.5rem;
}

.articles-section h2 {
font-size: 1.2rem;
}

.articles-grid {
grid-template-columns: 1fr;
gap: 1rem;
}

.article-card img {
height: 140px;
}

.article-content h2 {
font-size: 1.3rem;
padding: 0.6rem 0.8rem;
}

.article-content h3 {
font-size: 1.1rem;
}

.list-item {
flex-direction: column;
gap: 0;
}

.list-item img {
width: 100%;
height: 180px;
margin: 0;
border-radius: 0;
}

.list-header h1 {
font-size: 1.6rem;
}

.page-header h1 {
font-size: 1.2rem;
}

.podcast-single .podcast-header h1 {
font-size: 1.5rem;
}

.podcast-content h2 {
font-size: 1.2rem;
}

.podcast-content h3 {
font-size: 1.05rem;
}

.footer-content {
grid-template-columns: 1fr;
gap: 1.8rem;
}

.scroll-to-top {
bottom: 20px;
right: 20px;
width: 42px;
height: 42px;
}
}

@media (max-width: 480px) {
.logo-icon {
height: 30px;
width: 30px;
}

.hero-section h1 {
font-size: 1.25rem;
}

.podcast-header h2 {
font-size: 1rem;
}

.podcast-card {
padding: 0.5rem;
min-height: 65px;
}

.podcast-card h3 {
font-size: 0.8rem !important;
}

.card-content {
padding: 0.9rem;
}

.article-card img {
height: 130px;
}

.list-header h1 {
font-size: 1.4rem;
}

.page-header h1 {
font-size: 1.1rem;
}

.podcast-single .podcast-header h1 {
font-size: 1.3rem;
}
}

@media (min-width: 769px) and (max-width: 1024px) {
.articles-grid {
grid-template-columns: repeat(3, 1fr);
}

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

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

.hero-section h1 {
font-size: 1.5rem;
}

.podcast-header h2 {
font-size: 1.25rem;
}
}

@media (min-width: 1400px) {
.articles-grid {
grid-template-columns: repeat(4, 1fr);
}

.podcast-grid {
grid-template-columns: repeat(3, 1fr);
}

.podcast-list-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 1800px) {
.articles-grid {
grid-template-columns: repeat(5, 1fr);
}

.podcast-grid {
grid-template-columns: repeat(4, 1fr);
}

.podcast-list-grid {
grid-template-columns: repeat(4, 1fr);
}
}

