:root {
    --cassiopeia-color-primary: #240000; /* your new color */
    --cassiopeia-color-primary-dark: #000; /* your new color */
    --cassiopeia-color-link: #ff0000;
    --cassiopeia-color-hover: #240000; /* #240000; #212121*/
}

.container-header
{
  height: 10px;
}

/* Cassiopeia 2/3 - 1/3 Sidebars Adjustments */
@media (min-width: 800px) 
{
  body.wrapper-fluid .site-grid {
    grid-template-columns: [full-start] minmax(0,1fr) [main-start] minmax(0,5%) minmax(0,30%) minmax(0,30%) minmax(0,35%) [main-end] 1px [full-end]
      }

   body.wrapper-fluid .site-grid 
    {
      margin: 0 auto;
      width: 85%;
   }

  .footer .grid-child {
      width: 85%;
      margin: 0 auto;
  }
}  
  .footer {
    border-top: 4px #7d0202 solid;
}

/* Mobile view */
@media (max-width: 900px) {
  .three-columns {
    grid-template-columns: 1fr;
  }
  
    /* mobile reduce grid gap */
  body.wrapper-fluid .site-grid {
    grid-gap: 0 1em;
    width: 100%;
  }  
}

.mobilemenuck-bar-title {
  background: #8f1b1b!important;
  }

.mobilemenuck {
  background: #1c1c1c!important;
  }

.mobilemenuck-title {
  background: #000!important;
  }

.mobilemenuck-item .level1{
  background: #5B1515!important;
  }

.mobilemenuck-item .level2{
  background: #FFC6C6!important;
  }

[itemprop="headline"] {
    font-size: 24px; /* Specific font size */
  padding: 10px; 
  border-bottom: 2px brown dotted; 
  color:#850000;;
}

h2[itemprop="name"] a {
  font-size: 24px;
  padding: 10px; 
  border-bottom: 2px brown dotted; 
  color:#850000;;
}

blockquote {
  /* Remove default browser margins if desired */
  margin: 1em 0; 
  padding: 1em 2em;
  
  /* Add a distinct left border */
  border: 1px solid #555;
  border-left: 5px solid #850000; /* A nice teal color */
  
  /* Add subtle background color */
  background-color: #f9f9f9;
  
  /* Optional: change font style */
  font-style: italic;
  color: #850000;
  line-height: 1.6;
}

blockquote:before {
  color: #ccc;
  content: '“';
  font-family: Georgia;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px auto;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.col {
  padding: 20px;
  background: rgba(242, 242, 242, 0.05);
}

ul.mod-articlescategory li {
  padding: 10px;
  padding-left: 0px;
  list-style: circle;
  display: block;
}

.title-me
{
  padding: 10px; 
  border-bottom: 2px brown dotted; 
  color: #850000;
  display: block;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 photos per row */
  gap: 10px; /* space between photos */
}

.photo-grid img {
  width: 100%;       /* make each image fill its grid cell */
  height: auto;      /* keep aspect ratio */
  object-fit: cover; /* crop/scale if needed */
  display: block;
  aspect-ratio: 1 / 1;   /* makes it square */
  overflow: hidden;
  margin: 5px;
}

