* {
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.header {
  z-index: 999;
}

/*Avatar */
.avatar {
  width: 60px;
  height: 60px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

/* Colors */
.color-primary{
	color: #2b3990 !important;
}

.color-secondary{
	color: #B80303 !important;
}

.color-light{
	color: #fffcff !important;
}

.color-dark{
	color: #302f2c !important;
}

.bg-primary, .btn-primary {
	background-color: #2b3990 !important;
	border-color: #2b3990 !important;
}

.bg-secondary, .btn-danger, .bg-danger {
	background-color: #B80303 !important;
}

.bg-light{
	background-color: #fffcff !important;
}

.bg-dark{
	background-color: #302f2c !important;
}

/* BRAND */
.bg-brand {
  background-color: #ffffff !important;
}

.bg-yellow {
  background-color: yellow !important;
}

.text-brand {
  background-color: blue !important;
}

.text-brand-light {
  color: rgb(63, 63, 141) !important;
}

.text-ig {
  color: hotpink !important;
}

.border-brand {
  border-color: blue !important;
}

.border-yellow {
  border-color: yellow !important;
}

.tagline {
  font-size: 16px;
}

/* Fonts & Text */
.font-cinzel {
  font-family: 'Cinzel', sans-serif;
}

.link {
  color: #1f1f1f;
  text-decoration: none;
}

.link:hover {
  cursor: pointer;
  color: #1f1f1f;
}

.sitemap-link {
  color: var(--bs-text-secondary);
  text-decoration: none;
  font-weight: 500;
}

.sitemap-link:hover {
  color: #c1c1c1;
}

.hero-image {
  object-fit: cover;
  width: 100%;
  height: 500px;
}

/* MEDIA QUERIES BELOW LG SCREEN */
@media (max-width: 992px) {
  .post-secondary-img-thumbnail {
    height: 320px;
  }
  .hero-image {height: 200px;}
}

/* MEDIA QUERIES BELOW MD SCREEN */
@media (max-width: 768px) {
  .post-secondary-img-thumbnail {
    height: 200px;
  }
  .text-sm{
  	font-size: 0.7rem;
  }
  .hero-image {height: 220px;}
}

/* Items */
.item-unavailable {
  opacity: 0.5;
  pointer-events: none;
  background-color: #f1f1f1;
  position: relative;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #B80303;
  font-weight: bold;
  background-color: #ffffffaa;
  text-align: center;
}

.dashboard-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.dashboard-icon i {
  font-size: 1.6rem;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .feature-card {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 20px;
  }

  .feature-card i {
      margin-right: 20px;
      font-size: 2.5em;
  }

  .feature-card h4, .feature-card p {
      text-align: left;
  }
}