.logo-text {
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 992px) {
    .hero {
        height: 50vh;
    }

    .hero__wrap .hero__title {
      font-size: 30px !important;
    }

    .hero__meta {
      font-size: 12px !important;
    }
}

@media (min-width: 991px) {
    .hero {
        height: 90vh !important;
    }

    .hero__wrap .hero__title {
      font-size: 2.3em !important;
    }

    .hero__meta {
      font-size: 15px !important;
    }
}

.hero--home:before {
  content: none !important;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75) !important; /* 원하는 어둡기 */
  z-index: 0;
}

.post-card__thumb >* {
    width: auto;
    height: fit-content;
    object-fit: cover; 
    top: 0;
    left: 0;
    object-position: center;
    display: block;
}

.post-card__thumb > img {
    position: absolute;
    object-fit: cover;     
    object-position: center !important;

}

.header__link {
    font-size: 12px;
}

.post-content {
    padding-top: 30px;
}


body {
    color: black !important;
    font-family: 'Noto Sans KR';
    line-height: 1.6;
    font-size: 16px;
}

h2 {
    font-size: 1.4em;
    font-weight: 600 !important;
}


footer {
    color: black !important;
}

.hero--small::before {
  background-image: url('/assets/img/hero2.jpg') !important;
}

.post-card {
  display: flex;
  flex-direction: row !important;
}

::selection {
  background-color: #0F52BA !important;
}


.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 400;
  margin-top: -20px !important;
}

/* 현재 페이지 */
.pagination .current {
  background: none;
  color: var(--color-primary, #0072ce);
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  box-shadow: inset 0 0 0 1px currentColor;
}

/* 일반 페이지 번호 */
.pagination a {
  color: inherit;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.pagination a:hover {
  background: var(--color-surface, #f8f9fa);
  color: var(--color-primary, #0072ce);
  border-color: currentColor;
  transform: translateY(-1px);
}

/* Next/Previous 링크 */
.pagination .next,
.pagination .previous {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid currentColor;
  background: none;
}

.pagination .next:hover,
.pagination .previous:hover {
  background: var(--color-primary, #0072ce);
  color: white;
  border-color: var(--color-primary, #0072ce);
}

/* 비활성 상태 */
.pagination .disabled {
  color: var(--color-text-muted, #6c757d);
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

/* 모바일 */
@media (max-width: 768px) {
  .pagination {
    gap: 0.25rem;
    font-size: 0.9rem;
  }
  
  .pagination .next,
  .pagination .previous {
    padding: 0.4rem 0.8rem;
  }
}