/* Subtitle under the H1 on single pages */
#single .subtitle{
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #757575;
  margin-top: 6px;
  margin-bottom: 18px;
}

/* Make in-article images/figures truly centered */
#single .content img,
#single .content figure{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* (Optional) keep images from being color-inverted by your dark-mode rule */
html[theme='dark-mode'] img,
html[theme='dark-mode'] video,
html[theme='dark-mode'] svg{
  filter: invert(1) hue-rotate(180deg); /* cancels the parent filter */
}







@media (max-width: 700px) {
  /* Tagline under avatar */
  .profile h2 {
    font-size: 16px;   /* slightly smaller */
    line-height: 1.4;
    max-width: 90%;
    margin: 8px auto 20px;
    color: #666;       /* darker gray for readability */
  }

  /* Post titles */
  #list-page .title {
    font-size: 16px;   /* a touch smaller for balance */
    line-height: 1.3;
    margin-bottom: 2px;
  }

  /* Post dates */
  #list-page .date {
    font-size: 12px;
    color: #999;       /* a little darker than #bbb */
    margin-top: 0;
    margin-bottom: 12px;
  }

  /* Navigation */
  nav.navigation {
    text-align: center;
    padding-top: 10px;
  }
  nav.navigation a {
    margin: 0 10px;
    font-size: 14px;
  }

  #list-page .item {
    margin: 20px 0;
    /* border-bottom: 1px solid #f0f0f0; */
    /* padding-bottom: 12px; */
  }
}


/* Put this in your custom.css that loads AFTER the theme */
@media (max-width: 700px) {
  /* Let the title take the full row */
  #list-page .title {
    width: 100% !important;
    display: block !important;
    font-size: 16px;         /* optional size tweak */
    line-height: 1.3;
    margin-bottom: 2px;
  }

  /* Force the date under the title */
  #list-page .date {
    float: none !important;      /* kill the float */
    width: auto !important;
    position: static !important;
    display: block !important;
    clear: both !important;
    text-align: left !important;
    font-size: 12px;             /* optional size tweak */
    color: #999;
    margin: 2px 0 12px !important;
  }
}
