@charset "utf-8";
/* CSS Document */
body {
      background: radial-gradient(circle at top left, #eef2ff 0, #f9fafb 50%, #E6F9FF 100%);
    }
.overlay-spinner {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
	animation: pulse 1s infinite ease-in-out;
	}
@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.nav-item .active{
	text-decoration: underline !important;
	text-underline-offset: 6px !important;
	text-decoration-thickness: 2px;
}
.SearchGrid4{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  padding: 10px;
 }
.SearchGrid5{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  padding: 10px;
 }
.SearchGrid6{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
  padding: 10px;
 }
.SearchGrid8{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 10px;
  padding: 10px;
 }

.SearchShadow{
	padding: 26px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    margin-bottom: 32px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dc3545; /* Inactive = Red */
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #28a745; /* Active = Green */
}

input:checked + .slider:before {
  transform: translateX(26px);
}
.lang-switch {
    padding: 6px 12px;
    background: #005bbb;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    margin-left: 10px;
	margin-right: 10px;
}
.lang-switch:hover {
    background: #004a99;
}

@media (max-width:1100px){
  .SearchGrid{
	  grid-template-columns: 1fr 1fr; 
	  gap: 1em;
	  
  }
.SearchGrid4{
	  grid-template-columns: 1fr 1fr; 
	  gap: 1em;
	  
  }
.SearchGrid5{
	  grid-template-columns: 1fr 1fr; 
	  gap: 1em;
	  
  }
.SearchGrid6{
	  grid-template-columns: 1fr 1fr; 
	  gap: 1em;
	  
  }
  .SearchGrid8{
	  grid-template-columns: 1fr 1fr; 
	  gap: 1em;
	  
  }
  .SearchGrid10{
	  grid-template-columns: 1fr 1fr; 
	  gap: 1em;
	  
  }
  

 }

@media (max-width:650px){
  .SearchGrid{
	  grid-template-columns: 1fr; 
				gap: 1em;
	  
  }
 
.SearchGrid4{
	  grid-template-columns: 1fr; 
				gap: 1em;
	  
  }
.SearchGrid5{
	  grid-template-columns: 1fr; 
				gap: 1em;
	  
  }
	.SearchGrid6{
	  grid-template-columns: 1fr; 
	  gap: 1em;
	  
  }
.SearchGrid8{
	  grid-template-columns: 1fr; 
				gap: 1em;
	  
  }
.SearchGrid10{
	  grid-template-columns: 1fr; 
				gap: 1em;
	  
  }


}
.Hover-zoom{
	transition: transform 0.3s ease;
}
.Hover-zoom:hover{
	transform: scale(1.05);
}
.hero {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 1.4fr);
      gap: 32px;
      padding: 26px 24px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
      margin-bottom: 32px;
    }

    .hero-kicker {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #1f6feb;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .hero-title {
      font-size: 3em;
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .hero-highlight {
      background: linear-gradient(120deg, #1f6feb, #f97316);
      -webkit-background-clip: text;
      color: transparent;
    }
.hero-subtitle {
      font-size: 14px;
      color: #6b7280;
      max-width: 420px;
      margin-bottom: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-bottom: 14px;
    }
.featured-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }
@media (max-width:1200px){
	.featured-grid{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (max-width:850px){
	.featured-grid{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.post-card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      padding: 12px;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
      display: flex;
      flex-direction: column;
      gap: 8px;
	  position: relative;
    }

    .post-thumb {
      border-radius: 10px;
      background: linear-gradient(135deg, #1f2937, #0f172a);
      height: 120px;
      position: relative;
      overflow: hidden;
    }

.post-thumb-label {
      position: absolute;
      bottom: 8px;
      left: 8px;
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      color: #e5e7eb;
      border: 1px solid rgba(148, 163, 184, 0.5);
    }

    .post-title {
      font-size: 1.3em;
      font-weight: 600;
	  color: black;
	  padding: 12px 12px 0px 12px;
    }

    .post-excerpt {
		padding: 0px 12px 0px 12px;
  
      color: #6b7280;
		font-size: .8em;
    }
.post-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: #6b7280;
      margin-top: 4px;
	  padding: 0px 12px 12px;
    }

    .post-meta span.tag {
      padding: 2px 7px;
      border-radius: 999px;
      background: #eff6ff;
      color: #1d4ed8;
      font-size: 11px;
    }
