
/* STYLE MEDIUM */
/* Medium-inspired CSS for blog post styling with mensapost class */

/* General Reset for elements within mensapost */
.mensapost * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container for content width */
.mensapost .container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Body text */
.mensapost .text-body {
  font-family: "Charter", Georgia, serif;
  font-size: 18px;
  line-height: 1.58;
  color: rgba(0, 0, 0, 0.84);
  text-align: justify;
  margin-bottom: 1.5em;
}

/* Main heading (h1) */
.mensapost .heading-primary {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.84);
  margin-bottom: 0.5em;
}

/* Subheading (h2) */
.mensapost .heading-secondary {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.84);
  margin-bottom: 0.5em;
}

/* Subtitle or caption */
.mensapost .text-subtitle {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.54);
  margin-bottom: 1em;
}

/* Blockquote */
.mensapost .quote {
  font-family: "Charter", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.58;
  color: rgba(0, 0, 0, 0.84);
  border-left: 4px solid rgba(224, 224, 224, 1);
  padding-left: 16px;
  margin: 1.5em 0;
}

/* Inline code */
.mensapost .code-inline {
  font-family: "Source Code Pro", monospace;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 4px;
  border-radius: 3px;
}
.mensapost .cite  {
	  color: #150f35 !important;
	    font-size: !important 1.3rem;
    }

/* Code block */
.mensapost .code-block {
  font-family: "Source Code Pro", monospace;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.05);
  padding: 16px;
  border-radius: 5px;
  overflow-x: auto;
  margin: 1.5em 0;
}

/* Highlighted text */
.mensapost .text-highlight {
  background-color: rgba(255, 235, 59, 0.2);
  padding: 2px 4px;
  border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mensapost .container {
    max-width: 100%;
    padding: 0 16px;
  }
  .mensapost .heading-primary {
    font-size: 28px;
  }
  .mensapost .heading-secondary {
    font-size: 22px;
  }
  .mensapost .text-body {
    font-size: 16px;
    line-height: 1.5;
  }
  .mensapost .text-subtitle {
    font-size: 14px;
  }
  .mensapost .quote {
    font-size: 16px;
  }
}
.mensapost  p {
color: #444 !important;
font-size: 1.3rem;
}
