/* Journal Metrics Styling */
.metrics-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.metrics-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.metric-item {
    text-align: center;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.metric-title {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}
.metric-value {
    font-size: 32px;
    font-weight: bold;
    color: #007BFF;
}

.logo-row {
  display: flex;
  gap: 10px; /* Consistent spacing between logos */
  align-items: center;
  justify-content: center; /* Center the logos */
}

.logo-link {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.logo-image {
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.doaj-logo {
  width: 150px;
  height: 60px; /* Resizing specific to DOAJ */
}

.logo-link:hover .logo-image {
  transform: scale(1.05); /* Zoom effect on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
  opacity: 0.9; /* Slight opacity reduction on hover */
}

