body {
  font-family: "Space Grotesk", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  background-color: #0f172a;
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
}

.main-gradient {
  background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 35%, #f0f9ff 70%, #e0e7ff 100%);
}

.glass-panel {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.status-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.25);
  background: linear-gradient(135deg, #0f172a, #1e2763);
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
}

.main-events-slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 40%;
  max-width: 40%;
  height: 100%;
  min-height: 500px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .main-events-slider {
    display: none;
  }
}

#main {
  position: relative;
}

#main .max-w-6xl {
  position: relative;
  z-index: 2;
}

.main-events-slider-track {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

.main-events-slider-item {
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex-shrink: 0;
  position: relative;
  display: block;
  overflow: hidden;
}

.main-events-slider-item img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section {
  padding: 5rem 1rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 600;
}

.section-title {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #0f172a;
}

.section-description {
  margin-top: 1rem;
  font-size: 1rem;
  color: #475569;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.info-card {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  padding: 1.75rem;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.info-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.info-card-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.activity-card {
  border-radius: 1.5rem;
  border: 1px solid #c7d2fe;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(14, 165, 233, 0.05));
  box-shadow: 0 15px 35px rgba(148, 163, 184, 0.25);
  height: 100%;
}

.activity-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.activity-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.activity-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.highlight-card {
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.highlight-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.highlight-body {
  font-size: 0.97rem;
  color: #475569;
  line-height: 1.7;
}

.interactive-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1.75rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  min-height: 230px;
  cursor: pointer;
}

.feature-card:focus-within,
.feature-card:hover {
  outline: none;
  border-color: #c7d2fe;
  box-shadow: 0 20px 45px rgba(59, 130, 246, 0.2);
}

.feature-card-summary {
  position: relative;
  z-index: 1;
}

.feature-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.feature-card-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.feature-card-detail {
  position: absolute;
  inset: 0;
  padding: 1.75rem;
  background: rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 200ms ease, transform 200ms ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card-detail p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.feature-card-detail p:last-child {
  margin-bottom: 0;
}

.feature-card:focus-within .feature-card-detail,
.feature-card:hover .feature-card-detail {
  opacity: 1;
  transform: translateY(0);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tag-chip {
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1d4ed8;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.15);
}

.social-panel {
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 1.75rem;
}

.social-card {
  display: block;
  border-radius: 1.25rem;
  border: 1px solid #cbd5f5;
  padding: 1.2rem 1.4rem;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: transform 150ms ease, box-shadow 150ms ease;
  height: 100%;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
}

.social-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1d4ed8;
  margin-bottom: 0.35rem;
}

.social-card-body {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.award-card {
  border-radius: 1.5rem;
  border: 1px solid #d4dbe8;
  background: #ffffff;
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.award-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: #e0e7ff;
  color: #312e81;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.award-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.award-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.event-gallery {
  display: grid;
  gap: 1.5rem;
}

.event-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #dbe3f0;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.event-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.event-date {
  padding: 0.75rem 1.5rem 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  margin: 0;
}

.event-caption {
  padding: 0.75rem 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: #334155;
  background: #f8fafc;
  margin: 0;
}

.activities-highlights {
  margin-top: 4rem;
  border-radius: 2rem;
  border: 1px solid #e2e8f0;
  padding: 2.5rem 2rem;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.activities-more-block {
  margin-top: 2rem;
}

.activities-cta {
  margin-top: 2rem;
  text-align: center;
}

.activities-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #1d4ed8;
}

.stack-card {
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
  height: 100%;
}

.stack-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.stack-card-body {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.stack-card-list {
  display: grid;
  gap: 1rem;
}

.stack-card-label {
  font-weight: 600;
  color: #0f172a;
}

.stack-card-note {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
}

.officer-grid {
  display: grid;
  gap: 1rem;
}

.archive-main {
  background: linear-gradient(135deg, #e0f2fe, #ede9fe);
}

.archive-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.archive-card {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1.75rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.archive-card-muted {
  border-style: dashed;
  background: #f8fafc;
}

.archive-meta {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.archive-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.archive-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #e0e7ff;
  color: #312e81;
  margin-bottom: 0.75rem;
}

.event-mosaic {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.event-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.event-slider-window {
  flex: 1;
  overflow: hidden;
}

.event-slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0 0.75rem;
}

.event-slider-track::-webkit-scrollbar {
  display: none;
}

.event-slider-track .event-card {
  flex: 0 0 clamp(220px, 24vw, 280px);
  min-width: clamp(220px, 24vw, 280px);
  scroll-snap-align: start;
  cursor: pointer;
}

.slider-button {
  border: 1px solid #cbd5f5;
  background: #ffffff;
  color: #1d4ed8;
  font-size: 1.5rem;
  border-radius: 999px;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, color 150ms ease;
}

.slider-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slider-button:not(:disabled):hover {
  background: #e0f2fe;
}

.event-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #475569;
  text-align: center;
}

.timeline-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-card {
  border-radius: 1.25rem;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.curriculum-entry {
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.curriculum-entry summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: #0f172a;
}

.curriculum-entry summary::-webkit-details-marker {
  display: none;
}

.curriculum-entry summary small {
  font-weight: 400;
  font-size: 0.9rem;
  color: #475569;
}

.curriculum-entry-body {
  padding: 0 1.5rem 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.curriculum-subcard {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem;
  background: #f8fafc;
}

.curriculum-subcard h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.curriculum-subcard p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.award-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.award-entry {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.award-entry summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.award-entry summary::-webkit-details-marker {
  display: none;
}

.award-entry summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: #94a3b8;
  transition: transform 150ms ease, color 150ms ease;
}

.award-entry[open] summary::after {
  content: "−";
  color: #1d4ed8;
}

.award-entry-body {
  padding: 0 1.5rem 1.5rem;
  display: grid;
  gap: 1rem;
  color: #475569;
}

.award-entry-figure {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.award-entry-figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.award-entry-figure figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: #334155;
}

.media-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.media-modal.hidden {
  pointer-events: none;
  visibility: hidden;
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
}

.media-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  max-width: min(90vw, 720px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.4);
}

.media-modal-figure {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.media-modal-content .media-modal-figure > img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.media-modal-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-height: 5.5rem;
  overflow-x: auto;
  overflow-y: hidden;
}

.media-modal-thumbs.hidden {
  display: none;
}

.media-modal-thumb {
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  background: #f1f5f9;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.75;
  transition: opacity 0.15s, border-color 0.15s;
}

.media-modal-thumb:hover,
.media-modal-thumb.is-active {
  opacity: 1;
  border-color: #3b82f6;
}

.media-modal-thumb img {
  display: block;
  width: 4.5rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0.35rem;
}

.media-modal-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.media-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  padding: 0 1.5rem;
  padding-top: 1rem;
}

.media-modal-date {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
  padding: 0 1.5rem;
  display: block;
}

.media-modal-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  padding: 0 1.5rem;
  padding-bottom: 1rem;
  white-space: pre-line;
}

.media-modal-caption {
  font-size: 1rem;
  color: #334155;
  margin: 0;
  padding: 0.5rem 0;
}

.media-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(15, 23, 42, 0.1);
  color: #0f172a;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.3);
}

.btn.btn-disabled,
.btn-disabled {
  pointer-events: none;
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-primary.btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  border: 1px solid #cbd5f5;
  background: #f8fafc;
  color: #0f172a;
}

.btn-link {
  color: #1d4ed8;
  font-weight: 600;
}

.nav-link {
  color: #475569;
  transition: color 150ms ease;
}

.nav-link:hover {
  color: #1d4ed8;
}

.nav-link.active {
  color: #1d4ed8;
  font-weight: 600;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  color: #0f172a;
  font-weight: 600;
}

.contact-card {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

/* Award 모달 스타일 */
.award-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.award-modal.hidden {
  pointer-events: none;
  visibility: hidden;
}

.award-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
}

.award-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: min(90vw, 800px);
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.4);
}

.award-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(15, 23, 42, 0.1);
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 600;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}

.award-modal-close:hover {
  background: rgba(15, 23, 42, 0.2);
}

.award-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.award-modal-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.award-modal-figure {
  margin: 0;
}

.award-modal-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  cursor: zoom-in;
  transition: transform 200ms ease;
}

.award-modal-img:hover {
  transform: scale(1.02);
}

.award-modal-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
  font-style: italic;
}

/* 이미지 확대 모달 스타일 */
.image-zoom-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.image-zoom-modal.hidden {
  pointer-events: none;
  visibility: hidden;
}

.image-zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.image-zoom-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.image-zoom-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
  z-index: 2;
}

.image-zoom-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.image-zoom-img {
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* Award 항목 클릭 가능 표시 */
.award-entry-figure {
  position: relative;
  cursor: pointer;
  transition: transform 200ms ease;
}

.award-entry-figure:hover {
  transform: scale(1.02);
}

.award-entry-figure::before {
  content: "🔍";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 999px;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: 1;
}

.award-entry-figure:hover::before {
  opacity: 1;
}

/* 리소스 카드 스타일 */
.resource-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.resource-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.resource-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin: 0.75rem 0 0 0;
}

.resource-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dynamixel-motor-card {
  transition: all 200ms ease;
}

.dynamixel-motor-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

@media (max-width: 768px) {
  .main-gradient {
    padding-top: 5rem;
  }
  
  .award-modal-content {
    padding: 1.5rem;
    max-width: 95vw;
  }
  
  .award-modal-title {
    font-size: 1.25rem;
  }
  
  .resource-card {
    padding: 1.25rem;
  }
  
  .resource-card-title {
    font-size: 1.1rem;
  }
}

