@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

/* Global Styles */
:root {
    --primary-color: #ffffff;
    --secondary-color: #f8f9fa;
    --accent-color: #007bff;
    --text-color: #2c3e50;
    --text-secondary: #6c757d;
    --border-color: #e9ecef;
    --hover-color: #f1f3f5;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow-color: rgba(0,0,0,0.1);
    --light-gray: #f8f9fa;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    width: 100%;
    z-index: 1000;
}

/* Fixed header for all pages except index */
body:not(.index-page) header {
    position: fixed;
    top: 0;
}

/* Index page specific header styles */
.index-page header {
    position: fixed;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.index-page header.visible {
    opacity: 1;
}

/* Adjust main content padding for fixed header */
body:not(.index-page) main {
    padding-top: 80px; /* Adjust this value based on your navbar height */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-color);
}

.nav-links a.active {
    color: var(--text-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

/* Main Content */
main {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Cards and Sections */
.card, .section {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--hover-color);
}

/* Forms */
input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--primary-color);
    color: var(--text-color);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--text-secondary);
    padding: 3rem 5%;
    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(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-color);
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-color);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

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

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h2 span {
    display: block;
    font-size: 4.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Featured Articles */
.featured-articles {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    margin-top: 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.featured-articles h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card.featured {
    background-color: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.article-card.featured:hover {
    transform: translateY(-5px);
}

.article-card.featured .article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card.featured .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card.featured .category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.article-card.featured .article-content {
    padding: 1.5rem;
}

.article-card.featured h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--text-color);
}

.article-card.featured h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.article-card.featured h3 a:hover {
    color: var(--accent-color);
}

.article-card.featured p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-card.featured .article-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-card.featured .read-more {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.article-card.featured .read-more:hover {
    text-decoration: underline;
}

/* Latest Issues */
.latest-issues {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.latest-issues h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.issue-card {
    background-color: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.issue-card:hover {
    transform: translateY(-5px);
}

.issue-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.issue-content {
    padding: 1.5rem;
}

.issue-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
}

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

.issue-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 5%;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--primary-color);
    color: var(--text-color);
}

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

.newsletter button {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.newsletter button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        gap: 1rem;
    }

    main {
        padding: 1rem;
    }

    .card, .section {
        padding: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .featured-articles h2,
    .latest-issues h2,
    .newsletter h2 {
        font-size: 2rem;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter button {
        width: 100%;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .article-card.featured .article-image {
        height: 180px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

.articles-main {
    padding-top: 80px; /* Adjust for fixed header */
    padding-bottom: 4rem;
}

.articles-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 5%;
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
}

.articles-header h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.articles-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.article-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.article-tile {
    display: block;
    background-color: var(--primary-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.article-tile img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.article-info {
    padding: 1.5rem;
}

.article-info h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-info .article-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.article-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Individual Article Styles */
.article-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    color: var(--secondary-color);
    margin: 1.5rem 0;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta span::before {
    content: "•";
    color: var(--accent-color);
}

.article-meta span:first-child::before {
    display: none;
}

.article-content {
    line-height: 1.9;
    font-size: 1.1rem;
    color: var(--text-color);
}

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

.article-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .articles-header h1 {
        font-size: 2rem;
    }

    .article-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta {
        gap: 1rem;
    }
}

/* Issues Page Styles */
.issues-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
    width: 100%;
}

.issues-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.issues-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.issues-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.issues-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1400px;
}

.issue-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.issue-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.issue-card .issue-content {
    padding: 1.5rem;
}

.issue-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.issue-card .issue-date {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.issue-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Individual Issue Page Styles */
.individual-issue {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.back-button {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--accent-color);
}

.individual-issue img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.individual-issue h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.individual-issue .issue-date {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.individual-issue p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .issues-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .issues-header h1 {
        font-size: 2rem;
    }

    .individual-issue h1 {
        font-size: 2rem;
    }

    .individual-issue img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .issues-grid {
        grid-template-columns: 1fr;
    }

    .issues-header h1 {
        font-size: 1.8rem;
    }

    .individual-issue h1 {
        font-size: 1.8rem;
    }
}

/* Podcasts Page Styles */
.podcasts-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
    width: 100%;
}

.podcasts-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.podcasts-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.podcasts-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.podcasts-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1400px;
}

/* Loading and Error States */
.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: #fff3f3;
    border-radius: 8px;
    border: 1px solid #ffcdd2;
    margin: 1rem 0;
}

.error-message p {
    font-family: 'Poppins', sans-serif;
    color: #d32f2f;
    margin: 0.5rem 0;
}

.error-details {
    font-size: 0.9rem;
    color: #b71c1c;
}

.no-podcasts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    font-size: 1.2rem;
}

.podcast-card {
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.podcast-header {
    margin-bottom: 1rem;
}

.podcast-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.podcast-date {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.podcast-description {
    margin-bottom: 1.5rem;
}

.podcast-description p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.spotify-embed {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.spotify-embed iframe {
    border-radius: 12px;
    width: 100%;
    height: 232px;
    border: none;
}

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

.spotify-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1DB954;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #1DB954;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.spotify-link:hover {
    background-color: #1DB954;
    color: white;
    transform: translateY(-2px);
}

.spotify-link i {
    font-size: 1.2rem;
}

/* Responsive Styles for Podcasts */
@media (max-width: 768px) {
    .podcasts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .podcasts-header h1 {
        font-size: 2rem;
    }
    
    .podcast-card {
        padding: 1rem;
    }
    
    .spotify-embed iframe {
        height: 200px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .podcasts-grid {
        grid-template-columns: 1fr;
    }

    .podcasts-header h1 {
        font-size: 1.8rem;
    }
    
    .podcast-header h3 {
        font-size: 1.3rem;
    }
    
    .spotify-embed iframe {
        height: 180px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

.podcast-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
}

.podcast-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-image-container img {
    transform: scale(1.05);
}

/* Article tiles and Issue cards compatibility with podcasts grid */
.podcasts-grid .article-tile {
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    display: block;
    text-decoration: none;
    color: inherit;
}

.podcasts-grid .article-tile a {
    text-decoration: none;
    color: inherit;
}

.podcasts-grid .article-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.podcasts-grid .issue-card {
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    cursor: pointer;
}

.podcasts-grid .issue-card a {
    text-decoration: none;
    color: inherit;
}

.podcasts-grid .issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

/* Common Page Styles */
.page-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
    width: 100%;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Common Grid Container */
.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1400px;
}

/* Common Card Styles */
.card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card a {
    text-decoration: none;
    color: inherit;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.card-date {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Common Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-numbers span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-numbers span.active {
    background-color: var(--primary-color);
    color: white;
}

.prev-page, .next-page {
    background: none;
    border: 1px solid var(--border-color);
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-page:hover, .next-page:hover {
    background-color: var(--hover-bg);
}

/* Common Responsive Styles */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
    }

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