/* Sidebar left before content/*
@media (max-width: 991px) {
	.site-grid {
		grid-template-areas: 
			".banner banner banner banner." 
			".top-a top-a top-a top-a." 
			".top-b top-b top-b top-b." 
	          	".side-l side-l side-l side-l." 
			".comp comp comp comp." 
			".side-r side-r side-r side-r." 
			".bot-a bot-a bot-a bot-a." 
			".bot-b bot-b bot-b bot-b.";
	}
}

/* Languages to the right */
.container-below-top {
  display: flex;
  justify-content: right;
}

/* https://magazine.joomla.org/all-issues/september-2021/joomla-4-tweak-cassiopeia-with-a-top-banner-and-horizontal-navigation */

@media (min-width: 991px) {
    .navbar-brand img {
	    margin: auto 25%;
    }
}

.container-header {
    background-color: #174b83;
    background-image: none;
}

/* https://github.com/joomla/joomla-cms/pull/40620 */

@media (max-width: 991px) {
  .page-item {
    display: none;

    &:nth-of-type(4) {
      position: relative;
      padding-right: 45px;

      &::after {
        content: '\2026';
        position: absolute;
        font-size: 24px;
        top: 0;
        left: 45px;
      }
    }

    &:nth-child(-n+4),
    &:nth-last-child(-n+4) {
      display: block;
    }
  }
}