/* Premium Continent Cards */

.continent-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.continent-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  border: 1px solid rgba(0,0,0,0.05);
  align-items: start;
}

@media (min-width: 768px) {
  .continent-card {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* Map Section (Left/Top) */
.continent-map {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8fafc; /* slate-50 */
  border-radius: 8px;
  padding: 1rem;
}

.continent-map img {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  mix-blend-mode: multiply; /* Helps map blend if bg isn't perfect white */
}

/* Info Section (Right/Bottom) */
.continent-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.continent-header {
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

.continent-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b; /* slate-800 */
  margin: 0;
  letter-spacing: -0.025em;
}

.entity-group h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b; /* slate-500 */
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.entity-group p {
  margin: 0;
  line-height: 1.6;
  color: #334155; /* slate-700 */
  font-size: 1rem;
}
