.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  width: calc(25% - 20px); /* ±âº»: 4°³ */
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.gallery-content {
  padding: 15px;
}

.gallery-content .cnt {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  text-align: center;
}

.gallery-content .cate {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: var(--top_font-color);  
}

.gallery-content .title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.pray-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

}

.pray-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  width: calc(16.67% - 20px); /* ±âº»: 4°³ */
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.pray-item:hover {
  transform: translateY(-5px);
}

.pray-item img {
  width: 100%;
  object-fit: cover;
}

.pray-content {
  padding: 15px;
}

.pray-content .cnt {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  text-align: center;
}

.pray-content .title {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px
}

.pray-content .cnt .download {width: 100px; height: 35px; line-height: 35px; font-size: 14px; color: #ffffff !important; text-align: center; border-radius: 5px; background: var(--bg-color); display: inline-block;}

/* ÅÂºí¸´¿ë (2°³) */
/*
@media (max-width: 1024px) {
  .gallery-item {
	width: calc(50% - 20px);
  }
}
*/
/* ¸ð¹ÙÀÏ¿ë (1°³) */
/*
@media (max-width: 600px) {
  .gallery-item {
	width: 100%;
  }
}
*/