/* Post Card Styles */

/* 카드 링크 스타일 */
.post-card-link {
  display: block;
  text-decoration: none !important;
  color: inherit;
  margin-bottom: 36px;
}

.post-card-link:hover {
  text-decoration: none !important;
}

/* Legacy post 내부에서도 밑줄 제거 */
.legacy-post .post-card-link,
.legacy-post .post-card-link:hover {
  text-decoration: none !important;
}

.legacy-post .post-card-link .post-card-date,
.legacy-post .post-card-link .post-card-date span {
  text-decoration: none !important;
}

.post-card-link:last-child {
  margin-bottom: 0;
}

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
  overflow: hidden;
  margin: 0; /* 명시적으로 margin 제거 */
}

/* 1년 이상 된 글의 배경색 */
.post-card.old-post {
  background-color: #f9fafb;
}

.post-card.old-post .post-card-content {
  background-color: #f9fafb;
}

/* 색상 영역 - 기본적으로 모바일에서 상단에 표시 */
.post-card-color-strip {
  display: flex;
  height: 50px;
  background-color: var(--card-color, #E8D5D5);
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
}

/* 모바일에서 날짜 스타일 */
.post-card-color-strip .post-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.7);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.post-card-color-strip .date-day,
.post-card-color-strip .date-month,
.post-card-color-strip .date-year {
  all: unset;
  font-size: 13px;
  font-weight: 500;
}

/* 모바일에서 메타 정보의 날짜 숨기기 */
.post-card-time {
  display: none;
}

.meta-separator.mobile-only {
  display: none;
}

/* Desktop에서 레이아웃 변경 */
@media (min-width: 768px) {
  .post-card {
    flex-direction: row;
  }
  
  .post-card-color-strip {
    width: 20%;
    height: auto;
    padding: 0;
    justify-content: center;
  }

  .post-card-color-strip .post-card-date {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .post-card-color-strip .date-day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
  }

  .post-card-color-strip .date-month {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
  }

  .post-card-color-strip .date-year {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.7;
  }
  
  /* Desktop에서도 메타 정보의 날짜 숨김 유지 */
  .post-card-time {
    display: none;
  }
  
  .meta-separator.mobile-only {
    display: none;
  }
}

.post-card-content {
  flex: 1;
  padding: 28px;
}

/* 카드 호버 효과 */
.post-card-link:hover .post-card {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.post-card-title {
  font-size: 20px !important;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  color: #0d0d0d;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}

/* h2 태그의 기본 margin 제거 */
h2.post-card-title {
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
}

/* 추천 글 카드의 제목 크기 조정 */
.related-posts-cards .post-card-title {
  font-size: 18px !important;
}

/* Legacy post 페이지의 추천 글 제목 */
.legacy-post .related-posts-cards .post-card-title {
  font-size: 18px !important;
}

.post-card-meta {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}

/* Mobile에서는 색상 영역이 없으므로 패딩 조정 */
@media (max-width: 767px) {
  .post-card-content {
    padding: 24px;
  }
}

.post-author {
  color: #374151;
  font-weight: 500;
  display: inline-block;
}

/* Desktop에서 저자 강조 */
@media (min-width: 768px) {
  .post-author {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-right: 12px;
  }
}

.post-card-meta time {
  color: #6b7280;
}

.post-card-meta .meta-separator {
  margin: 0 6px;
  color: #9ca3af;
}

.post-card-meta .post-excerpt {
  color: #4b5563;
  display: block;
  margin-top: 6px;
}

/* 추천 글 카드 특별 스타일 */
.related-posts-cards {
  display: flex;
  flex-direction: column;
}

/* 추천 글 카드 자체의 margin 제거 (margin은 link에서만 관리) */
.related-posts-cards .post-card {
  margin: 0 !important;
  min-height: auto;
}

/* 추천 글에서는 root#index와 동일한 margin 사용 */
.related-posts-cards .post-card-link {
  margin-bottom: 36px !important;
  margin-top: 0 !important;
}

.related-posts-cards .post-card-link:last-child {
  margin-bottom: 0 !important;
}

.related-posts-cards .post-card-content {
  padding: 20px !important;
}

@media (min-width: 768px) {
  .related-posts-cards .post-card-content {
    padding: 24px !important;
  }
}

/* Legacy post 페이지의 추천 글 섹션 패딩 조정 */
.legacy-post .related-posts {
  padding-top: 2rem;
}

/* Legacy post 페이지의 추천 글 카드 - margin 중복 방지 */
.legacy-post .related-posts-cards .post-card {
  margin: 0 !important; /* post-card 자체 margin 제거 */
}

/* Legacy post 페이지의 추천 글 카드 링크 간격 */
.legacy-post .related-posts-cards .post-card-link {
  margin-bottom: 36px !important;
  margin-top: 0 !important;
}

.legacy-post .related-posts-cards .post-card-link:last-child {
  margin-bottom: 0 !important;
}

/* 모바일에서 Legacy post 추천 글 카드 조정 */
@media screen and (max-width: 650px) {
  .legacy-post .related-posts-cards .post-card-link {
    margin-bottom: 24px !important;
  }
}

/* 첫 번째 카드의 상단 여백 제거 */
.related-posts-cards .post-card-link:first-child {
  margin-top: 0;
}