/*
|--------------------------------------------------------------------------
| iToolsEra YouTube Video Info
| v1.0.0
|--------------------------------------------------------------------------
|
| Reuses the existing iToolsEra homepage/tool design system.
| Only tool-specific components are defined here.
|--------------------------------------------------------------------------
*/

.youtube-info-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  padding: 24px;
}

.youtube-info-result {
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #f8fbff;
  padding: 18px;
}

.youtube-info-result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.youtube-info-result-kicker {
  display: block;
  margin-bottom: 3px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.youtube-info-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 22px;
  align-items: start;
}

.youtube-info-detail-list {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.youtube-info-detail-row {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid #edf2f7;
}

.youtube-info-detail-row:last-child {
  border-bottom: 0;
}

.youtube-info-detail-row span {
  color: #64748b;
  font-size: 0.88rem;
}

.youtube-info-detail-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.youtube-info-thumbnail {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px;
  background: #fff;
}

.youtube-info-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.youtube-info-thumbnail-actions,
.youtube-info-copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.youtube-info-note {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  color: #475569;
  background: #fff;
  font-size: 0.86rem;
  line-height: 1.55;
}

.youtube-info-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.youtube-info-info-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
}

.youtube-info-info-card > i {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.youtube-info-info-card strong {
  font-size: 0.95rem;
}

.youtube-info-info-card span {
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .youtube-info-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .youtube-info-card {
    padding: 16px;
  }

  .youtube-info-result-header {
    flex-direction: column;
  }

  .youtube-info-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .youtube-info-info-grid {
    grid-template-columns: 1fr;
  }
}
