.study {
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 0;
  margin-bottom: 20px;
  background: var(--background);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
  overflow: hidden;
}
.study:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.study-image {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.study-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: none;
}

.study-content {
  padding: 20px;
}

.study-header {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 15px;
}

.study-title {
  margin: 0 0 10px 0;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: var(--bold);
}

.study-time {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.study-time i {
  color: var(--primary);
}

.study-description {
  margin-bottom: 15px;
  line-height: 1.6;
}
.study-description p:last-child {
  margin-bottom: 0;
}

.study-details {
  margin-bottom: 15px;
}

.study-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.study-detail i {
  color: var(--primary);
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.study-detail strong {
  margin-right: 0;
}

.study-contact {
  margin-bottom: 15px;
}

.study-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--background);
  text-decoration: none;
  border-radius: 6px;
  font-weight: var(--medium);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.study-contact-button:hover {
  background: var(--text);
  color: var(--background);
}
.study-contact-button i {
  font-size: 0.9rem;
}

.study-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: var(--medium);
}
.study-status.status-completed {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.study-status.status-recruiting {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.study-status.status-full {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
.study-status.status-cancelled {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 600px) {
  .study {
    padding: 15px;
  }
  .study-detail {
    flex-direction: column;
    gap: 4px;
  }
  .study-detail i {
    margin-top: 0;
  }
  .study-contact-button {
    width: 100%;
    justify-content: center;
  }
}
.study[data-style=compact] {
  padding: 15px;
}
.study[data-style=compact] .study-header {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.study[data-style=compact] .study-title {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.study[data-style=compact] .study-details {
  margin-bottom: 10px;
}

.study[data-style=detailed] {
  padding: 25px;
}
.study[data-style=detailed] .study-title {
  font-size: 1.4rem;
}
.study[data-style=detailed] .study-description {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/*# sourceMappingURL=study.css.map */