/**
 * Dataset Info Shortcode Styles
 * Styles for the [dataset-info] shortcode display
 */
.dataset-info-wrapper {
  color: #e0e0e0;
}

.dataset-info-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dataset-info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 10px;
}
.dataset-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dataset-info-label {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.dataset-info-value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.telescope-inline-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.telescope-inline-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
  background: #0d0d0d;
  border-radius: 6px;
  transition: background 0.2s;
}

.telescope-inline-link:hover .telescope-inline-card {
  background: #252525;
}

.telescope-inline-thumb {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid #333;
}

.telescope-inline-title {
  color: #06b6d4;
  font-weight: 600;
  padding-right: 10px;
}

.telescope-inline-link:hover .telescope-inline-title {
  color: #f59e0b;
}

.coordinate {
  display: inline-block;
  font-family: monospace;
  background: #0d0d0d;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.coordinate-separator {
  margin: 0 8px;
  color: #555;
}

.target-link,
.tip-tinta-link {
  color: #06b6d4;
  text-decoration: none;
  padding: 4px 8px;
  background: #0d0d0d;
  border-radius: 4px;
  display: inline-block;
  margin-right: 8px;
  transition: all 0.2s;
}
.target-link:hover,
.tip-tinta-link:hover {
  color: #f59e0b;
  background: #252525;
}

@media (max-width: 768px) {
  .dataset-info-wrapper {
    padding: 10px;
  }
  .dataset-info-grid {
    gap: 5px;
  }
  .dataset-info-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding-bottom: 8px;
  }
  .dataset-info-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 2px;
  }
  .dataset-info-value {
    font-size: 14px;
    margin-bottom: 0;
  }
  .coordinate {
    display: block;
    margin-bottom: 5px;
  }
  .coordinate-separator {
    display: none;
  }
}

/* Similar Datasets Section */
.similar-datasets-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.similar-datasets-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.similar-datasets-grid {
  margin-top: 0;
}

@media (max-width: 768px) {
  .similar-datasets-section {
    margin-top: 40px;
    padding-top: 30px;
  }
  
  .similar-datasets-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
