/* ===== page research-partnerlist (compiled from Vue SCSS) ===== */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.action-btn {
  transition: all 160ms ease;
}
.action-btn:active {
  transform: scale(0.96) translateY(2px);
}

.submit-btn-no-hover:hover {
  background-color: #0b6b5a !important;
  color: #ffffff !important;
}

.tag-primary-light {
  background-color: #eaf6f2;
  color: #0b6b5a;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  height: auto;
  min-height: 240px;
}
.partner-card .partner-logo-container {
  height: 80px;
}
.partner-card .partner-logo-container .partner-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Reverted from utilities.scss */
.py-8 {
  padding-top: 48px;
  padding-bottom: 80px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-4 {
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.text-secondary {
  color: #66736e;
}

.text-main {
  color: #1e2b27;
}

.text-sm {
  font-size: 14px;
}

.border-bottom {
  border-bottom: 1px solid #d9e5e0;
}

.cursor-pointer {
  cursor: pointer;
}

.p-6 {
  padding: 48px;
}

.mb-10 {
  margin-bottom: 40px;
}

.mb-2 {
  margin-bottom: 12px;
}

.text-primary {
  color: #0b6b5a;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.p-4 {
  padding: 24px;
}

.mb-3 {
  margin-bottom: 16px;
}

.text-xs {
  font-size: 12px;
}

.max-w-800 {
  max-width: 800px;
}

.bg-light {
  background-color: #f7faf9;
}

.border {
  border: 1px solid #d9e5e0;
}

.rounded {
  border-radius: 8px;
}

.flex-column {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.mt-10 {
  margin-top: 40px;
}

.mb-5 {
  margin-bottom: 32px;
}

.mt-2 {
  margin-top: 12px;
}

.mb-0 {
  margin-bottom: 0;
}

.pb-3 {
  padding-bottom: 16px;
}

.ml-3 {
  margin-left: 16px;
}

/* Reverted responsive */
@media (max-width: 1199px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}