.text-center{
  text-align:center;
}
#img-logo{
  width:300px;
}
#banner{
  padding:0px;
}
.logo a{
  text-decoration: none;
  border-bottom:none;
}
/*
#banner .major{
 height:0px;
}*/

@import 'sliders';

.subnavbar{
  justify-content: center;
  width: 100%;
}
.subnavbar ul li{
  list-style: none;
}
.subnavbar ul {
  margin: 0 0;
}
html {
  scroll-behavior: smooth;
}

iframe { 
  max-width: 100%;
}

/* Post/Page Content Styles */
#main {
  background-color: #242943;
  padding: 4em 0;
}

#main .inner {
  max-width: 65em;
  margin: 0 auto;
  padding: 0 2em;
}

.post-content {
  line-height: 1.8;
  font-size: 1.1em;
}

.post-content p {
  margin-bottom: 1.5em;
}

.post-content h2, 
.post-content h3, 
.post-content h4 {
  margin-top: 2em;
  margin-bottom: 1em;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1em 0;
}

.post-content blockquote {
  border-left: solid 4px #9bf1ff;
  font-style: italic;
  padding: 1em 0 1em 2em;
  margin: 2em 0;
  background: rgba(155, 241, 255, 0.05);
}

.post-content ul, 
.post-content ol {
  margin-bottom: 2em;
  padding-left: 1.5em;
}

.post-content ul li {
  list-style: disc;
  margin-bottom: 0.5em;
}

.post-content ol li {
  list-style: decimal;
  margin-bottom: 0.5em;
}

/* Archive Grid & Cards */
.archive-grid {
  justify-content: flex-start;
}

.post-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(155, 241, 255, 0.1);
}

.post-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(155, 241, 255, 0.3);
}

.post-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.1);
}

.post-card-content {
  padding: 2em;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card-title {
  margin-bottom: 1em;
  font-size: 1.25em !important;
}

.post-card-title a {
  border-bottom: none;
  color: #9bf1ff !important;
}

.post-card-excerpt {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 2em;
  flex-grow: 1;
}

.post-card footer {
  margin-top: auto;
}

.post-card footer .button {
  width: 100%;
  text-align: center;
}

/* Pagination Styling */
.pagination-wrapper {
  text-align: center;
  padding: 2em 0;
}

.pagination-wrapper .page-numbers {
  display: inline-block;
  padding: 0.5em 1em;
  margin: 0 0.25em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.pagination-wrapper .page-numbers.current {
  background: #9bf1ff;
  color: #242943 !important;
  border-color: #9bf1ff;
}

/* Language Switcher */
.lang-item {
  border-bottom: none !important;
  padding: 0 5px;
}

.lang-item.active {
  color: #9bf1ff !important;
  font-weight: bold;
}