.gallery-block {
  width: 350px;
  border: 1px solid #555;
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
  box-shadow: 8px -8px 0 #B3BDB3; /* 오른쪽 위로 그림자 */
  font-family: 'Galmuri11', monospace;
  margin-top: -10px;
}

/* 상단 바 */
.gallery-header {
  height: 28px;
  background: #f0f0f0;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 8px;
}

/* 맥 버튼 그룹 */
.mac-buttons {
  display: flex;
  gap: 6px;
}

.mac-buttons .btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.mac-buttons .btn.close { background: #ff5f57; }
.mac-buttons .btn.minimize { background: #ffbd2e; }
.mac-buttons .btn.maximize { background: #28c840; }

/* 제목 */
.gallery-header .title {
  font-size: 13px;
  font-weight: bold;
  color: #000;
}

/* 콘텐츠 */
.gallery-content {
  padding: 0;              /* ❌ 전체 패딩 제거 */
  margin: 0;
}

/* 이미지 */
.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;        /* 이미지가 꽉 차게 */
}

/* 유튜브 영상 */
.gallery-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 0;
}

/* 텍스트 */
.gallery-text {
  padding: 15px;           /* 텍스트만 안쪽 여백 유지 */
  line-height: 1.6;
  white-space: pre-wrap;
  background: transparent;
  color: #222;
}