.container-header {
background-color: #9dc183 !important;
}


/* Center the breadcrumbs when placed in banner */
.breadcrumbs-centre {
    text-align: center;
}

.breadcrumbs-centre nav {
    display: inline-block; /* shrink to fit content */
}


@charset "UTF-8";
:root {
    /*turn banner green*/
--cassiopeia-color-primary:#318531;
--cassiopeia-color-link:#224faa;
--link-color:#224faa;
--link-color-rgb:34,79,170;
/*also needed to give one colour across the top*/
--cassiopeia-color-hover:#364f34;
--link-hover-color:#424077;
--link-hover-color-rgb:66,64,119;
}
/*--cassiopeia-color-primary:#2a5511;*/
/*--cassiopeia-color-link:#224faa;*/
/*--cassiopeia-color-hover:#424077;*/

.image-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.image-row div {
  flex: 1 1 30%;
  max-width: 33%;
}

.image-row img {
  width: auto;
  height: 200px; /* shrink here */
  object-fit: cover;
  object-position: top;
  justify-content: center;  
  border-radius: 6px;
}
/* Ensure the header container is positioned relatively */
.header {
  position: relative;
}


/* Move the Menu module inline (left side of header) */
/*.header .mod-menu {
  position: absolute;   /* relative keeps it inline */
/*  top: 10px;            /* optional vertical adjustment */
/*  right: 400px;    /* optional spacing from left edge */
/*  z-index: 1000;
/*}*/

#mod-custom112.mod-custom.custom {
    margin-left: auto;   /* pushes it to the right in the header */
    display: flex;        /* so your social links stay in a row */
    gap: 10px;            /* space between icons/links */
}



/* === Repair Cafe two-column section (responsive) === */
.repair-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5em;
}

.repair-text {
  flex: 1 1 65%;
  min-width: 300px;
}

.repair-image {
  flex: 1 1 25%;
  text-align: center;
}

.repair-image img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

/* Stack nicely on phones */
@media (max-width: 768px) {
  .repair-flex {
    flex-direction: column;
  }

  .repair-image img {
    max-width: 60%;
  }
}


/* Uncomment this block to place the picture before the text*/
/*@media (max-width: 768px) {
  .repair-flex {
    flex-direction: column-reverse;
  }
}
*/

/* hide heading inside the misc info block */#module-112.social-donate {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Module container itself */
#module-112 {
  width: 100%;          /* make sure it fits the viewport */
  max-width: 100%;      /* prevent horizontal overflow */
  padding: 0 10px;      /* optional: small padding so content doesn’t touch edges */
  box-sizing: border-box;
  overflow-x: hidden;   /* prevent scrolling if container tries to overflow */
}

/* Flex container with icons */
#module-112.social-donate {
  display: flex;
  justify-content: flex-end; /* align icons right */
  align-items: center;       /* vertical alignment */
  gap: 10px;
  flex-wrap: wrap;           /* allow stacking on small screens */
}

/* Limit image sizes */
#module-112.social-donate a:first-child img { /* Facebook */
  max-width: 24px;
  height: auto;
}

#module-112.social-donate a:last-child img { /* Give-A-Little */
  max-width: 100px;
  height: 30px;
}

/* Optional stacking on very small screens */
@media (max-width: 350px) {
  #module-112.social-donate {
    flex-direction: column;
    gap: 5px;
    align-items: flex-end; /* keep right-aligned when stacked */
  }
}

