/* === Make each post into a neat card === */
.blog .inside-article,
.archive .inside-article {
  background-color: #F5F1EC;
  border: 1px solid #D9CEC3;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 90%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  position: relative; /* allows absolute positioning inside */
}

/* === Move featured image (album cover) === */
.blog .inside-article .post-image {
  position: absolute;
  top: 1px;
  left: 20px;
}

.blog .inside-article .post-image img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* === Add padding on the left so text doesn’t overlap the image === */
.blog .inside-article .entry-header,
.blog .inside-article .entry-summary {
  margin-left: 140px; /* space for image + gap */
}

/* === Title and text styling === */
.blog .inside-article .entry-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
  text-align: left;
}

.blog .inside-article .entry-summary {
  font-size: 1em;
  line-height: 1.5;
  color: #333;
  text-align: left;
}
@media (max-width: 600px) {
  /* Allow the title to wrap */
  .site-branding .main-title,
  .site-branding .main-title a {
    display: block;             /* block allows wrapping */
    white-space: normal !important; /* override nowrap */
    word-break: break-word;     /* prevent long words from overflowing */
    text-align: center;         /* center for mobile */
    font-size: 1.8em;           /* adjust size for mobile */
    line-height: 1.2em;         /* adjust spacing */
  }

  /* Optional: adjust description under title */
  .site-description {
    text-align: center;
    font-size: 1em;
    line-height: 1.3em;
  }
}
/* Hide the automatic featured image at top of single posts */
.single .featured-image,
.single .post-image,
.single .inside-article .post-image {
  display: none !important;
}
.site-header {
  padding-top: 30px;
  padding-bottom: 50px;
}
/* Hide the tagline on single posts but keep it on homepage */
.single .site-description {
  display: none !important;
}
/* 1) Make sure any automatic featured image will sit to the right of the post header */
.single .post-thumbnail,
.single .featured-image,
.single .entry .post-image,
.single .inside-article .post-thumbnail,
.single .inside-article .featured-image {
  float: right !important;
  margin: 0 0 1rem 1.5rem !important; /* space between image and text */
  max-width: 260px !important;        /* adjust size */
  width: auto !important;
  border-radius: 6px;
}
.wp-block-image.alignright {
    float: right;
    margin: 0 0 15px 15px;
}