@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Noto+Sans+KR:wght@300;400;500;700&family=Nanum+Gothic:wght@400;700;800&family=Malgun+Gothic&display=swap");

/* ±âº» ¸®¼Â ¹× ±Û²Ã ¼³Á¤ */
:root {
  --main-color: #ffd4b8;
}

.wrap-in {
  max-width: 1440px;
  margin: 0 auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

/* ¸ÞÀÎ ÄÁÅ×ÀÌ³Ê ·¹ÀÌ¾Æ¿ô */
.main-container {
  font-family: "Roboto" !important;
  display: flex;
  width: 1200px;
  margin: 10px auto;
  gap: 20px;
}

.container {
  min-width: 908px;
  flex: 1;
  border-radius: 4px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ¹öÀü ÆÐ³Î ½ºÅ¸ÀÏ */
.version-panel {
  min-width: 272px;
  max-width: 330px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 20px 13px;
  overflow-y: auto;
  max-height: 63vh;
}

.version-panel h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 2px solid #667eea;
}

/* ±Û ¸ñ·Ï Çì´õ ½ºÅ¸ÀÏ Ãß°¡ */
.post-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.post-list-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-search-input {
  width: 110px;
  padding: 6px 10px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  transition: all 0.3s;
  font-family: "Roboto";
}

.post-search-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.post-search-input::placeholder {
  color: #adb5bd;
}

.version-item {
  padding: 12px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.version-item:hover {
  background: #e9ecef;
  border-color: #667eea;
  transform: translateX(5px);
}

.version-item.active {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-color: #667eea;
}

.version-item .version-number {
  font-weight: 500;
  color: #667eea;
  font-size: 14px;
}

.version-item .version-date {
  font-size: 12px;
  color: #6c757d;
  margin-top: 4px;
}

.version-item .version-changes {
  font-size: 11px;
  color: #495057;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #dee2e6;
}

/* °Ô½Ã±Û ¾ÆÀÌÅÛ ½ºÅ¸ÀÏ */
.post-item {
  padding: 12px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.post-item:hover {
  background: #e9ecef;
  border-color: #28a745;
  transform: translateX(5px);
}

.post-item.active {
  background: linear-gradient(135deg, #28a74515 0%, #20c99715 100%);
  border-color: #28a745;
  transform: translateX(5px);
}

.post-item-title {
  font-weight: 500;
  color: #28a745;
  font-size: 14px;
  margin-right: 1px;
  text-align: left !important;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.post-item-category {
  margin-right: 1px;
}

.post-item-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.post-item-date {
  font-size: 12px;
  color: #6c757d;
}

/* Çì´õ ½ºÅ¸ÀÏ */
.header {
  background: linear-gradient(135deg, #4d4d4d 0%, #676767 100%);
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px 4px 0 0;
  margin: 0 !important;
}

.header h1 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.header-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Á¦¸ñ ÀÔ·Â ¿µ¿ª°ú ÀÌ¹ÌÁö Ã·ºÎ ¹öÆ° */
.title-input {
  background: white;
  padding: 20px 30px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  gap: 10px;
  align-items: center;
}

.title-input input {
  flex: 1;
  padding: 12px 15px 11px;
  font-size: 18px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  outline: none;
  font-family: "Roboto";
  transition: all 0.3s;
  background: white;
  line-height: 24px;
}

.title-input input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* ÀÌ¹ÌÁö Ã·ºÎ ¹öÆ° */
.image-attach-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  white-space: nowrap;
  min-width: 140px;
  justify-content: center;
}

.image-attach-btn:hover {
  background: #e9ecef;
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-1px);
}

.image-attach-btn:active {
  transform: translateY(0);
}

.image-attach-btn svg {
  width: 20px;
  height: 20px;
}

.image-attach-btn .attach-text {
  font-weight: 600;
}

/* Á¦¸ñ ¿µ¿ª ³» Ã·ºÎÆÄÀÏ ÇÁ¸®ºä */
.title-attachments-preview {
  display: flex;
  gap: 8px;
  align-items: center;
}

.title-attachment-item {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #dee2e6;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s;
}

.title-attachment-item:hover {
  border-color: #667eea;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}

.title-attachment-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.title-attachment-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(220, 53, 69, 0.9);
  color: white;
  border: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s;
  font-family: "Roboto";
  line-height: 1;
  padding: 0;
}

.title-attachment-item:hover .title-attachment-remove {
  opacity: 1;
}

.title-attachment-remove:hover {
  background: rgba(220, 53, 69, 1);
  transform: scale(1.1);
}

/* »ö»ó ¹öÆ° ½ºÅ¸ÀÏ */
.color-button {
  position: relative;
  overflow: hidden;
}

.color-button input[type="color"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.color-indicator {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 2px;
}

/* ¿¡µðÅÍ ½ºÅ¸ÀÏ */
.editor-wrapper {
  background: white;
  padding: 30px 30px 15px 30px;
  position: relative;
  text-align: left;
}

.editor {
  min-height: 300px;
  padding: 20px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  line-height: 1.8;
  background: white;
  transition: all 0.3s;
  font-family: "Roboto";
}

.editor[placeholder]:empty::before {
  content: attr(placeholder);
  color: #adb5bd;
  pointer-events: none;
  position: absolute;
  top: 52px;
  left: 53px;
}

.editor * {
  line-height: inherit;
  white-space: pre-wrap;
}

.editor:focus {
  background: white;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.editor img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.editor a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.editor a:hover {
  border-bottom-color: #667eea;
}

.editor table {
  border-collapse: collapse;
  width: 100%;
  margin: 10px 0;
}

.editor table td {
  border: 1px solid #ddd;
  padding: 8px;
}

.editor ol,
.editor ul {
  padding-left: 20px;
}

/* °Ô½Ã±Û º¸±â ¿µ¿ª */
.post-view {
  padding: 23px 30px 0;
  background: white;
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
}

.post-title {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  text-align: left;
}

.post-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #6c757d;
}

.post-date,
.post-updated {
  display: flex;
  align-items: center;
}

.post-content {
  max-width: 100%;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.post-content img {
  position: relative !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  border-radius: 8px;
  object-fit: contain;
}

.post-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 15px 0;
  border: 1px solid #dee2e6;
}

.post-content table td,
.post-content table th {
  border: 1px solid #dee2e6;
  padding: 10px;
  text-align: left;
}

.post-content table th {
  background: #f8f9fa;
  font-weight: 500;
}

/* ¹öÀü ºñ±³ ÇÏÀÌ¶óÀÌÆ® */
.diff-added {
  background-color: #d4f4dd !important;
  position: relative;
}

.diff-removed {
  background-color: #ffd6d6 !important;
  text-decoration: line-through;
  position: relative;
}

.diff-modified {
  background-color: #fff3cd !important;
  position: relative;
}

/* ÇªÅÍ ½ºÅ¸ÀÏ */
.footer {
  background: white;
  padding: 20px 30px 20px 42px;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 4px 4px;
}

.char-count {
  color: #6c757d;
  font-size: 14px;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Roboto";
}

.btn-small {
  padding: 6px 12px;
  font-size: 13px;
}

.btn-primary {
  background: linear-gradient(135deg, #4d4d4d 0%, #676767 100%);
  color: white;
  transition: transform 0.1s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-danger {
  background: #dc3545;
  color: white;
}

.btn-danger:hover {
  background: #c82333;
  transform: translateY(-1px);
}

/* ¸ð´Þ ½ºÅ¸ÀÏ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  animation: fadeIn 0.3s;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  display: none;
  min-width: 400px;
  animation: slideIn 0.3s;
}

.modal h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 18px;
  font-family: "Roboto";
}

.modal p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #495057;
}

.modal input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  font-family: "Roboto";
}

.modal input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* ¾Ë¸² ¸Þ½ÃÁö ½ºÅ¸ÀÏ */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-size: 14px;
  font-weight: 500;
  animation: slideInRight 0.3s ease;
  max-width: 300px;
}

.notification.success {
  background: #28a745;
  color: white;
}

.notification.error {
  background: #dc3545;
  color: white;
}

.notification.warning {
  background: #ffc107;
  color: #212529;
}

/* ¾Ö´Ï¸ÞÀÌ¼Ç */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ·Îµù ½ºÅ¸ÀÏ */
.loading {
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.icon-sm {
  width: 14px;
  height: 14px;
}
.icon-lg {
  width: 20px;
  height: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ¹ÝÀÀÇü µðÀÚÀÎ */
@media (max-width: 1480px) {
  .main-container {
    width: 100%;
    max-width: 1440px;
  }
}

@media (max-width: 968px) {
  .main-container {
    flex-direction: column;
  }

  .version-panel {
    width: 100%;
    max-height: 300px;
    order: -1;
  }

  .post-selector {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .post-selector select {
    max-width: none;
  }
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .container {
    border-radius: 0;
  }

  .editor-wrapper {
    padding: 15px;
  }

  .header {
    padding: 20px 15px;
  }

  .header h1 {
    font-size: 20px;
  }

  .header-controls {
    flex-direction: column;
    gap: 8px;
  }

  .modal {
    min-width: 90vw;
    margin: 0 5vw;
  }
}

@media (max-width: 600px) {
  .post-date,
  .post-updated {
    font-size: 12px;
  }
}

/* ´ñ±Û ½ºÅ¸ÀÏ */
.comment-section {
  margin-top: 15px;
  border-top: 2px solid #e9ecef;
  padding-top: 20px;
}

.comment-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-list {
  margin-bottom: 20px;
}

.comment-item {
  background: #f9f9f9;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 4px;
  border-left: 3px solid #6c757d;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comment-author {
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
}

.comment-date {
  color: #888;
  font-size: 12px;
}

/* ============================= */
/* ´ñ±Û ¸µÅ© ½ºÅ¸ÀÏ */
/* ============================= */

.comment-text {
  font-size: 14px;
  text-align: left;
}
.comment-text a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  padding: 2px 6px 2px 24px;
  position: relative;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.comment-text a::before {
  content: "\1F517";
  position: absolute;
  left: 4px;
  top: 45%;
  transform: translateY(-50%);
  font-size: 12px;
}
.comment-text a:hover {
  background: #f0f3ff;
  color: #5568d3;
}

.no-comment {
  color: #999;
  text-align: center;
  padding: 20px;
}

/* ========== »ó´Ü ¿ä¼Ò ========== */
.main-card-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  margin: 10px auto !important;
  justify-items: center;
}
.main-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--main-color);
  padding: 18px 0 10px 0;
  min-width: 0;
  min-height: 0;
  width: 140px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #222;
  text-decoration: none !important;
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.main-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px rgba(255, 140, 60, 0.18), 0 1px 3px var(--main-color);
}

.dropdown-card {
  cursor: pointer;
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 22px;
  padding: 3px;
}
.card-icon.green {
  background: #4caf50;
  color: #fff;
}
.card-icon.orange {
  background: #ff6b35;
  color: #fff;
}
.card-icon.blue {
  background: #1976d2;
  color: #fff;
}
.card-icon.red {
  background: #d32f2f;
  color: #fff;
}
.card-icon.purple {
  background: #7b1fa2;
  color: #fff;
}
.card-title {
  font-size: 15px;
  font-weight: bold;
  color: #222;
  margin: 0;
  line-height: 1.3;
  word-break: keep-all;
}

/* µå·Ó´Ù¿î ¸Þ´º ½ºÅ¸ÀÏ */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 5px;
  overflow: hidden;
}

.dropdown-card:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 14px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
  z-index: 1001;
}

.dropdown-item:last-child {
  border-radius: 8px;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #7b1fa2;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .main-card-container {
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
  }
  .main-card {
    width: 110px;
    height: 110px;
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .main-card-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 340px;
  }
  .main-card {
    width: 100px;
    height: 100px;
    font-size: 0.92rem;
  }
}
@media (max-width: 400px) {
  .main-card-container {
    grid-template-columns: 1fr;
    max-width: 180px;
  }
  .main-card {
    width: 90px;
    height: 90px;
    font-size: 0.9rem;
  }
}
/* ========== »ó´Ü ¿ä¼Ò ========== */

.comment-badge {
  display: inline-block;
  width: 20px;
  height: 19px;
  background-color: #667eea;
  color: white;
  border-radius: 10px;
  text-align: center;
  line-height: 20px;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 3px;
  vertical-align: middle;
}

/* ÆË¾÷ ÀÌ¹ÌÁö ºä¾î */
.image-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.image-popup-overlay.active {
  display: flex;
  opacity: 1;
}

.image-popup-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease;
}

.image-popup-img {
  min-width: 200px;
  min-height: 200px;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.image-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  transition: all 0.2s;
  font-family: "Roboto";
  box-shadow: 0 2px 8px rgba(0, 0, 0, 1);
}

.image-popup-close:hover {
  background: #f8f9fa;
  color: #dc3545;
  transform: scale(1.1);
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ÀÐ±â ¸ðµå - Ã·ºÎÆÄÀÏ ÀÌ¹ÌÁö °¶·¯¸® */
.attachments-gallery-section {
  background: white;
}

.attachments-gallery-container {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.gallery-image-item {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dee2e6;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-image-item:hover {
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
  transform: translateY(-3px);
}

.gallery-image-item img {
  max-width: 300px;
  max-height: 300px;
  object-fit: cover;
  display: block;
}
