/* BSKR list */
@media (max-width: 576px) {
	.container {padding-left: 4px;padding-right: 4px;}
}
.badge {padding: .2em .4em;font-size: .6em;}

.gallery-card {
  display: flex;
  flex-direction: column;
  height: 340px; /* Ä«µå ÀüÃ¼ ³ôÀÌ (¿øÇÏ´Â °ªÀ¸·Î Á¶Á¤ °¡´É) */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ÀÌ¹ÌÁö ¿µ¿ª: Ä«µå ³ôÀÌÀÇ 60% */
.gallery-card .card-img-top {
  flex: 0 0 60%;
  width: 100%;
  overflow: hidden;
  object-fit: cover; /* ²Ë Ã¤¿ìµÇ ºñÀ² À¯Áö */
}

/* º»¹® ¿µ¿ª: Ä«µå ³ôÀÌÀÇ 40% */
.gallery-card .card-body {
  flex: 0 0 40%;
  padding: 1rem 1.2rem;
  overflow: hidden; /* ³»¿ëÀÌ ³ÑÄ¡¸é ¼û±è */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Á¦¸ñ/ÅØ½ºÆ®/¸ÞÅ¸ ±ÕÇü ¹èÄ¡ */
}

.card-title {font-size: 1rem;font-weight: 600;margin-bottom: 0.3rem;}
.card-text {font-size: 0.9rem;color: #6c757d;}
.meta {font-size: 0.8rem;color: #999;}
.file-icon {color: #6c757d;margin-left: 6px;}

/* BSKR view */
.post-container { background:white; border-radius:8px; padding:2rem; box-shadow:0 2px 10px rgba(0,0,0,0.125); }
.post-title { font-size:1.6rem; font-weight:600; }
.post-meta { font-size:0.9rem; color:#6c757d; border-bottom:1px solid #e9ecef; padding-bottom:.5rem; margin-bottom:1.5rem; }
.post-content { line-height:1.8; min-height:200px; }
.attach-list { list-style:none; padding-left:0; }
.attach-list li { margin-bottom:.4rem; display:flex; align-items:center; }
.attach-list li i { color:#6c757d; margin-right:8px; }
.attach-list a { text-decoration:none; color:#0d6efd; }
.attach-list a:hover { text-decoration:underline; }

.post-nav-container {margin-top: 40px;border-top: 1px solid #ddd;padding-top: 15px;font-size: 14px;color: #666;}
.post-nav-wrap {display: flex;justify-content: space-between;align-items: center;}
/* ¿ÞÂÊ(ÀÌÀü±Û), ¿À¸¥ÂÊ(´ÙÀ½±Û) ¿µ¿ª */
.post-nav-wrap > div {flex: 1;}
/* ¿À¸¥ÂÊ ¿µ¿ªÀº ±âº»ÀûÀ¸·Î ¿À¸¥ÂÊ Á¤·Ä */
.post-nav-wrap .next {text-align: right;}
/* ¸µÅ© ±âº» ½ºÅ¸ÀÏ */
.post-nav-wrap a {color: #666;text-decoration: none;display: inline-flex;align-items: center;transition: color 0.2s ease;}
.post-nav-wrap a:hover {color: #222;}
/* ¾ÆÀÌÄÜ °£°Ý */
.post-nav-wrap i {font-size: 15px;}
.post-nav-wrap .prev i {margin-right: 5px;}
.post-nav-wrap .next i {margin-left: 5px;}
/* ÀÌÀü/´ÙÀ½±Û ¾øÀ½ »óÅÂ */
.post-nav-wrap span {color: #aaa;}
/* =========================================================
¹ÝÀÀÇü (¸ð¹ÙÀÏ)
========================================================= */
	@media (max-width: 768px) {
	.post-nav-wrap {flex-direction: column;align-items: flex-start;gap: 10px;}
	.post-nav-wrap .next {text-align: left;}
	.post-nav-wrap a {width: 100%;}
}


/* BSKR write */
.switch-box {
  border: 1px solid #e0e0e0;   /* ¹Ú½º Å×µÎ¸® */
  border-radius: 8px;          /* µÕ±Ù ¸ð¼­¸® */
  padding: 10px 15px;          /* ³»ºÎ ¿©¹é */
  background-color: #f9f9f9;   /* ÀºÀºÇÑ ¹è°æ */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.switch-box:hover {
  background-color: #f1faff;   /* È£¹ö ½Ã »ö»ó °­Á¶ */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}