@charset "UTF-8";
/*
Theme Name: タレント好感度分析
Description: Yahoo!リアルタイム検索からタレントの好感度データを可視化するテーマ
Version: 1.0
Author: Your Name
*/
:root {
  --color-bg:#fafbfc;
  --color-surface:#ffffff;
  --color-surface-raised:#ffffff;
  --color-border:#eaeef2;
  --color-border-hover:#d0d7de;
  --color-text-primary:#0d1117;
  --color-text-secondary:#57606a;
  --color-text-tertiary:#8c959f;
  --color-primary:#0969da;
  --color-primary-hover:#0860ca;
  --color-success:#2da44e;
  --color-success-light:#26a641;
  --color-success-bg:#dafbe1;
  --color-danger:#d1242f;
  --color-danger-light:#cf222e;
  --color-danger-bg:#ffebe9;
  --color-warning:#bf8700;
  --color-warning-bg:#fff8c5;
  --color-accent-blue:#0969da;
  --color-accent-purple:#8250df;
  --color-accent-teal:#1b7f79;
  --color-positive:#6366f1;
  --color-negative:#f43f5e;
  --shadow-xs:0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:0 1px 3px rgba(0,0,0,0.06),0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:0 4px 6px -1px rgba(0,0,0,0.08),0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg:0 10px 15px -3px rgba(0,0,0,0.08),0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-xl:0 20px 25px -5px rgba(0,0,0,0.08),0 10px 10px -5px rgba(0,0,0,0.02);
  --radius-sm:6px;
  --radius-md:8px;
  --radius-lg:12px;
  --radius-xl:16px;
}

[data-theme=dark] {
  --color-bg:#0d1117;
  --color-surface:#161b22;
  --color-surface-raised:#1c2128;
  --color-border:#30363d;
  --color-border-hover:#484f58;
  --color-text-primary:#e6edf3;
  --color-text-secondary:#8d96a0;
  --color-text-tertiary:#6e7681;
  --color-primary:#2f81f7;
  --color-success:#3fb950;
  --color-success-bg:rgba(63,185,80,0.15);
  --color-danger:#f85149;
  --color-danger-bg:rgba(248,81,73,0.15);
  --color-warning:#d29922;
  --color-warning-bg:rgba(210,153,34,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(var(--color-surface-rgb), 0.8);
  transition: all 0.3s ease;
}
header .header-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-left .header-logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}
header .header-left .header-logo-link h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}
header .header-left .header-logo-link .header-meta {
  font-size: 11px;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: -2px;
}
header .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

[data-theme=dark] header {
  background: rgba(22, 27, 34, 0.8);
}

/* Search Popup */
.search-trigger-btn {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-trigger-btn:hover {
  background: var(--color-border);
  color: var(--color-primary);
}

.search-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}
.search-popup.active {
  display: flex;
}
.search-popup .search-popup-content {
  width: 100%;
  max-width: 600px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.search-popup .search-popup-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
}
.search-popup .search-popup-header input {
  flex: 1;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--color-text-primary);
  outline: none;
}
.search-popup .search-popup-header input::-moz-placeholder {
  color: var(--color-text-tertiary);
}
.search-popup .search-popup-header input::placeholder {
  color: var(--color-text-tertiary);
}
.search-popup .search-popup-header .search-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text-tertiary);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.search-popup .search-popup-header .search-close-btn:hover {
  color: var(--color-danger);
}
.search-popup .search-results-dropdown {
  max-height: 60vh;
  overflow-y: auto;
  padding: 8px;
}
.search-popup .search-results-dropdown .search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--color-text-primary);
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.search-popup .search-results-dropdown .search-result-item:hover {
  background: var(--color-bg);
}
.search-popup .search-results-dropdown .search-result-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.search-popup .search-results-dropdown .search-result-item span {
  font-weight: 500;
}

/* Theme Switch Toggle */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
}
.theme-switch-wrapper .theme-switch {
  display: inline-block;
  height: 28px;
  position: relative;
  width: 54px;
}
.theme-switch-wrapper .theme-switch input {
  display: none;
}
.theme-switch-wrapper .slider {
  background-color: var(--color-border);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}
.theme-switch-wrapper .slider::before {
  background-color: #fff;
  bottom: 3px;
  content: "";
  height: 22px;
  left: 3px;
  position: absolute;
  transition: 0.4s;
  width: 22px;
  z-index: 2;
}
.theme-switch-wrapper .slider.round {
  border-radius: 34px;
}
.theme-switch-wrapper .slider.round::before {
  border-radius: 50%;
}
.theme-switch-wrapper .slider .icon-sun, .theme-switch-wrapper .slider .icon-moon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-tertiary);
  z-index: 1;
}
.theme-switch-wrapper input:checked + .slider {
  background-color: var(--color-primary);
}
.theme-switch-wrapper input:checked + .slider::before {
  transform: translateX(26px);
}

.talent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-purple) 100%);
  color: white;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

main {
  padding: 32px 0 80px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  position: relative;
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-blue), var(--color-accent-purple));
  opacity: 0;
  transition: opacity 0.2s;
}

.stat-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: -0.01em;
}

.stat-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.trend-up {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.trend-down {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-meta {
  font-size: 13px;
  color: var(--color-text-tertiary);
}

.chart-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.chart-section {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.chart-section:hover {
  box-shadow: var(--shadow-sm);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

.chart-legend {
  display: flex;
  gap: 16px;
  align-items: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.legend-marker {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.chart-controls {
  display: flex;
  gap: 6px;
}

.control-btn {
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
  font-family: "JetBrains Mono", monospace;
}

.control-btn:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg);
}

.control-btn.active {
  background: var(--color-text-primary);
  color: white;
  border-color: var(--color-text-primary);
}

.chart-container {
  position: relative;
  height: 360px;
  margin-top: 16px;
}

.chart-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.chart-row .chart-section:first-child {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .chart-row {
    grid-template-columns: 1fr;
  }
  .chart-row .chart-section:first-child {
    grid-column: span 1;
  }
}
.table-section {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  overflow: hidden;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

thead {
  background: var(--color-bg);
  position: sticky;
  top: 0;
}

th {
  padding: 10px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--color-border);
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  font-variant-numeric: tabular-nums;
}

tbody tr {
  transition: background 0.1s;
}

tbody tr:hover {
  background: var(--color-bg);
}

tbody tr:last-child td {
  border-bottom: none;
}

.metric-positive {
  color: var(--color-positive);
  font-weight: 600;
}

.metric-negative {
  color: var(--color-negative);
  font-weight: 600;
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-family: "JetBrains Mono", monospace;
}

.badge-success {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.badge-warning {
  background: var(--color-warning-bg);
  color: var(--color-warning);
}

.badge-danger {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

/* Site Footer */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 40px;
  margin-top: 80px;
  color: var(--color-text-secondary);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.site-footer .footer-brand .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}
.site-footer .footer-brand .footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-tertiary);
  max-width: 320px;
}
.site-footer .footer-nav-group h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.site-footer .footer-nav-group .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-nav-group .footer-links li {
  margin-bottom: 12px;
}
.site-footer .footer-nav-group .footer-links li a {
  color: var(--color-text-tertiary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.site-footer .footer-nav-group .footer-links li a:hover {
  color: var(--color-primary);
}
.site-footer .footer-nav-group .footer-note {
  font-size: 13px;
  color: var(--color-text-tertiary);
  line-height: 1.6;
}
.site-footer .footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--color-text-tertiary);
}

@media (max-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .site-footer .footer-brand {
    text-align: center;
  }
  .site-footer .footer-brand .footer-description {
    margin: 0 auto;
  }
  .site-footer .footer-nav-group {
    text-align: center;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stat-card, .chart-section, .table-section {
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.stat-card:nth-child(1) {
  animation-delay: 0.05s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.15s;
}

/* Hero Section Refined */
.hero-section {
  padding: 100px 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgba(var(--color-primary-rgb), 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section .hero-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-section .hero-content .hero-badge-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-section .hero-content .hero-badge-row .hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary);
  color: white;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-section .hero-content .hero-badge-row .hero-badge.secondary {
  background: var(--color-bg);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}
.hero-section .hero-content .hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-section .hero-content .hero-description {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 60px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .hero-content .hero-mosaic-wrapper {
  background: var(--color-bg);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  max-width: 1200px;
  margin: 0 auto;
}
.hero-section .hero-content .hero-mosaic-wrapper .hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .hero-section .hero-content .hero-mosaic-wrapper .hero-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hero-section .hero-content .hero-mosaic-wrapper .hero-mosaic {
    grid-template-columns: 1fr;
  }
}
.hero-section .hero-content .hero-mosaic-wrapper .hero-mosaic .mosaic-item {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-surface);
  transition: transform 0.3s ease;
}
.hero-section .hero-content .hero-mosaic-wrapper .hero-mosaic .mosaic-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .hero-content .hero-mosaic-wrapper .hero-mosaic .mosaic-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Global Section Header */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  gap: 8px;
}
.section-header .section-title {
  font-size: 2.5rem;
  color: var(--color-text-primary);
  margin: 0;
}
.section-header .section-desc, .section-header .section-subtitle {
  color: var(--color-text-secondary);
  font-family: "JetBrains Mono", monospace;
  margin: 0;
}
@media (max-width: 600px) {
  .section-header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 32px;
    gap: 4px;
  }
  .section-header .section-title {
    font-size: 1.5rem;
    flex: 1 1 100%; /* タイトルを一行に */
  }
  .section-header .section-desc, .section-header .section-subtitle {
    font-size: 12px;
    opacity: 0.8;
  }
}

/* Description Section */
.description-section {
  padding: 80px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(5px);
}
.description-section .description-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}
.description-section .desc-item h3 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.description-section .desc-item p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* Group & Search Sections */
.group-list-section {
  padding: 80px 0;
}
.group-list-section .group-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 40px;
}
.group-list-section .control-btn {
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.group-list-section .control-btn .count {
  font-size: 0.8em;
  opacity: 0.6;
}

.search-area-section {
  margin-top: 60px;
  padding: 60px 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-align: center;
  backdrop-filter: blur(10px);
}
.search-area-section .search-input-wrapper {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.search-area-section .bottom-search-input {
  width: 100%;
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text-primary);
  font-size: 1.1rem;
}
.search-area-section .bottom-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Talent Grid & Cards */
.talent-list-section {
  padding: 100px 0;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.talent-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}
.talent-card .talent-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg);
}
.talent-card .talent-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.5s;
}
.talent-card .talent-info {
  padding: 1.25rem;
}
.talent-card .talent-info h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.talent-card .talent-info .talent-meta {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-family: "JetBrains Mono", monospace;
}
.talent-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.talent-card:hover .talent-image img {
  transform: scale(1.1);
}

/* Trending & History Sections */
.trending-section, .recent-talents-section, .other-talents-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--color-border);
}

.mosaic-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
  text-decoration: none;
}
.mosaic-item .mosaic-image {
  width: 100%;
  height: 100%;
}
.mosaic-item .mosaic-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.5s;
}
.mosaic-item .mosaic-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}
.mosaic-item .mosaic-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.mosaic-item .mosaic-trend-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.mosaic-item .mosaic-trend-tag.up {
  background: rgba(45, 164, 78, 0.9);
}
.mosaic-item .mosaic-trend-tag.down {
  background: rgba(209, 36, 47, 0.9);
}
.mosaic-item .mosaic-stat-badge {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
}
.mosaic-item .mosaic-stat-badge.pos-up {
  color: #4ade80;
}
.mosaic-item .mosaic-stat-badge.pos-down {
  color: #f87171;
}
.mosaic-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}
.mosaic-item:hover .mosaic-image img {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .talent-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .talent-info {
    padding: 1rem;
  }
  .talent-info h3 {
    font-size: 1rem;
  }
}
/* Trending Mosaic Grid */
.trending-hero-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .trending-hero-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .trending-hero-mosaic {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */