/* Conversations Page Styles */

body {
  margin: 0;
  padding: 0;
  background: #fafafa;
  overflow-x: hidden;
}

/* Logo positioning (consistent with other sections) */
.logo-container {
  position: absolute;
  top: 28px;
  left: 38px;
  z-index: 100;
}

.site-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

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

/* Main Container */
.conversations-page-container {
  display: grid;
  grid-template-columns: 1fr 450px;
  height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
  gap: 0;
  overflow: hidden;
}

/* Left Column: Main Content */
.conversations-main-content {
  background: transparent;
  padding: 100px 50px 30px 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  max-height: 100vh;
}

.conversations-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2B2D42;
  margin: 0 0 4px 0;
  line-height: 1.1;
  font-family: 'Poppins', sans-serif;
}


/* Featured Conversation Section */
.featured-conversation {
  margin-top: 4px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.featured-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888;
  margin: 0 0 6px 0;
  font-weight: 600;
}

.featured-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2B2D42;
  margin: 0 0 4px 0;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.featured-guests {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 10px 0;
}

.featured-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 0 10px 0;
}

.featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.featured-description {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #555;
  margin: 0 0 6px 0;
}

.featured-footnote {
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
  margin: 0 0 10px 0;
}

.featured-btn {
  padding: 10px 22px;
  background: #CC0000;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-btn:hover {
  background: #E00000;
}

/* General Description */
.conversations-description {
  margin-top: -4px;
  margin-bottom: 14px;
}

.conversations-description h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2B2D42;
  margin: 0 0 8px 0;
  font-family: 'Poppins', sans-serif;
}

.conversations-description p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #555;
  margin: 0 0 8px 0;
}

.conversations-description em {
  font-style: italic;
}

.conversations-description strong {
  font-weight: 600;
  color: #2B2D42;
}

.contact-info {
  margin-top: 12px;
  font-size: 0.85rem;
}

.contact-info a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Right Column: Past Conversations Sidebar */
.conversations-sidebar {
  background: transparent;
  border-left: 1px solid #e0e0e0;
  padding: 100px 28px 30px 28px;
  height: 100vh;
  overflow-y: auto;
}

.past-conversations-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.past-conversations-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2B2D42;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.past-conversations-subtitle {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #666;
  margin: -6px 0 0 0;
}

.subscribe-btn {
  background: #CC0000;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
}

.subscribe-btn:hover {
  background: #E00000;
  transform: scale(1.02);
}

/* Conversation List */
.conversation-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.conversation-card {
  padding: 14px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.3s ease;
}

.conversation-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.conversation-number {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2B2D42;
  margin: 0 0 3px 0;
  font-family: 'Poppins', sans-serif;
}

.conversation-guests {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 6px 0;
}

.conversation-description {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #555;
  margin: 0 0 5px 0;
}

.conversation-footnote {
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
  margin: 0 0 8px 0;
}

.conversation-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.conversation-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-watch {
  background: #CC0000;
  color: #fff;
}

.btn-watch:hover {
  background: #E00000;
}

.past-conversations-footer {
  font-size: 0.9rem;
  color: #666;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

/* Tablet Responsive */
@media (max-width: 1200px) {
  .conversations-page-container {
    grid-template-columns: 1fr 380px;
  }

  .conversations-main-content {
    padding: 100px 35px 30px 90px;
  }

  .conversations-title {
    font-size: 2.3rem;
  }
}

/* Mobile Responsive (Stack Layout) */
@media (max-width: 968px) {
  .logo-container {
    top: 10px;
    left: 10px;
  }

  .site-logo {
    height: 32px;
  }

  .conversations-page-container {
    grid-template-columns: 1fr;
    display: block;
    height: auto;
    overflow: visible;
  }

  .conversations-main-content {
    padding: 60px 20px 40px 20px;
    overflow-y: visible;
    max-height: none;
  }

  .conversations-title {
    font-size: 2.2rem;
  }

  .featured-conversation {
    padding: 20px;
  }

  .featured-title {
    font-size: 1.4rem;
  }

  .featured-image {
    max-width: 100%;
  }

  .conversations-sidebar {
    border-left: none;
    border-top: 1px solid #e0e0e0;
    padding: 40px 20px;
    height: auto;
    overflow-y: visible;
  }

  .past-conversations-section {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Mobile Landscape */
@media (max-width: 968px) and (orientation: landscape) {
  .conversations-main-content {
    padding: 60px 20px 40px 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .conversations-main-content {
    padding: 50px 15px 30px 15px;
  }

  .conversations-title {
    font-size: 1.8rem;
  }

  .featured-conversation {
    padding: 16px;
  }

  .featured-title {
    font-size: 1.3rem;
  }

  .conversations-description h3 {
    font-size: 1.4rem;
  }

  .conversations-description p {
    font-size: 0.95rem;
  }

  .conversations-sidebar {
    padding: 30px 15px;
  }

  .past-conversations-title {
    font-size: 1.5rem;
  }

  .conversation-actions {
    flex-direction: row;
  }
}

