/* Additional styling for Films and Episodics page */

/* Improve readability with wider layout and better spacing */
.content-column-content .two-column-layout {
  padding: 0 15px;
}

/* Make project titles stand out more */
.content-column-content .two-column-layout .project-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
  letter-spacing: 0.01em;
}

/* Improve project details formatting */
.content-column-content .two-column-layout .project-details {
  white-space: pre-line; /* Preserve line breaks */
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Add subtle separator between projects */
.content-column-content .two-column-layout .project:not(:last-child) {
  position: relative;
}

/* Improve year headings */
.content-column-content .two-column-layout .year-section h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #eee;
  border-bottom: 2px solid #444;
  padding-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  .content-column-content .two-column-layout .project-title {
    color: #eee;
  }
  
  .content-column-content .two-column-layout .year-section h2 {
    color: #eee;
  }
}

/* Ensure proper spacing between lines in project details */
.content-column-content .two-column-layout .project-details p {
  margin-bottom: 0.7rem;
}

/* Add subtle hover effect */
.content-column-content .two-column-layout .project:hover {
  transform: translateY(-2px);
}

/* Ensure proper spacing for mobile */
@media (max-width: 767px) {
  .content-column-content .two-column-layout .project {
    margin-bottom: 2.5rem;
    padding: 20px;
  }
  
  .content-column-content .two-column-layout .project-title {
    font-size: 1.3rem;
  }
  
  .content-column-content .two-column-layout .project-details {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
