/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #374151;
  background: linear-gradient(135deg, #ebf8ff 0%, #e0e7ff 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0rem;
}

.hero-container {
  margin-top: 7rem;
  position: relative;
  background: #fff;
  padding-bottom: 5rem!important;
	padding-top: 5rem;

}

/* Header Styles */
.header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  position: static;
  margin-top: 18px;
}

.header-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.podcast-image img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-info h1 {
  font-size: 4.3rem;
  font-weight: 600 !important;
  font-family: "sora";
  color: #111827;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 2.25rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.description {
  color: #374151;
  line-height: 1.7;
  max-width: 70rem;
  margin-bottom: 1rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: #f3f4f6;
  color: #000000;
  padding: 0.25rem 0.99rem;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

/* Main Content */
.main-content {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-header h2 {
  font-size: 3.5rem;
  font-family: "sora";
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #6b7280;
  font-size: 1.7rem;
}

/* Episodes Grid */
.episodes-grid {
  display: grid;
  gap: 0;
  margin-bottom: 3rem;
}

.episode-card {
  background: white;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 2rem;
  max-width: 100%;
}

.episode-card:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.episode-card:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom: none;
}

.episode-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  z-index: 1;
}

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

.episode-image {
  position: relative;
  width: 120px;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 0px 0px 5px;
  margin-right: 1.5rem;
}

.episode-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: none;
  opacity: 1;
  display: block;
}

a {
  color: #000000;
}

.episode-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.play-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
  background: white;
  transform: scale(1.05);
}

.play-btn i {
  color: #2563eb;
  font-size: 1rem;
  margin-left: 2px;
}

.episode-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}

.episode-badge {
  display: inline-block;
  background: transparent;
  color: #6b7280;
  padding: 0;
  margin-bottom: 0.5rem;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 400;
}

.episode-title {
  font-size: 2.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
  line-height: 1.4;
}

.episode-title:hover {
  color: #2563eb;
}

.episode-description {
  color: #6b7280;
  margin-bottom: 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  font-size: 1.5rem;
}

.episode-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.topic-tag {
  background: #f8f9fa;
  color: #495057;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #e9ecef;
}

.episode-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.episode-meta-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.episode-meta-info .duration {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.episode-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 22px;
  margin-top: 14px;
}

.episode-actions1 .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 18px !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.display-flex {
  display: flex;
  gap: 22px;
}

.episode-actions .btn-primary {
  background: #1f2937;
  color: white;
  border: 1px solid #1f2937;
}

.episode-actions .btn-outline {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

/* .episode-actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

.episode-actions1 .btn-primary1 {
  background: #1f2937;
  color: white;
  border: 1px solid #1f2937;
}

/* .episode-actions1 .btn-outline {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
} */

/* .episode-actions1 .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */
.episode-actions1 .btn:hover{
	color: #fff;
}

.episode-actions1 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 1rem;
  bottom: 6.8rem;
  float: right;
}

.episode-actions1 .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  top: -0.4rem;
  position: relative;
  margin-right: 5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 2.5rem 1.875rem;
  border-radius: 6px;
  font-size: 1.7rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: #111827;
  color: white;
}

.btn-primary:hover {
  background: #374151;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background: #f9fafb;
  color: #374151;
  border-color: #9ca3af;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Episode Details Page */
.episode-header {
  padding: 0rem 0;
	margin-bottom: -30rem;
	margin-top: -100px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  position: absolute;
  margin-top: -30px;
}

.back-link:hover {
  color: #2563eb;
  transform: translateX(-4px);
}

.episode-hero {
  display: flex;
  gap: 2rem;
  margin-bottom: -67rem;
  align-items: flex-start;
  margin-top: 12rem;
  background: #ffffff;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.episode-header .episode-image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
/*   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
  display: none;
}

.episode-header .episode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-meta {
  flex: 1;
}

.episode-meta h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "sora";
}

.episode-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1.5rem;
  color: #6b7280;
  font-weight: 500;
}

/* Episode Content */
.episode-content {
  padding: 0rem 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.content-grid {
  display: grid;
  gap: 2rem;
  max-width: 4xl;
  margin: 215px auto;
  margin-top: 32rem;
}

.content-card {
  background: white;
  border-radius: 16px;
/*   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
  overflow: hidden;
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.content-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.content-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  font-family: "sora" !important;
  font-weight: 700;
  font-size: 24px;
}

.content-card-body {
  padding: 2rem;
  margin-bottom: 1rem;
}

/* Show Notes */
.show-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.show-notes-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  font-family: 'Sora'!important;	
}

.note-number {
  background: #f3f7ff;
  color: #2563eb;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

/* Quotes */
.quotes-list {
  display: grid;
  gap: 2rem;
}

.quote-item {
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  position: relative;
}

.quote-text {
  font-size: 1.6rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Resources */
.resources-list {
  display: grid;
  gap: 1.5rem;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.resource-item:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.resource-icon {
  color: #2563eb;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.resource-title {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.resource-title:hover {
  text-decoration: underline;
}

.resource-description {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Host and Guest Styles */
.people-list {
  display: grid;
  gap: 2rem;
}

.person-item {
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.person-item:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.person-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.person-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.person-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.host-icon {
  background: #dbeafe;
  color: #2563eb;
}

.guest-icon {
  background: #fef3c7;
  color: #d97706;
}

.person-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.2;
}

.person-role {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.person-description {
  color: #374151;
  line-height: 1.7;
  margin: 0;
  white-space: pre-line;
	font-size: 16px !important;
}
p{
	font-size: 16px!important;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
 top: 100px !important;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.3s ease;
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.close {
  color: #6b7280;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
  padding: 0.25rem;
  border-radius: 4px;
}

.close:hover,
.close:focus {
  color: #dc2626;
  background-color: #fef2f2;
}

.modal-body {
  padding: 2rem;
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .section-title-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .header-content {
    flex-direction: row;
    align-items: center;
  }
	

  .episode-image {
    width: 285px;
    height: 100%;
    flex-shrink: 0;
  }
	

  .episode-footer {
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: "sora";
    font-weight: 100;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .episode-card {
    flex-direction: column;
    padding: 1rem;
  }

  .episode-image img {
    border-radius: 10px;
  }

  .podcast-image img {
    width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .podcast-image {
    display: flex;
    justify-content: center;
  }

  .episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: none;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .episode-image {
    width: 100%;
    height: auto;
    background: none;
    padding: 15px;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .episode-content {
    min-height: auto;
  }

  .episode-content {
    padding: 15px;
    margin-top: -3rem;
  }

  .episode-hero {
    flex-direction: column;
    text-align: left;
  }

  .episode-header .episode-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    right: 130px;
  }

  .episode-meta h1 {
    font-size: 2rem;
  }

  .header {
    position: static;
    margin-top: 18px;
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .modal-header {
    padding: 1rem 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .close {
    font-size: 1.5rem;
  }

  .hero-container {
    margin-top: 0rem;
    position: relative;
    background: #fff;
  }

  .episode-meta {
    flex: 1;
    padding: 11px;
  }

  .btn {
    font-size: 1.2rem;
  }
	.back-link{
		margin-top: 0px!important;
	}
	.episode-header {
  	margin-top: 0px;
}
}
/* Pagination Styles - Centered */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  padding: 2rem 0;
}

.pagination-container .page-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-container .page-numbers li {
  display: inline-block;
}

.pagination-container .page-numbers a,
.pagination-container .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid #d1d5db;
  color: #6b7280;
  background: white;
}

.pagination-container .page-numbers a:hover {
  background: #f9fafb;
  color: #374151;
  border-color: #9ca3af;
  transform: translateY(-1px);
}

.pagination-container .page-numbers .current {
  background: #111827;
  color: white;
  border-color: #111827;
}

.pagination-container .page-numbers .prev,
.pagination-container .page-numbers .next {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.pagination-container .page-numbers .dots {
  border: none;
  background: transparent;
  color: #9ca3af;
}