/* Fix for blog post layout issues */

/* Hide the default Jekyll-generated title to prevent duplication */
.post .post-title {
  display: none;
}

/* Hide the default date display that appears on the left */
.post .post-meta {
  display: none;
}

/* Hide category tags and commas */
.post-date-display a, 
.post-date-display .comma, 
.post-categories,
.categories-list,
.post-date-display:after,
.post-date-display:before {
  display: none !important;
}

/* Remove any remaining commas */
.post-date-display {
  content: attr(data-date) !important;
}

/* Keep only the date */
.post-date-display {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Improve content alignment and spacing - wider content area */
.post-content {
  max-width: 900px;  /* Increased from 800px */
  margin: 0 auto;
  padding: 0 2rem;
}

/* Main text content alignment */
.post-content p, 
.post-content h2, 
.post-content h3, 
.post-content table, 
.post-content ol, 
.post-content ul {
  max-width: 900px; /* Increased from 800px */
  margin-left: auto;
  margin-right: auto;
}

/* Ensure the centered title remains properly centered and is red */
.centered-title {
  margin-top: 4rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 1000px !important; /* Increased from 900px */
  margin-left: auto;
  margin-right: auto;
  color: #ff3366 !important; /* Make title red to match brand color */
}

/* Better table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
}

table th, table td {
  padding: 0.75rem;
  border: 1px solid #333;
}

table th {
  background-color: #222;
}

/* Better spacing for section headers */
h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Sources list styling */
ol {
  padding-left: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .post-content {
    padding: 0 1.5rem;
  }
  
  .centered-title {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
/* Callout box styles */
.callout-box {
  background-color: #222222;
  border-left: 4px solid #ff3366;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.callout-box p:first-child {
  margin-top: 0;
}

.callout-box p:last-child {
  margin-bottom: 0;
}

.callout-box strong {
  color: #ffffff;
}
}
