/* Mini Bootstrap CSS for Blog Layout */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-12, .col-md-6, .col-md-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .col-md-6, .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Blog specific styles */
.hero-post {
  margin-bottom: 2rem;
}

.border {
  border: 1px solid var(--md-default-fg-color--lightest) !important;
}

.border-radius {
  border-radius: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.m-0 {
  margin: 0 !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.bg-thumbnail-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-thumbnail-image-post {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.truncation-marker {
  /* Add any truncation styles here if needed */
} 