* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #0f1419;
  color: #a8b2c8;
  line-height: 1.6;
}

.wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: #1a1f2e;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-header .header-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-header .site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.site-header .site-title {
  color: #c5cdd9;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.site-header .site-logo {
  width: 45px;
  height: 45px;
  background-color: #5b8fb9;
  border-radius: 50%;
  flex-shrink: 0;
}
.site-header .site-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.site-header .site-nav a {
  color: #a8b2c8;
  text-decoration: none;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.site-header .site-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #c5cdd9;
}
@media (max-width: 720px) {
  .site-header .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header .site-nav {
    margin-left: 0;
  }
}

.page-content {
  min-height: calc(100vh - 200px);
  padding: 40px 0;
}

.content-card {
  background-color: #2a3348;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.content-title {
  color: #c5cdd9;
  font-size: 32px;
  margin-bottom: 12px;
}

.content-meta {
  color: #a8b2c8;
  font-size: 14px;
  margin-bottom: 24px;
}

.content-body {
  color: #a8b2c8;
  line-height: 1.8;
}
.content-body p {
  margin-bottom: 18px;
}
.content-body a {
  color: #7ba7c7;
  text-decoration: none;
  border-bottom: 1px solid rgba(123, 167, 199, 0.4);
}
.content-body a:hover {
  color: #c5cdd9;
  border-bottom-color: #7ba7c7;
}

.home-container .wrapper {
  max-width: 1400px;
}

.featured-post {
  margin-bottom: 40px;
  background-color: #2a3348;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.featured-post .post-hero {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.featured-post .post-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(26, 31, 46, 0.8) 100%);
}
.featured-post .featured-content {
  padding: 30px;
}
.featured-post .featured-content .post-title {
  font-size: 28px;
  margin-bottom: 15px;
}
.featured-post .featured-content .post-title a {
  color: #c5cdd9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.featured-post .featured-content .post-title a:hover {
  color: #7ba7c7;
}
.featured-post .featured-content .post-excerpt {
  color: #a8b2c8;
  font-size: 16px;
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 768px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background-color: #2a3348;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.post-card:hover .post-thumbnail .thumbnail-overlay {
  background-color: rgba(26, 31, 46, 0.6);
}
.post-card .post-thumbnail {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.post-card .post-thumbnail .thumbnail-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 31, 46, 0.4);
  transition: background-color 0.3s ease;
}
.post-card .post-info {
  padding: 20px;
}
.post-card .post-card-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.post-card .post-card-title a {
  color: #c5cdd9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.post-card .post-card-title a:hover {
  color: #7ba7c7;
}
.post-card .post-card-excerpt {
  color: #a8b2c8;
  font-size: 14px;
  line-height: 1.6;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.widget {
  background-color: #2a3348;
  border-radius: 8px;
  padding: 25px;
}
.widget .widget-title {
  color: #c5cdd9;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.profile-widget {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-widget .profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.profile-widget .profile-avatar {
  width: 64px;
  height: 64px;
  background-color: #5b8fb9;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-widget .profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-widget .profile-avatar .avatar-placeholder {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}
.profile-widget .profile-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile-widget .profile-name {
  color: #c5cdd9;
  font-size: 18px;
  font-weight: 600;
}
.profile-widget .profile-role,
.profile-widget .profile-location {
  color: #a8b2c8;
  font-size: 13px;
}
.profile-widget .profile-bio {
  color: #a8b2c8;
  font-size: 14px;
  line-height: 1.6;
}
.profile-widget .profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.profile-widget .profile-links .profile-link {
  color: #c5cdd9;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.profile-widget .profile-links .profile-link:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.profile-widget .profile-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-widget .profile-lines .line {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.profile-widget .profile-lines .line:nth-child(1) {
  width: 80%;
}
.profile-widget .profile-lines .line:nth-child(2) {
  width: 100%;
}
.profile-widget .profile-lines .line:nth-child(3) {
  width: 60%;
}

.tags-widget .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tags-widget .tag-cloud .tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #5b8fb9;
  border-radius: 20px;
  font-size: 13px;
  color: #c5cdd9;
  transition: all 0.3s ease;
}
.tags-widget .tag-cloud .tag:hover {
  background-color: #7ba7c7;
  transform: translateY(-2px);
}

.about-widget .about-text {
  color: #a8b2c8;
  font-size: 14px;
  line-height: 1.7;
}
.about-widget .about-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-widget .about-lines .line {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
.about-widget .about-lines .line.short {
  width: 40%;
}

.widget-empty {
  color: #a8b2c8;
  font-size: 14px;
  opacity: 0.8;
}

.site-footer {
  background-color: #1a1f2e;
  padding: 30px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.site-footer .footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.site-footer .footer-links a {
  color: #a8b2c8;
  text-decoration: none;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.site-footer .footer-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #c5cdd9;
}

/*# sourceMappingURL=midnight-mountains.css.map */